/* Hizmetlerimiz - Frontend Styles */

.hizmetlerimiz-service-page {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.hizmetlerimiz-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Image */
.hizmetlerimiz-hero-image {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out;
}

.hizmetlerimiz-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.hizmetlerimiz-hero-image:hover img {
    transform: scale(1.05);
}

/* Title */
.hizmetlerimiz-service-title {
    font-size: 48px;
    font-weight: 800;
    color: #2e7d32;
    line-height: 1.3;
    margin: 0 0 30px 0;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: -0.5px;
}

/* Description */
.hizmetlerimiz-service-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hizmetlerimiz-service-description p {
    margin-bottom: 20px;
}

/* Video */
.hizmetlerimiz-service-video {
    margin: 50px 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hizmetlerimiz-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hizmetlerimiz-video-wrapper iframe,
.hizmetlerimiz-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Gallery */
.hizmetlerimiz-service-gallery {
    margin: 60px 0;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hizmetlerimiz-gallery-title {
    font-size: 36px;
    font-weight: 700;
    color: #2e7d32;
    text-align: center;
    margin: 0 0 40px 0;
}

.hizmetlerimiz-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hizmetlerimiz-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.hizmetlerimiz-gallery-item:nth-child(1) { animation-delay: 0.1s; }
.hizmetlerimiz-gallery-item:nth-child(2) { animation-delay: 0.2s; }
.hizmetlerimiz-gallery-item:nth-child(3) { animation-delay: 0.3s; }
.hizmetlerimiz-gallery-item:nth-child(4) { animation-delay: 0.4s; }
.hizmetlerimiz-gallery-item:nth-child(5) { animation-delay: 0.5s; }
.hizmetlerimiz-gallery-item:nth-child(6) { animation-delay: 0.6s; }

.hizmetlerimiz-gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2);
}

.hizmetlerimiz-gallery-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.hizmetlerimiz-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hizmetlerimiz-gallery-item:hover .hizmetlerimiz-gallery-image img {
    transform: scale(1.15);
}

.hizmetlerimiz-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.95) 0%, rgba(27, 94, 32, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.hizmetlerimiz-gallery-item:hover .hizmetlerimiz-gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.hizmetlerimiz-gallery-item-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-align: center;
}

.hizmetlerimiz-gallery-item-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 0;
}

/* Button */
.hizmetlerimiz-service-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hizmetlerimiz-service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2e7d32;
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    position: relative;
    overflow: hidden;
}

.hizmetlerimiz-service-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hizmetlerimiz-service-button:hover::before {
    width: 300px;
    height: 300px;
}

.hizmetlerimiz-service-button:hover {
    background: #1b5e20;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
    color: #ffffff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hizmetlerimiz-service-title {
        font-size: 40px;
    }
    
    .hizmetlerimiz-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hizmetlerimiz-service-page {
        padding: 60px 15px;
    }
    
    .hizmetlerimiz-service-title {
        font-size: 36px;
    }
    
    .hizmetlerimiz-service-description {
        font-size: 16px;
    }
    
    .hizmetlerimiz-gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hizmetlerimiz-gallery-image {
        height: 250px;
    }
    
    .hizmetlerimiz-service-button {
        padding: 16px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hizmetlerimiz-service-page {
        padding: 40px 10px;
    }
    
    .hizmetlerimiz-service-title {
        font-size: 32px;
    }
    
    .hizmetlerimiz-service-description {
        font-size: 15px;
    }
    
    .hizmetlerimiz-gallery-title {
        font-size: 28px;
    }
    
    .hizmetlerimiz-gallery-image {
        height: 200px;
    }
    
    .hizmetlerimiz-service-button {
        padding: 14px 30px;
        font-size: 15px;
    }
}

