/* =========================================
   STUDIO PAGE STYLES (studio.css)
   ========================================= */

/* --- Service Page Hero Section --- */
.service-hero { 
    position: relative; 
    height: 70vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: var(--text-light); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
}
.hero-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(10, 25, 47, 0.75); 
}
.hero-content { 
    position: relative; 
    z-index: 2; 
}
.hero-title { 
    font-size: 3.5rem; 
    font-weight: 700; 
    color: var(--text-light); 
    margin-bottom: 1rem; 
}
.hero-subtitle { 
    font-size: 1.25rem; 
    max-width: 700px; 
    margin: 0 auto 2.5rem; 
    color: rgba(255, 255, 255, 0.9); 
}

/* --- General Section Styling --- */
.page-section { 
    padding: 5rem 0; 
}
.section-header { 
    text-align: center; 
    margin-bottom: 4rem; 
}
.section-title { 
    margin-bottom: 1rem; 
}
.section-subtitle { 
    font-size: 1.1rem; 
    color: var(--text-secondary); 
    max-width: 600px; 
    margin: 0 auto; 
}

/* --- Why Choose Us Section --- */
.why-choose-us { 
    background-color: var(--bg-light); 
    padding-top: 0; 
    margin-top: -80px; 
    position: relative; 
    z-index: 10; 
}
.features-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem; 
    text-align: center; 
    background-color: var(--bg-light); 
    padding: 3rem; 
    border-radius: var(--border-radius); 
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); 
}
.feature-icon { 
    font-size: 2.5rem; 
    color: var(--primary-color); 
    margin-bottom: 1.5rem; 
}
.feature-item h4 { 
    margin-bottom: 0.5rem; 
}

/* --- Services Listing Section --- */
.services-listing { 
    background-color: var(--bg-soft-gray); 
}
.service-category { 
    margin-bottom: 5rem; 
}
.service-category:last-of-type { 
    margin-bottom: 0; 
}
.category-title { 
    font-size: 2rem; 
    margin-bottom: 2.5rem; 
    text-align: center; 
    padding-bottom: 1rem; 
    border-bottom: 2px solid #EAECEF; 
}
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 2rem; 
}

/* --- Service Card --- */
.service-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid #EAECEF;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.service-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--box-shadow); 
}
.card-image { 
    width: 100%; 
    height: 220px; 
}
.card-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
.card-content { 
    padding: 1.5rem; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
}
.service-title { 
    margin-bottom: 0.75rem; 
    font-size: 1.3rem; 
}
.service-text { 
    margin-bottom: 1.5rem; 
    color: var(--text-secondary); 
    flex-grow: 1; 
}
.card-content .btn { 
    width: 100%; 
    margin-top: auto; 
}

/* --- Final CTA Section --- */
.cta-section { 
    background-color: var(--secondary-color); 
    color: var(--text-light); 
    padding: 5rem 0; 
}
.cta-section h2 { 
    color: var(--text-light); 
}
.cta-section p { 
    color: rgba(255, 255, 255, 0.9); 
}
.cta-section .btn { 
    font-size: 1.1rem; 
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .features-grid { 
        grid-template-columns: 1fr; 
    }
}
@media (max-width: 768px) {
    .hero-title { 
        font-size: 2.5rem; 
    }
    .hero-subtitle { 
        font-size: 1.1rem; 
    }
    .page-section { 
        padding: 3.5rem 0; 
    }
    .why-choose-us { 
        margin-top: -60px; 
    }
    .features-grid { 
        padding: 2rem; 
    }
    .category-title { 
        font-size: 1.6rem; 
    }
    .service-title { 
        font-size: 1.2rem; 
    }
}