/* === HİZMET SAYFALARI === */

.service-hero {
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    padding: 2rem;
    margin-top: 80px;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.service-hero p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.service-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 5%;
}

.service-text {
    margin-bottom: 3rem;
}

.service-text h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.service-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.service-text h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.service-text ul, .service-text ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-text li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-section {
    text-align: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.cta-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Ayarlar */
@media (min-width: 768px) {
    .service-hero {
        min-height: 60vh;
    }
    
    .service-hero h1 {
        font-size: 3.5rem;
    }
    
    .service-content {
        padding: 0;
    }
    
    .service-text {
        padding: 0 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .service-text h2 {
        font-size: 2.5rem;
    }
}