: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;
}

body {
    font-family: var(--font-family-main);
}

/* Top Contact Bar */
.top-contact-bar {
    padding: 7px;
    background: var(--primary-black);
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.contact-items {
    display: flex;
    align-items: center;
}

.contact-items .contact-item {
    margin-right: 25px;
    color: var(--primary-gold);
}

.contact-items .contact-item a {
    color: var(--primary-gold);
    text-decoration: none;
}

/* Mobile Contact Icons */
.contact-items-mobile {
    gap: 15px;
}

.contact-icon {
    color: var(--primary-gold);
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-icon:hover {
    color: var(--primary-white);
}

/* Social Icons */
.social-items {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
}

.social-icon {
    color: var(--primary-gold);
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.social-icon:hover {
    color: var(--primary-white);
}

/* Main Navbar */
.navbar {
    /* padding: 0.8rem 0; */
    background: var(--primary-white) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    margin-right: 10px;
}

.brand-name {
    font-family: var(--font-family-heading);
    font-size: 1.4rem;
    color: var(--primary-gold);
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--primary-black) !important;
    font-family: var(--font-family-heading);
    font-weight: 600;
    font-size: 1.05rem;
    margin-right: 18px;
    padding: 0.7rem 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-gold) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    justify-content: center;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--primary-black);
    font-family: var(--font-family-main);
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.2s;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--primary-gold);
    color: var(--primary-white);
}

/* Buttons */
.btn-warning {
    background: var(--primary-gold);
    color: var(--primary-black);
    border: none;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
    transition: all 0.2s;
}

.btn-warning:hover {
    background: #b8941f;
    color: var(--primary-black);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.navbar-toggler {
    border: none;
    background: transparent;
    color: var(--primary-gold);
    font-size: 1.3rem;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .logo-img {
        height: 35px;
    }

    .navbar-nav {
        padding: 1rem 0;
        text-align: left;
    }

    /* Mobile menu alignment */
    .navbar-collapse {
        text-align: left;
    }

    .navbar-nav .nav-link {
        text-align: left;
        margin-right: 0;
        padding: 0.7rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Mobile CTA buttons */
    .cta-buttons {
        margin-left: 0;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 2px solid var(--primary-gold);
        justify-content: flex-start;
    }

    .cta-buttons .btn {
        margin-right: 10px;
        margin-bottom: 0.5rem;
    }

    /* Remove ms-auto on mobile */
    .navbar-nav {
        margin-left: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .social-items {
        justify-content: end;
        gap: 10px;
    }
    
    .contact-icon,
    .social-icon {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .logo-img {
        height: 28px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
    }

    /* Mobile buttons stack */
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons .btn {
        width: auto;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

.text-gold {
    color: var(--primary-gold);
}


/* Testimonials Section */
.testimonials-section {
    background: #f8f9fa;
}

.testimonials-carousel .item {
    padding: 0 15px;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-gold);
}

.testimonial-photo {
    margin-bottom: 1rem;
}

.client-photo {
    width: 70px !important;
    margin: auto;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.star-rating {
    margin-bottom: 1rem;
}

.star-rating i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin: 0 1px;
}

.testimonial-quote {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.client-info {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: auto;
}

.client-name {
    font-family: var(--font-family-heading);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.client-service {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Owl Carousel Custom Styling */
.testimonials-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.testimonials-carousel .owl-dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s;
}

/* .testimonials-carousel .owl-dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
} */

/* Testimonial Stats */
.testimonial-stats {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-family-heading);
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Testimonial CTA */
.testimonial-cta {
    background: linear-gradient(135deg, var(--primary-black), #333);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.cta-title {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
        height: 350px;
    }
    
    .client-photo {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-quote {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .testimonials-carousel .item {
        padding: 0 10px;
    }
}

@media (max-width: 575px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        padding: 1.2rem;
        height: 320px;
    }
    
    .testimonial-cta {
        padding: 2rem 1rem;
    }
}



/* Contact Form Section */
.contact-form-section {
    background: #f8f9fa;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-item1 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
/* .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
} */

.contact-icon1 {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon1 i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h6 {
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 0;
}

.contact-details a {
    color: var(--primary-gold);
    text-decoration: none;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-black);
    color: white;
    transform: translateY(-3px);
}

.form-container {
    border-radius: 15px;
}

.form-label {
    font-weight: 600;
    color: var(--primary-black);
}

.form-control, .form-select {
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 0.7rem;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212,175,55,0.25);
}

.pricing-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    height: 100%;
}

.table-header {
    background: var(--primary-black) !important;
    color: var(--primary-gold) !important;
}

.table-hover tbody tr:hover {
    background-color: rgba(212,175,55,0.1);
}


/* Salon Images Grid Section */
.salon-images-grid {
    background: #f8f9fa;
}

.salon-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.salon-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.salon-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s;
}

.salon-image-card:hover .salon-img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212,175,55,0.9), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.salon-image-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.overlay-content p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Work Portfolio Carousel Section */
.work-portfolio-carousel {
    background: white;
}

.portfolio-carousel .item {
    padding: 0 15px;
}

.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.portfolio-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 1.5rem;
    text-align: center;
}

.portfolio-info h5 {
    font-family: var(--font-family-heading);
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Portfolio Carousel Controls */
.portfolio-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.portfolio-carousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s;
}

/* .portfolio-carousel .owl-dot.active {
    background: var(--primary-gold);
    transform: scale(1.3);
} */

.portfolio-carousel .owl-nav {
    text-align: center;
    margin-top: 1rem;
}

.portfolio-carousel .owl-prev,
.portfolio-carousel .owl-next {
    background: var(--primary-gold) !important;
    color: white !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.portfolio-carousel .owl-prev:hover,
.portfolio-carousel .owl-next:hover {
    background: var(--primary-black) !important;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .salon-img,
    .portfolio-img {
        height: 220px;
    }
    
    .overlay-content i {
        font-size: 2.5rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
    
    .portfolio-info {
        padding: 1rem;
    }
    
    .portfolio-info h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .salon-img,
    .portfolio-img {
        height: 200px;
    }
    
    .portfolio-carousel .item {
        padding: 0 10px;
    }
}

/* Top Contact Bar - Mobile Desktop View Fix */
.top-contact-bar {
    background: var(--primary-black);
    color: var(--primary-gold);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

/* Desktop Contact Items (Only on laptop/desktop) */
.contact-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-items .contact-item {
    color: var(--primary-gold);
    font-size: 0.85rem;
    white-space: nowrap;
}

.contact-items .contact-item a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-items .contact-item a:hover {
    color: var(--primary-white);
}

/* Mobile Contact Icons (Mobile, Tablet, Mobile Desktop View) */
.contact-items-mobile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-icon {
    color: var(--primary-gold);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212,175,55,0.1);
}

.contact-icon:hover {
    color: var(--primary-white);
    background: rgba(212,175,55,0.3);
    transform: translateY(-1px);
}

/* Social Icons */
.social-items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
}

.social-icon {
    color: var(--primary-gold);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(212,175,55,0.1);
}

.social-icon:hover {
    color: var(--primary-white);
    background: rgba(212,175,55,0.3);
    transform: translateY(-1px);
}

/* Responsive Breakpoints - Fix Mobile Desktop View Issue */

/* Large screens (1200px+) - Full desktop contact info */
@media (min-width: 1200px) {
    .contact-items .contact-item {
        font-size: 0.9rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}

/* Medium to Large screens (992px to 1199px) - Desktop contact info */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .contact-items .contact-item {
        font-size: 0.8rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Tablet and Mobile Desktop View (up to 991px) - Icons only */
@media (max-width: 991.98px) {
    .contact-items-mobile {
        gap: 0.6rem;
    }
    
    .contact-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .social-icon {
        width: 26px;
        height: 26px;
        font-size: 0.9rem;
    }
}

/* Small Mobile (up to 575px) - Compact icons */
@media (max-width: 575.98px) {
    .top-contact-bar {
        padding: 0.4rem 0;
    }
    
    .contact-items-mobile {
        gap: 0.4rem;
    }
    
    .contact-icon {
        width: 26px;
        height: 26px;
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
}

/* Fix for mobile devices in desktop view mode */
@media screen and (max-device-width: 768px) {
    .contact-items {
        display: none !important;
    }
    
    .contact-items-mobile {
        display: flex !important;
    }
}

/* Ensure proper viewport handling */
@viewport {
    width: device-width;
    initial-scale: 1;
}

/* ================================================================ */
/* ELITE ELEGANCE STUDIO - CONTACT PAGE STYLES (ONLY SPECIFIED COLORS) */
/* ================================================================ */

: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 Banner Section */
.ees-hero-banner {
    background-image: url('../images/WhatsApp Image 2025-08-16 at 13.07.35.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ees-hero-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.6));
    z-index: 1;
}

.ees-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--primary-white);
}

.ees-hero-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-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Contact Cards Section */
.ees-contact-cards-section {
    background: var(--primary-white);
    padding: 4rem 0;
}

.ees-contact-card {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(10, 10, 10, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(10, 10, 10, 0.1);
    position: relative;
    overflow: hidden;
}

.ees-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gold);
}

.ees-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(10, 10, 10, 0.15);
}

.ees-contact-icon-wrapper {
    margin-bottom: 2rem;
}

.ees-contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.2rem;
    color: var(--primary-white);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.ees-card-title {
    font-family: var(--font-family-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.ees-card-desc {
    color: var(--primary-black);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.7;
}

.ees-contact-number, .ees-contact-email, .ees-contact-address {
    font-weight: 600;
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    word-break: break-word;
}

.ees-contact-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    color: var(--primary-white);
    background: var(--primary-gold);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.ees-contact-btn:hover {
    color: var(--primary-white);
    background: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(10, 10, 10, 0.4);
}

/* Form Section */
.ees-form-section {
    background: rgba(212, 175, 55, 0.05);
}

.ees-contact-info-card {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(10, 10, 10, 0.1);
    height: 100%;
}

.ees-info-title {
    font-family: var(--font-family-heading);
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.ees-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--primary-black);
}

.ees-detail-item i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 3px;
    min-width: 20px;
}

.ees-detail-item a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

.ees-detail-item a:hover {
    color: var(--primary-black);
}

.ees-form-card {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(10, 10, 10, 0.1);
}

.ees-form-title {
    font-family: var(--font-family-heading);
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid rgba(10, 10, 10, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s;
    font-size: 1rem;
    color: var(--primary-black);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.ees-submit-btn {
    background: var(--primary-gold);
    color: var(--primary-black);
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.ees-submit-btn:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(10, 10, 10, 0.4);
}

/* Map Section */
.ees-map-section {
    background: var(--primary-white);
    padding: 4rem 0;
}

.ees-map-card {
    background: var(--primary-white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(10, 10, 10, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
}

.ees-map-info {
    flex: 1;
    text-align: left;
}

.ees-map-logo {
    margin-bottom: 1.5rem;
}

.ees-map-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.ees-map-title {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.ees-map-address {
    color: var(--primary-black);
    opacity: 0.7;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.ees-map-btn {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.ees-map-btn:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(10, 10, 10, 0.4);
    text-decoration: none;
}

.ees-map-container {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .ees-hero-title {
        font-size: 3rem;
    }
    
    .ees-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .ees-map-card {
        flex-direction: column;
        text-align: center;
    }
    
    .ees-map-info {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .ees-hero-banner {
        height: 280px;
    }
    
    .ees-hero-title {
        font-size: 2.5rem;
    }
    
    .ees-hero-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .ees-contact-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .ees-contact-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .ees-card-title {
        font-size: 1.4rem;
    }
    
    .ees-contact-info-card,
    .ees-form-card {
        padding: 2rem;
    }
    
    .ees-map-card {
        padding: 2rem;
    }
}

@media (max-width: 575.98px) {
    .ees-hero-banner {
        height: 250px;
    }
    
    .ees-hero-title {
        font-size: 2rem;
    }
    
    .ees-hero-subtitle {
        font-size: 1rem;
    }
    
    .ees-contact-card {
        padding: 1.5rem 1rem;
    }
    
    .ees-contact-btn {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
    
    .ees-contact-info-card,
    .ees-form-card {
        padding: 1.5rem;
    }
}


/* ================================================================ */
/* ELITE ELEGANCE STUDIO - GALLERY PAGE WITH WORKING OVERLAY      */
/* ================================================================ */

: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 with GUARANTEED Working Overlay */
.ees-gallery-hero {
    position: relative;
    height: 450px;
    background-image: url('../images/WhatsApp Image 2025-08-16 at 13.07.35.jpeg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Working Overlay using ::before pseudo-element */
.ees-gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(10, 10, 10, 0.7));
    z-index: 1;
}

/* Content above overlay */
.ees-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--primary-white);
    max-width: 900px;
    margin: 0 auto;
}

.ees-gallery-title {
    font-family: var(--font-family-heading);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-white);
}

.ees-gallery-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-style: italic;
    color: var(--primary-white);
}

.ees-gallery-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.divider-line {
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    margin: 0 20px;
    border-radius: 2px;
}

.divider-icon {
    color: var(--primary-white);
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Filter Section */
.ees-gallery-filters {
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.ees-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ees-filter-btn {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-family-heading);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1px;
}

.ees-filter-btn:hover,
.ees-filter-btn.active {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Gallery Grid Section */
.ees-gallery-section {
    background: var(--primary-white);
    padding: 5rem 0;
}

.ees-gallery-item {
    margin-bottom: 2rem;
}

.ees-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(10, 10, 10, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    background: var(--primary-white);
}

.ees-gallery-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 60px rgba(10, 10, 10, 0.2);
    z-index: 10;
}

.ees-gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.ees-gallery-card:hover .ees-gallery-img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

/* Gallery Item Overlay */
.ees-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(10, 10, 10, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-radius: 20px;
}

.ees-gallery-card:hover .ees-gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.ees-gallery-content {
    text-align: center;
    color: var(--primary-white);
    padding: 2rem;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.ees-gallery-card:hover .ees-gallery-content {
    transform: translateY(0);
}

.ees-gallery-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.ees-gallery-content h4 {
    font-family: var(--font-family-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ees-gallery-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Load More Button */
.ees-load-more-btn {
    background: linear-gradient(135deg, var(--primary-gold), rgba(212, 175, 55, 0.8));
    color: var(--primary-black);
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ees-load-more-btn:hover {
    background: var(--primary-black);
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 10, 10, 0.4);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .ees-gallery-title {
        font-size: 4rem;
    }
    
    .ees-gallery-subtitle {
        font-size: 1.4rem;
    }
}

@media (max-width: 767.98px) {
    .ees-gallery-hero {
        height: 350px;
    }
    
    .ees-gallery-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .ees-gallery-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .ees-gallery-img {
        height: 250px;
    }
    
    .ees-filter-tabs {
        gap: 0.5rem;
    }
    
    .ees-filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .ees-gallery-hero {
        height: 280px;
    }
    
    .ees-gallery-title {
        font-size: 2.2rem;
    }
    
    .ees-gallery-subtitle {
        font-size: 1rem;
    }
    
    .ees-filter-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .ees-filter-btn {
        width: 200px;
        margin-bottom: 0.5rem;
    }
    
    .divider-line {
        width: 60px;
        margin: 0 15px;
    }
}
