/* ================================================================ */
/* ELITE ELEGANCE STUDIO - SERVICES PAGE UNIQUE STYLES           */
/* ================================================================ */

:root {
    --primary-gold: #d4af37;
    --primary-black: #0a0a0a;
    --primary-white: #fff;
    --font-family-main: 'Open Sans', Arial, Helvetica, sans-serif;
    --font-family-heading: 'Playfair Display', serif;
}

/* Hero Section */
.ees-services-hero {
    background-image: url('../images/WhatsApp Image 2025-08-16 at 13.07.35.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ees-services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(10, 10, 10, 0.7));
    z-index: 1;
}

.ees-hero-content {
    position: relative;
    z-index: 2;
    color: var(--primary-white);
}

.ees-services-title {
    font-family: var(--font-family-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.ees-services-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-style: italic;
}

.ees-services-btn {
    background: var(--primary-white);
    color: var(--primary-black);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ees-services-btn:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

/* Services Section */
.ees-services-section {
    padding: 5rem 0;
}

.ees-section-heading {
    font-family: var(--font-family-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.ees-service-category {
    margin-bottom: 3rem;
    background: var(--primary-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(10, 10, 10, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.ees-category-title {
    font-family: var(--font-family-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.ees-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.tax-note {
    font-size: 0.8rem;
    color: #666;
    font-weight: normal;
    font-style: italic;
}

.ees-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.ees-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.ees-service-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.service-name {
    font-weight: 600;
    color: var(--primary-black);
    font-size: 1rem;
}

.service-price {
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-family: var(--font-family-heading);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .ees-services-title {
        font-size: 3rem;
    }
    
    .ees-section-heading {
        font-size: 2.5rem;
    }
    
    .ees-service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .ees-services-hero {
        height: 300px;
    }
    
    .ees-services-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .ees-services-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .ees-services-btn {
        display: block;
        width: 200px;
        margin: 10px auto;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .ees-section-heading {
        font-size: 2rem;
    }
    
    .ees-service-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .ees-category-title {
        font-size: 1.5rem;
    }
    
    .ees-service-item {
        padding: 0.8rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .ees-services-hero {
        height: 250px;
    }
    
    .ees-services-title {
        font-size: 2rem;
    }
    
    .ees-services-subtitle {
        font-size: 1rem;
    }
    
    .ees-service-category {
        padding: 1rem;
    }
    
    .ees-category-title {
        font-size: 1.3rem;
    }
}




/* ================================================================ */
/* MOBILE RESPONSIVE FIXES FOR ALL SECTIONS                       */
/* ================================================================ */

/* Services Hero Section Mobile Fix */
@media (max-width: 767.98px) {
    .ees-services-hero {
        height: 280px !important;
        padding: 1rem;
    }
    
    .ees-hero-content {
        padding: 0 1rem;
    }
    
    .ees-services-title {
        font-size: 2.2rem !important;
        line-height: 2.6rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 1rem !important;
        text-align: center;
    }
    
    .ees-services-subtitle {
        font-size: 1rem !important;
        line-height: 1.4rem !important;
        max-width: 90% !important;
        margin: 0 auto 1.5rem !important;
        padding: 0 0.5rem !important;
        text-align: center;
    }
    
    .ees-services-buttons {
        margin-top: 1rem !important;
    }
    
    .ees-services-btn {
        display: block !important;
        width: 180px !important;
        margin: 8px auto !important;
        padding: 10px 20px !important;
        font-size: 0.95rem !important;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .ees-services-hero {
        height: 240px !important;
        padding: 0.5rem;
    }
    
    .ees-services-title {
        font-size: 1.8rem !important;
        line-height: 2.2rem !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 0.8rem !important;
    }
    
    .ees-services-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.3rem !important;
        max-width: 95% !important;
        margin: 0 auto 1.2rem !important;
        padding: 0 0.3rem !important;
    }
    
    .ees-services-btn {
        width: 160px !important;
        margin: 6px auto !important;
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 375px) {
    .ees-services-hero {
        height: 200px !important;
    }
    
    .ees-services-title {
        font-size: 1.5rem !important;
        line-height: 1.8rem !important;
        letter-spacing: 0px !important;
        margin-bottom: 0.6rem !important;
    }
    
    .ees-services-subtitle {
        font-size: 0.8rem !important;
        line-height: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .ees-services-btn {
        width: 140px !important;
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
        margin: 4px auto !important;
    }
}

/* Gallery Hero Section Mobile Fix */
@media (max-width: 767.98px) {
    .ees-gallery-hero {
        height: 280px !important;
    }
    
    .ees-gallery-title {
        font-size: 2.2rem !important;
        line-height: 2.6rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 1rem !important;
    }
    
    .ees-gallery-subtitle {
        font-size: 1rem !important;
        line-height: 1.4rem !important;
        max-width: 90% !important;
        padding: 0 1rem !important;
    }
    
    .ees-gallery-divider {
        margin-top: 1rem !important;
    }
    
    .divider-line {
        width: 50px !important;
        margin: 0 10px !important;
    }
    
    .divider-icon {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 575.98px) {
    .ees-gallery-hero {
        height: 240px !important;
    }
    
    .ees-gallery-title {
        font-size: 1.8rem !important;
        line-height: 2.2rem !important;
        letter-spacing: 0.5px !important;
    }
    
    .ees-gallery-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.3rem !important;
        max-width: 95% !important;
        padding: 0 0.5rem !important;
    }
    
    .divider-line {
        width: 40px !important;
        margin: 0 8px !important;
    }
    
    .divider-icon {
        font-size: 1rem !important;
    }
}

/* About Hero Section Mobile Fix */
@media (max-width: 767.98px) {
    .ees-about-hero {
        height: 280px !important;
    }
    
    .ees-about-title {
        font-size: 2.2rem !important;
        line-height: 2.6rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 1rem !important;
    }
    
    .ees-about-subtitle {
        font-size: 1rem !important;
        line-height: 1.4rem !important;
        max-width: 90% !important;
        padding: 0 1rem !important;
    }
}

@media (max-width: 575.98px) {
    .ees-about-hero {
        height: 240px !important;
    }
    
    .ees-about-title {
        font-size: 1.8rem !important;
        line-height: 2.2rem !important;
        letter-spacing: 0.5px !important;
    }
    
    .ees-about-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.3rem !important;
        max-width: 95% !important;
        padding: 0 0.5rem !important;
    }
}

/* Contact Hero Section Mobile Fix */
@media (max-width: 767.98px) {
    .ees-hero-banner {
        height: 280px !important;
    }
    
    .ees-hero-title {
        font-size: 2.2rem !important;
        line-height: 2.6rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 1rem !important;
    }
    
    .ees-hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.4rem !important;
        max-width: 90% !important;
        padding: 0 1rem !important;
    }
}

@media (max-width: 575.98px) {
    .ees-hero-banner {
        height: 240px !important;
    }
    
    .ees-hero-title {
        font-size: 1.8rem !important;
        line-height: 2.2rem !important;
        letter-spacing: 0.5px !important;
    }
    
    .ees-hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.3rem !important;
        max-width: 95% !important;
        padding: 0 0.5rem !important;
    }
}
