/* Base Styles */
        :root {
            --primary-color: #f8f8f8;
            --accent-color: #e5f0e6;
            --bg-color: #4a5d4e;
            --green-text: #3c503e;
            --light-bg: #fcfcfb;
            --gold: #cca248;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background-color: var(--light-bg); color: #333; overflow-x: hidden; }
        
        /* Header */
        .page-header { background-color: var(--bg-color); padding: 1.5rem 4rem;  z-index: 100; }
        header { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .logo-section { display: flex; align-items: center; gap: 1.5rem; }
        .logo-img {
    height: 85px;
    width: auto;
    max-width: 300px;
    transition: transform 0.3s ease;
}
.nav-section { display: flex; align-items: center; gap: 1.5rem; }
        nav ul { display: flex; list-style: none; gap: 1.5rem; }
        nav a { color: white; text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s; }
        nav a:hover { color: rgba(255,255,255,0.6); }
        .btn-book-now { background: linear-gradient(90deg, #cca248 0%, #ba8a24 100%); color: white; text-decoration: none; padding: 0.6rem 1.6rem; border-radius: 30px; font-weight: 600; font-size: 0.95rem; }

        /* Split Hero Section */
        .split-hero { display: flex; min-height: 80vh; background-color: #6a7c6d; position: relative; }
        .hero-left { width: 100%; padding: 6rem 4rem; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; text-align: left; color: white; position: relative; z-index: 2; background: linear-gradient(90deg, rgba(40,48,41,0.95) 0%, rgba(40,48,41,0.85) 45%, rgba(40,48,41,0.2) 100%); }
        .hero-right { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
        .hero-right img { width: 100%; height: 100%; object-fit: cover; }
        
        .hero-subtitle { font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem; color: rgba(255,255,255,0.8); }
        .hero-title { font-family: 'Cinzel', serif; font-size: 3.5rem; font-weight: 400; margin-bottom: 1rem; line-height: 1.1; letter-spacing: 1px; }
        .hero-desc-short { font-size: 1.2rem; font-weight: 400; margin-bottom: 2rem; }
        .hero-desc-long { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.85); margin-bottom: 3rem; max-width: 500px; }
        
        .hero-buttons { display: flex; gap: 1.5rem; align-items: center; }
        .circle-btn { width: 110px; height: 110px; border-radius: 50%; display: flex; justify-content: center; align-items: center; text-align: center; text-decoration: none; font-size: 0.95rem; line-height: 1.3; font-weight: 400; transition: all 0.3s; }
        .circle-btn-solid { background-color: white; color: var(--green-text); }
        .circle-btn-solid:hover { transform: scale(1.05); }
        .circle-btn-outline { border: 1px solid white; color: white; }
        .circle-btn-outline:hover { background-color: rgba(255,255,255,0.1); transform: scale(1.05); }

        /* Rest of Sections styling adapted to Casa */
        .trust-bar-section { background-color: var(--green-text); padding: 2rem 4rem; color: white; }
        .trust-bar-container { display: flex; justify-content: space-between; max-width: 1600px; margin: 0 auto; flex-wrap: wrap; gap: 2rem; }
        .trust-item { display: flex; align-items: center; gap: 1rem; }
        .trust-icon { font-size: 1.5rem; }
        .trust-text { display: flex; flex-direction: column; }
        .trust-text strong { font-weight: 500; font-size: 0.95rem; }
        .trust-text span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

        .section-header { text-align: center; margin-bottom: 4rem; }
        .section-subtitle { color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 1rem; font-weight: 500; }
        .section-title { font-family: 'Cinzel', serif; font-size: 2.5rem; color: #222; font-weight: 400; }
        
        .benefits-section { padding: 6rem 4rem; background: var(--light-bg); }
        .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
        .benefit-card { background: white; padding: 2.5rem; border-radius: 16px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: transform 0.3s; }
        .benefit-card:hover { transform: translateY(-5px); }
        .benefit-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1.5rem; }
        .benefit-card h3 { font-size: 1.2rem; margin-bottom: 1rem; color: #333; }
        .benefit-card p { font-size: 0.9rem; color: #777; line-height: 1.6; }

        .service-details-section { padding: 6rem 4rem; background: white; }
        .service-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto; }
        .details-text h3 { font-family: 'Cinzel', serif; font-size: 1.8rem; margin-bottom: 1.5rem; color: #222; }
        .details-text p { line-height: 1.8; color: #666; margin-bottom: 1.5rem; }
        .details-boxes { display: flex; flex-direction: column; gap: 1.5rem; }
        .detail-box { background: var(--light-bg); padding: 1.5rem 2rem; border-radius: 12px; border-left: 4px solid var(--gold); }
        .detail-box h4 { font-family: 'Cinzel', serif; font-size: 1.2rem; margin-bottom: 0.5rem; color: #222; }
        .detail-box p { color: #666; font-size: 0.95rem; }

        .why-choose-us { padding: 6rem 4rem; background: var(--light-bg); }
        .why-choose-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; }
        .why-choose-image { border-radius: 20px; overflow: hidden; }
        .why-choose-image img { width: 100%; height: auto; display: block; }
        .why-choose-list { list-style: none; margin-top: 2rem; }
        .why-choose-list li { display: flex; gap: 1rem; margin-bottom: 1.5rem; color: #555; line-height: 1.6; }
        .why-choose-list i { color: var(--gold); margin-top: 5px; }

        .faq-section { padding: 6rem 4rem; background: white; }
        .accordion-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
        .accordion-item { border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
        .accordion-header { width: 100%; padding: 1.5rem; background: white; border: none; text-align: left; font-weight: 500; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #333; }
        .accordion-content { padding: 0 1.5rem; background: white; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: #666; line-height: 1.6; }

        .modern-footer { background: var(--bg-color); color: white; padding: 4rem 4rem 2rem; margin-top: 4rem; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; max-width: 1600px; margin: 0 auto; margin-bottom: 3rem; }
        .footer-col h3 { font-family: 'Cinzel', serif; margin-bottom: 1.5rem; font-weight: 400; color: var(--gold); }
        .footer-col p { color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 1rem; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 0.8rem; }
        .footer-col a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s; }
        .footer-col a:hover { color: white; }
        .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 0.9rem; }

        @media (max-width: 1024px) {
            .split-hero { flex-direction: column; }
            .hero-right { min-height: 400px; }
            .why-choose-container, .service-details-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 3rem; }
            .trust-bar-container { flex-direction: column; align-items: flex-start; }
            .footer-grid { grid-template-columns: 1fr; }
        }
    
        
    
        /* Footer Section */
        .main-footer {
            padding: 4rem;
            max-width: 1600px;
            margin: 0 auto;
            background-color: var(--light-bg);
        }
        
        .footer-container {
            display: flex;
            border-radius: 30px;
            overflow: hidden;
            background-color: #5b6f5d;
            color: white;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        .footer-map {
            flex: 1;
            min-height: 400px;
        }
        
        .footer-map iframe {
            width: 100%;
            height: 100%;
            filter: grayscale(100%) opacity(0.8);
        }
        
        .footer-content {
            flex: 1;
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        
        .footer-middle {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            margin-bottom: 3rem;
        }
        
        .footer-social-text {
            font-size: 1.1rem;
            line-height: 1.4;
            grid-column: 1 / 2;
        }
        
        .footer-social-icons {
            display: flex;
            gap: 1rem;
            grid-column: 1 / 2;
        }
        
        .footer-social-icons a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 35px;
            height: 35px;
            background-color: white;
            color: #5b6f5d;
            border-radius: 50%;
            text-decoration: none;
            transition: transform 0.3s;
        }
        
        .footer-social-icons a:hover {
            transform: scale(1.1);
        }
        
        .footer-email {
            grid-column: 2 / 3;
            grid-row: 1 / 3;
            text-align: right;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.9);
        }
        
        .footer-policy {
            font-size: 0.85rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.6);
            margin-bottom: 3rem;
        }
        
        .footer-bottom-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .footer-address {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding-bottom: 2px;
            transition: color 0.3s, border-color 0.3s;
        }
        
        .footer-address:hover {
            color: white;
            border-color: white;
        }
        
        .footer-dev {
            color: rgba(255,255,255,0.6);
        }

        @media (max-width: 1024px) {
            .footer-container {
                flex-direction: column;
            }
            .footer-map {
                min-height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .main-footer {
                padding: 2rem;
            }
            .footer-content {
                padding: 2rem;
            }
            .footer-top {
                flex-direction: column;
                gap: 2rem;
            }
            .footer-middle {
                grid-template-columns: 1fr;
            }
            .footer-email {
                grid-column: 1 / 2;
                grid-row: 3 / 4;
                text-align: left;
                margin-top: 1rem;
            }
            .footer-bottom-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
    
        /* Scroll & Interactive Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            will-change: opacity, transform;
        }
        
        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
    
/* New Simple Footer CSS */
.simple-footer {
    background-color: #546355;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}
.simple-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.simple-footer-col h3 {
    color: #cda14a;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.simple-footer-col p, .simple-footer-col a {
    color: #eaeaea;
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
    line-height: 1.6;
}
.simple-footer-col a:hover {
    color: #cda14a;
}
.simple-footer-bottom {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.8rem;
    color: #b0b0b0;
}
@media (max-width: 900px) {
    .simple-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .simple-footer-container {
        grid-template-columns: 1fr;
    }
}
    
/* Mobile Navigation CSS */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #4a5d4e;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.mobile-nav.active {
    right: 0;
}
.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}
.mobile-nav-content a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    transition: color 0.3s;
}
.mobile-nav-content a:hover {
    color: #cca248;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-left: 1rem;
    z-index: 1000;
}
.hamburger span {
    display: block;
    width: 35px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}
.hamburger span:nth-child(2) {
    width: 25px;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    nav ul, .btn-book-now {
        display: none !important;
    }
}

/* --- */

.booking-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}
.booking-modal-overlay.active {
    display: flex;
}
.booking-modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
.booking-modal-close {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}
.booking-modal-close:hover { color: #333; }

/* --- */

/* CSS reset and base styles */
        :root {
            --primary-color: #f8f8f8;
            --accent-color: #e5f0e6;
            --bg-color: #4a5d4e;
            --green-text: #3c503e;
            --light-bg: #fcfcfb;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: #333;
            overflow-x: hidden;
        }

        /* Header (Solid background for secondary pages) */
        .page-header {
            background-color: var(--bg-color);
            padding: 2.5rem 4rem 1.5rem;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 1.5rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .logo-img {
    height: 85px;
    width: auto;
    max-width: 300px;
    transition: transform 0.3s ease;
}
.address-info h1 {
            font-family: 'Cinzel', serif;
            font-weight: 400;
            font-size: 1.8rem;
            letter-spacing: 0.5px;
            margin-bottom: 0.3rem;
            color: white;
        }

        .address-info p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.4;
            font-weight: 300;
        }

        .nav-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: rgba(255,255,255,0.6);
        }

        .btn-book-now {
            background: linear-gradient(90deg, #cca248 0%, #ba8a24 100%);
            color: white;
            text-decoration: none;
            padding: 0.6rem 1.6rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            display: inline-block;
        }
        
        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            margin-left: 1rem;
        }

        .hamburger span {
            display: block;
            width: 35px;
            height: 2px;
            background-color: white;
            transition: 0.3s;
        }

        /* Services Grid Section */
        .services-page {
            padding: 6rem 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .page-title {
            font-family: 'Cinzel', serif;
            font-size: 3rem;
            font-weight: 400;
            text-align: center;
            margin-bottom: 4rem;
            color: #222;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem 2rem;
            justify-items: center;
        }

        /* Service Cards (Reused from index.html) */
        .service-card {
            width: 100%;
            max-width: 380px;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        
        .service-card:hover .service-card-img {
            transform: scale(1.05);
        }

        .service-card-img-wrapper {
            position: relative;
            height: 250px;
            margin-bottom: 1.2rem;
            border-radius: 16px;
        }

        .service-card-img-inner {
            width: 100%;
            height: 100%;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .service-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card-duration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 3rem 1.2rem 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .service-add-btn {
            position: absolute;
            bottom: -5px;
            right: 15px;
            width: 45px;
            height: 45px;
            background-color: #5b6f5d;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            border: 3px solid white;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            z-index: 2;
        }
        
        .service-add-btn:hover {
            transform: scale(1.1);
        }

        .service-card-title {
            font-weight: 500;
            font-size: 1.15rem;
            margin-bottom: 0.8rem;
            color: #333;
        }
        
        .service-card-desc {
            font-size: 0.95rem;
            color: #777;
            line-height: 1.6;
            font-weight: 400;
        }

        @media (max-width: 1024px) {
            .nav-section { gap: 1.5rem; }
            nav ul { gap: 1rem; }
            .page-header { padding: 2rem 3rem 1.5rem; }
            .services-page { padding: 4rem 3rem; }
        }
        
        @media (max-width: 768px) {
            nav ul, .btn-book-now { display: none; }
            .page-header { padding: 1.5rem 2rem 1rem; }
            .services-page { padding: 3rem 2rem; }
            .page-title { font-size: 2.2rem; }
        }
    
        
    
        /* Footer Section */
        .main-footer {
            padding: 4rem;
            max-width: 1600px;
            margin: 0 auto;
            background-color: var(--light-bg);
        }
        
        .footer-container {
            display: flex;
            border-radius: 30px;
            overflow: hidden;
            background-color: #5b6f5d;
            color: white;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        .footer-map {
            flex: 1;
            min-height: 400px;
        }
        
        .footer-map iframe {
            width: 100%;
            height: 100%;
            filter: grayscale(100%) opacity(0.8);
        }
        
        .footer-content {
            flex: 1;
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        
        .footer-middle {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            margin-bottom: 3rem;
        }
        
        .footer-social-text {
            font-size: 1.1rem;
            line-height: 1.4;
            grid-column: 1 / 2;
        }
        
        .footer-social-icons {
            display: flex;
            gap: 1rem;
            grid-column: 1 / 2;
        }
        
        .footer-social-icons a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 35px;
            height: 35px;
            background-color: white;
            color: #5b6f5d;
            border-radius: 50%;
            text-decoration: none;
            transition: transform 0.3s;
        }
        
        .footer-social-icons a:hover {
            transform: scale(1.1);
        }
        
        .footer-email {
            grid-column: 2 / 3;
            grid-row: 1 / 3;
            text-align: right;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.9);
        }
        
        .footer-policy {
            font-size: 0.85rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.6);
            margin-bottom: 3rem;
        }
        
        .footer-bottom-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .footer-address {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding-bottom: 2px;
            transition: color 0.3s, border-color 0.3s;
        }
        
        .footer-address:hover {
            color: white;
            border-color: white;
        }
        
        .footer-dev {
            color: rgba(255,255,255,0.6);
        }

        @media (max-width: 1024px) {
            .footer-container {
                flex-direction: column;
            }
            .footer-map {
                min-height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .main-footer {
                padding: 2rem;
            }
            .footer-content {
                padding: 2rem;
            }
            .footer-top {
                flex-direction: column;
                gap: 2rem;
            }
            .footer-middle {
                grid-template-columns: 1fr;
            }
            .footer-email {
                grid-column: 1 / 2;
                grid-row: 3 / 4;
                text-align: left;
                margin-top: 1rem;
            }
            .footer-bottom-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
    
        /* Scroll & Interactive Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            will-change: opacity, transform;
        }
        
        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
    
/* New Simple Footer CSS */
.simple-footer {
    background-color: #546355;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}
.simple-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.simple-footer-col h3 {
    color: #cda14a;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.simple-footer-col p, .simple-footer-col a {
    color: #eaeaea;
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
    line-height: 1.6;
}
.simple-footer-col a:hover {
    color: #cda14a;
}
.simple-footer-bottom {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.8rem;
    color: #b0b0b0;
}
@media (max-width: 900px) {
    .simple-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .simple-footer-container {
        grid-template-columns: 1fr;
    }
}
    
/* Mobile Navigation CSS */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #4a5d4e;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.mobile-nav.active {
    right: 0;
}
.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}
.mobile-nav-content a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    transition: color 0.3s;
}
.mobile-nav-content a:hover {
    color: #cca248;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-left: 1rem;
    z-index: 1000;
}
.hamburger span {
    display: block;
    width: 35px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}
.hamburger span:nth-child(2) {
    width: 25px;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    nav ul, .btn-book-now {
        display: none !important;
    }
}

/* --- */

/* CSS reset and base styles */
        :root {
            --primary-color: #f8f8f8;
            --accent-color: #e5f0e6;
            --bg-color: #4a5d4e; /* Fallback */
            --green-text: #3c503e;
            --light-bg: #fcfcfb;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: #333;
            overflow-x: hidden;
        }
        
        /* Hero Section */
        .hero-section {
            background-color: var(--bg-color);
            color: var(--primary-color);
            min-height: 100vh;
            background-image: url('images/premium_spa_bg.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        /* Dark overlay to make text readable */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(60,80,62,0.95) 0%, rgba(60,80,62,0.85) 45%, rgba(60,80,62,0.1) 100%);
            z-index: 1;
        }

        .container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 2.5rem 4rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        /* Header */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding-bottom: 1.5rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .address-info h1 {
            font-family: 'Cinzel', serif;
            font-weight: 400;
            font-size: 1.8rem;
            letter-spacing: 0.5px;
            margin-bottom: 0.3rem;
        }

        .address-info p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.4;
            font-weight: 300;
        }

        .nav-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: rgba(255,255,255,0.6);
        }

        .btn-book-now {
            background: linear-gradient(90deg, #cca248 0%, #ba8a24 100%);
            color: white;
            text-decoration: none;
            padding: 0.6rem 1.6rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            display: inline-block;
        }

        .btn-book-now:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.25);
            color: white;
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            margin-left: 1rem;
        }

        .hamburger span {
            display: block;
            width: 35px;
            height: 2px;
            background-color: white;
            transition: 0.3s;
        }
        .hamburger span:nth-child(2) {
            width: 25px;
        }

        /* Main Content */
        main {
            flex: 1;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: 5rem 0;
            width: 100%;
            gap: 3rem;
        }
        
        .hero-left-content {
            flex: 1;
            max-width: 700px;
        }

        .subtitle {
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.9);
            font-weight: 500;
        }

        .main-title {
            font-family: 'Cinzel', serif;
            font-size: 3.8rem;
            line-height: 1.15;
            font-weight: 400;
            margin-bottom: 3.5rem;
            letter-spacing: 2px;
        }

        .hero-services {
            display: flex;
            gap: 2.5rem;
            margin-bottom: 4.5rem;
        }

        .hero-service-item {
            display: flex;
            align-items: flex-end;
            gap: 10px;
            font-size: 0.95rem;
            border-left: 1px solid rgba(255,255,255,0.4);
            padding-left: 1rem;
            color: rgba(255,255,255,0.85);
            cursor: pointer;
            transition: all 0.3s;
            line-height: 1.3;
            font-weight: 300;
        }

        .hero-service-item:hover {
            color: white;
            border-color: white;
            transform: translateY(-2px);
        }
        
        .hero-service-item i {
            font-size: 0.7rem;
            margin-bottom: 2px;
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 8px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            text-decoration: none;
            font-size: 0.95rem;
            line-height: 1.3;
            transition: all 0.4s ease;
            cursor: pointer;
            font-weight: 400;
        }

        .btn-solid {
            background-color: white;
            color: var(--green-text);
        }

        .btn-solid:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        .btn-outline {
            border: 1px solid white;
            color: white;
            background: transparent;
        }

        .btn-outline:hover {
            background-color: rgba(255,255,255,0.1);
            transform: scale(1.05);
        }

        .btn-subtle {
            border: 1px solid rgba(255,255,255,0.3);
            color: rgba(255,255,255,0.8);
            background: transparent;
            margin-left: 2rem;
        }

        .btn-subtle:hover {
            border-color: rgba(255,255,255,0.8);
            color: white;
            transform: scale(1.05);
        }

        /* Scroll arrow */
        .scroll-down {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255,255,255,0.6);
            font-size: 1.8rem;
            animation: bounce 2s infinite;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .scroll-down:hover {
            color: white;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-10px) translateX(-50%);
            }
            60% {
                transform: translateY(-5px) translateX(-50%);
            }
        }
        
        /* New All Services Section */
        .all-services {
            background-color: var(--light-bg);
            padding: 6rem 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .services-header {
            margin-bottom: 2.5rem;
        }

        .services-title {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 2.5rem;
            color: #222;
            letter-spacing: 1px;
        }

        .filter-bar {
            display: flex;
            gap: 1rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .filter-pill {
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-size: 0.95rem;
            color: #666;
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-pill.active {
            background-color: #e8ebe4;
            color: #222;
            font-weight: 500;
        }

        .services-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .services-hint {
            color: #777;
            font-size: 0.95rem;
        }

        .services-arrows {
            display: flex;
            gap: 1.2rem;
            font-size: 1.2rem;
        }

        .services-arrows i {
            cursor: pointer;
            color: #222;
            transition: color 0.3s;
        }
        
        .services-arrows i.disabled {
            color: #ccc;
            cursor: default;
        }
        
        .services-arrows i:not(.disabled):hover {
            color: #777;
        }

        .services-carousel {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            padding-bottom: 2rem;
        }

        .service-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        
        .service-card:hover .service-card-img {
            transform: scale(1.05);
        }

        .service-card-img-wrapper {
            position: relative;
            height: 200px;
            margin-bottom: 1.2rem;
            border-radius: 16px;
        }

        .service-card-img-inner {
            width: 100%;
            height: 100%;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .service-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card-duration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 3rem 1.2rem 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .service-add-btn {
            position: absolute;
            bottom: -5px;
            right: 15px;
            width: 45px;
            height: 45px;
            background-color: #5b6f5d;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            border: 3px solid white;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            z-index: 2;
        }
        
        .service-add-btn:hover {
            transform: scale(1.1);
        }

        .service-card-title {
            font-weight: 500;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: #333;
        }
        
        .service-card-desc {
            font-size: 0.9rem;
            color: #999;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Media queries */
        @media (max-width: 1200px) {
            .main-title {
                font-size: 3.2rem;
            }
            .container {
                padding: 2rem 3rem;
            }
            .all-services {
                padding: 4rem 3rem;
            }
        }
        
        @media (max-width: 1024px) {
            .main-title {
                font-size: 2.8rem;
            }
            .nav-section {
                gap: 1.5rem;
            }
            nav ul {
                gap: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 1.5rem 2rem;
            }
            .all-services {
                padding: 3rem 2rem;
            }
            .services-carousel {
                grid-template-columns: 1fr;
            }
            nav ul, .btn-book-now {
                display: none;
            }
            .main-title {
                font-size: 2.2rem;
            }
            .hero-services {
                flex-wrap: wrap;
                gap: 1.5rem;
            }
            .cta-buttons {
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 1.5rem;
            }
            .btn-subtle {
                margin-left: 0;
            }
            .address-info h1 {
                font-size: 1.4rem;
            }
        }
        /* Why Us Section */
        .why-us {
            background-color: var(--light-bg);
            padding: 6rem 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .why-us-header {
            margin-bottom: 3rem;
        }

        .why-us-title {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 400;
            line-height: 1.2;
            color: #222;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .why-us-card {
            background-color: white;
            border: 1px solid #f0f0f0;
            border-radius: 20px;
            padding: 1.5rem;
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: transform 0.3s ease;
        }
        
        .services-arrows i:not(.disabled):hover {
            color: #777;
        }

        .services-carousel {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            padding-bottom: 2rem;
        }

        .service-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        
        .service-card:hover .service-card-img {
            transform: scale(1.05);
        }

        .service-card-img-wrapper {
            position: relative;
            height: 200px;
            margin-bottom: 1.2rem;
            border-radius: 16px;
        }

        .service-card-img-inner {
            width: 100%;
            height: 100%;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .service-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card-duration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 3rem 1.2rem 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .service-add-btn {
            position: absolute;
            bottom: -5px;
            right: 15px;
            width: 45px;
            height: 45px;
            background-color: #5b6f5d;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            border: 3px solid white;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            z-index: 2;
        }
        
        .service-add-btn:hover {
            transform: scale(1.1);
        }

        .service-card-title {
            font-weight: 500;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: #333;
        }
        
        .service-card-desc {
            font-size: 0.9rem;
            color: #999;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Media queries */
        @media (max-width: 1200px) {
            .main-title {
                font-size: 3.2rem;
            }
            .container {
                padding: 2rem 3rem;
            }
            .all-services {
                padding: 4rem 3rem;
            }
        }
        
        @media (max-width: 1024px) {
            .main-title {
                font-size: 2.8rem;
            }
            .nav-section {
                gap: 1.5rem;
            }
            nav ul {
                gap: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 1.5rem 2rem;
            }
            .all-services {
                padding: 3rem 2rem;
            }
            .services-carousel {
                grid-template-columns: 1fr;
            }
            nav ul, .btn-book-now {
                display: none;
            }
            .main-title {
                font-size: 2.2rem;
            }
            .hero-services {
                flex-wrap: wrap;
                gap: 1.5rem;
            }
            .cta-buttons {
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 1.5rem;
            }
            .btn-subtle {
                margin-left: 0;
            }
            .address-info h1 {
                font-size: 1.4rem;
            }
        }
        /* Why Us Section */
        .why-us {
            background-color: var(--light-bg);
            padding: 6rem 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .why-us-header {
            margin-bottom: 3rem;
        }

        .why-us-title {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 400;
            line-height: 1.2;
            color: #222;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .why-us-card {
            background-color: white;
            border: 1px solid #f0f0f0;
            border-radius: 20px;
            padding: 1.5rem;
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: transform 0.3s ease;
        }

        .why-us-card:hover {
            transform: translateY(-5px);
        }

        .why-us-card.image-card {
            padding: 0;
            overflow: hidden;
            border: none;
            box-shadow: none;
            grid-row: span 2;
        }

        .why-us-card.image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            transition: transform 0.5s ease;
        }
        
        .why-us-card.image-card:hover img {
            transform: scale(1.05);
        }

        .why-us-card.highlight-card {
            background-color: #e8ebe4;
            border: none;
        }
        
        .why-us-card.highlight-card p {
            color: #3c503e;
        }

        .card-plus {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            color: #aaa;
            font-size: 0.9rem;
            font-weight: 300;
        }

        .why-us-card-content {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: flex-start;
        }

        .why-us-card-title {
            font-weight: 600;
            font-size: 1.15rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .why-us-card-desc {
            font-size: 0.95rem;
            color: #777;
            line-height: 1.6;
            font-weight: 400;
        }
        
        @media (max-width: 1024px) {
            .why-us-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .why-us {
                padding: 4rem 2rem;
            }
            .why-us-grid {
                grid-template-columns: 1fr;
            }
            .why-us-card.image-card {
                grid-row: auto;
            }
        }
        /* Reviews Section */
                .reviews-section {
            padding: 8rem 2rem;
            background-color: #fafafa;
            text-align: center;
        }
        
        .reviews-header {
            margin-bottom: 4rem;
        }
        
        .reviews-title {
            font-family: 'Cinzel', serif;
            font-size: 2.8rem;
            color: #222;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }
        
        .reviews-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .reviews-carousel {
            display: flex;
            overflow-x: auto;
            gap: 2rem;
            padding: 2rem 1rem 4rem;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }
        
        .reviews-carousel::-webkit-scrollbar {
            display: none; /* Chrome, Safari and Opera */
        }
        
        .review-card-elegant {
            flex: 0 0 400px;
            scroll-snap-align: center;
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            transition: transform 0.3s;
        }
        
        .review-card-elegant:hover {
            transform: translateY(-5px);
        }
        
        .quote-icon {
            color: #cca248;
            font-size: 3rem;
            opacity: 0.3;
            margin-bottom: 1.5rem;
        }
        
        .elegant-stars {
            color: #cca248;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            display: flex;
            gap: 0.2rem;
        }
        
        .elegant-review-text {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 2rem;
            flex-grow: 1;
        }
        
        .elegant-reviewer-name {
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.3rem;
        }
        
        .elegant-reviewer-role {
            font-size: 0.85rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .review-card-elegant {
                flex: 0 0 300px;
                padding: 2rem 1.5rem;
            }
            .reviews-title {
                font-size: 2.2rem;
            }
        }
        /* Footer Section */
        .main-footer {
            padding: 4rem;
            max-width: 1600px;
            margin: 0 auto;
            background-color: var(--light-bg);
        }
        
        .footer-container {
            display: flex;
            border-radius: 30px;
            overflow: hidden;
            background-color: #5b6f5d;
            color: white;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        .footer-map {
            flex: 1;
            min-height: 400px;
        }
        
        .footer-map iframe {
            width: 100%;
            height: 100%;
            filter: grayscale(100%) opacity(0.8);
        }
        
        .footer-content {
            flex: 1;
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        
        .footer-middle {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            margin-bottom: 3rem;
        }
        
        .footer-social-text {
            font-size: 1.1rem;
            line-height: 1.4;
            grid-column: 1 / 2;
        }
        
        .footer-social-icons {
            display: flex;
            gap: 1rem;
            grid-column: 1 / 2;
        }
        
        .footer-social-icons a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 35px;
            height: 35px;
            background-color: white;
            color: #5b6f5d;
            border-radius: 50%;
            text-decoration: none;
            transition: transform 0.3s;
        }
        
        .footer-social-icons a:hover {
            transform: scale(1.1);
        }
        
        .footer-email {
            grid-column: 2 / 3;
            grid-row: 1 / 3;
            text-align: right;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.9);
        }
        
        .footer-policy {
            font-size: 0.85rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.6);
            margin-bottom: 3rem;
        }
        
        .footer-bottom-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .footer-address {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding-bottom: 2px;
            transition: color 0.3s, border-color 0.3s;
        }
        
        .footer-address:hover {
            color: white;
            border-color: white;
        }
        
        .footer-dev {
            color: rgba(255,255,255,0.6);
        }

        @media (max-width: 1024px) {
            .footer-container {
                flex-direction: column;
            }
            .footer-map {
                min-height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .main-footer {
                padding: 2rem;
            }
            .footer-content {
                padding: 2rem;
            }
            .footer-top {
                flex-direction: column;
                gap: 2rem;
            }
            .footer-middle {
                grid-template-columns: 1fr;
            }
            .footer-email {
                grid-column: 1 / 2;
                grid-row: 3 / 4;
                text-align: left;
                margin-top: 1rem;
            }
            .footer-bottom-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
        /* Hero Booking Form */
        /* Hero Booking Form */
        .hero-booking-form {
            background-color: rgba(40, 48, 41, 0.65);
            border-radius: 10px;
            padding: 3rem 2.5rem;
            width: 100%;
            max-width: 450px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .booking-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .booking-brand {
            font-family: 'Cinzel', serif;
            font-style: italic;
            color: #cca248;
            font-size: 1.1rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .booking-title {
            font-family: 'Cinzel', serif;
            color: white;
            letter-spacing: 4px;
            font-weight: 400;
            font-size: 1.4rem;
        }

        .booking-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            row-gap: 2rem;
        }

        .input-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .input-group label {
            font-size: 0.85rem;
            color: #b0b0b0;
            font-weight: 500;
        }

        .input-group input, .input-group select {
            width: 100%;
            box-sizing: border-box;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            color: white;
            padding: 0.5rem 0;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: border-color 0.3s;
        }
        
        .input-group select, .input-group input[type="date"], .input-group input[type="time"] {
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 6px;
            padding: 0.8rem 1rem;
            background-color: rgba(0, 0, 0, 0.2);
            color: #e0e0e0;
        }
        
        .input-group select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cca248' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
        }

        .input-group select option {
            background-color: #4a5d4e;
            color: white;
        }

        .input-group input:focus, .input-group select:focus {
            border-color: #cca248;
        }

        .btn-submit-booking {
            grid-column: 1 / -1;
            width: 100%;
            box-sizing: border-box;
            background-color: #cca248;
            color: white;
            border: none;
            padding: 1.1rem;
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            margin-top: 1.5rem;
            cursor: pointer;
            transition: background-color 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-submit-booking:hover {
            background-color: #ba8a24;
        }

        .input-group input[type="date"]::-webkit-calendar-picker-indicator {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cca248' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3e%3c/rect%3e%3cline x1='16' y1='2' x2='16' y2='6'%3e%3c/line%3e%3cline x1='8' y1='2' x2='8' y2='6'%3e%3c/line%3e%3cline x1='3' y1='10' x2='21' y2='10'%3e%3c/line%3e%3c/svg%3e");
            cursor: pointer;
        }

        .input-group input[type="time"]::-webkit-calendar-picker-indicator {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cca248' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3ccircle cx='12' cy='12' r='10'%3e%3c/circle%3e%3cpolyline points='12 6 12 12 16 14'%3e%3c/polyline%3e%3c/svg%3e");
            cursor: pointer;
        }

        @media (max-width: 1024px) {
            main {
                flex-direction: column !important;
                justify-content: center !important;
                gap: 4rem;
                padding: 3rem 0;
            }
            .hero-left-content {
                max-width: 100% !important;
                text-align: center;
            }
            .subtitle {
                justify-content: center;
            }
            .hero-services {
                justify-content: center;
            }
            .cta-buttons {
                justify-content: center;
            }
        }
    
        
    
        /* Scroll & Interactive Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            will-change: opacity, transform;
        }
        
        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
    
/* New Simple Footer CSS */
.simple-footer {
    background-color: #546355;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}
.simple-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.simple-footer-col h3 {
    color: #cda14a;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.simple-footer-col p, .simple-footer-col a {
    color: #eaeaea;
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
    line-height: 1.6;
}
.simple-footer-col a:hover {
    color: #cda14a;
}
.simple-footer-bottom {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.8rem;
    color: #b0b0b0;
}
@media (max-width: 900px) {
    .simple-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .simple-footer-container {
        grid-template-columns: 1fr;
    }
}
    
/* Mobile Navigation CSS */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #4a5d4e;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.mobile-nav.active {
    right: 0;
}
.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}
.mobile-nav-content a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    transition: color 0.3s;
}
.mobile-nav-content a:hover {
    color: #cca248;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-left: 1rem;
    z-index: 1000;
}
.hamburger span {
    display: block;
    width: 35px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}
.hamburger span:nth-child(2) {
    width: 25px;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    nav ul, .btn-book-now {
        display: none !important;
    }
}

/* --- */

@media (max-width: 600px) {
    .booking-form-grid {
        grid-template-columns: 1fr !important;
    }
    .hero-booking-form {
        padding: 2rem 1.5rem !important;
    }
}

/* --- */

/* Masonry Grid CSS */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.masonry-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.08);
}

.masonry-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.masonry-item:hover::after {
    opacity: 1;
}

.masonry-item.tall { grid-row: span 2; }
.masonry-item.wide { grid-column: span 2; }

@media (max-width: 768px) {
    .masonry-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .masonry-item.wide { grid-column: span 1; }
}

@media (max-width: 480px) {
    .masonry-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
    .masonry-item.tall { grid-row: span 1; }
}

/* Lightbox CSS */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #cca248;
}

@keyframes zoomIn {
    from {transform:scale(0.8); opacity:0}
    to {transform:scale(1); opacity:1}
}

/* --- */

.google-reviews-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    font-family: 'Inter', sans-serif;
}
.google-header {
    text-align: center;
    margin-bottom: 3rem;
}
.google-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #202124;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.google-rating-summary {
    font-size: 1.15rem;
    color: #5f6368;
    margin-top: 10px;
}
.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.google-review-card {
    background: white;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}
.gr-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.gr-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}
.gr-user-info {
    display: flex;
    flex-direction: column;
}
.gr-name {
    font-weight: 600;
    color: #202124;
    font-size: 1rem;
}
.gr-time {
    font-size: 0.85rem;
    color: #70757a;
    margin-top: 2px;
}
.gr-stars {
    color: #fbbc04;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.gr-text {
    font-size: 0.95rem;
    color: #3c4043;
    line-height: 1.6;
}

/* --- */

/* CSS reset and base styles */
        :root {
            --primary-color: #f8f8f8;
            --accent-color: #e5f0e6;
            --bg-color: #4a5d4e; /* Fallback */
            --green-text: #3c503e;
            --light-bg: #fcfcfb;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: #333;
            overflow-x: hidden;
        }
        
        /* Hero Section */
        .hero-section {
            background-color: var(--bg-color);
            color: var(--primary-color);
            min-height: 100vh;
            background-image: url('images/premium_spa_bg.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        /* Dark overlay to make text readable */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(60,80,62,0.95) 0%, rgba(60,80,62,0.85) 45%, rgba(60,80,62,0.1) 100%);
            z-index: 1;
        }

        .container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 2.5rem 4rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        /* Header */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding-bottom: 1.5rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .address-info h1 {
            font-family: 'Cinzel', serif;
            font-weight: 400;
            font-size: 1.8rem;
            letter-spacing: 0.5px;
            margin-bottom: 0.3rem;
        }

        .address-info p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.4;
            font-weight: 300;
        }

        .nav-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: rgba(255,255,255,0.6);
        }

        .btn-book-now {
            background: linear-gradient(90deg, #cca248 0%, #ba8a24 100%);
            color: white;
            text-decoration: none;
            padding: 0.6rem 1.6rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            display: inline-block;
        }

        .btn-book-now:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.25);
            color: white;
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            margin-left: 1rem;
        }

        .hamburger span {
            display: block;
            width: 35px;
            height: 2px;
            background-color: white;
            transition: 0.3s;
        }
        .hamburger span:nth-child(2) {
            width: 25px;
        }

        /* Main Content */
        main {
            flex: 1;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: 5rem 0;
            width: 100%;
            gap: 3rem;
        }
        
        .hero-left-content {
            flex: 1;
            max-width: 700px;
        }

        .subtitle {
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.9);
            font-weight: 500;
        }

        .main-title {
            font-family: 'Cinzel', serif;
            font-size: 3.8rem;
            line-height: 1.15;
            font-weight: 400;
            margin-bottom: 3.5rem;
            letter-spacing: 2px;
        }

        .hero-services {
            display: flex;
            gap: 2.5rem;
            margin-bottom: 4.5rem;
        }

        .hero-service-item {
            display: flex;
            align-items: flex-end;
            gap: 10px;
            font-size: 0.95rem;
            border-left: 1px solid rgba(255,255,255,0.4);
            padding-left: 1rem;
            color: rgba(255,255,255,0.85);
            cursor: pointer;
            transition: all 0.3s;
            line-height: 1.3;
            font-weight: 300;
        }

        .hero-service-item:hover {
            color: white;
            border-color: white;
            transform: translateY(-2px);
        }
        
        .hero-service-item i {
            font-size: 0.7rem;
            margin-bottom: 2px;
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 8px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            text-decoration: none;
            font-size: 0.95rem;
            line-height: 1.3;
            transition: all 0.4s ease;
            cursor: pointer;
            font-weight: 400;
        }

        .btn-solid {
            background-color: white;
            color: var(--green-text);
        }

        .btn-solid:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        .btn-outline {
            border: 1px solid white;
            color: white;
            background: transparent;
        }

        .btn-outline:hover {
            background-color: rgba(255,255,255,0.1);
            transform: scale(1.05);
        }

        .btn-subtle {
            border: 1px solid rgba(255,255,255,0.3);
            color: rgba(255,255,255,0.8);
            background: transparent;
            margin-left: 2rem;
        }

        .btn-subtle:hover {
            border-color: rgba(255,255,255,0.8);
            color: white;
            transform: scale(1.05);
        }

        /* Scroll arrow */
        .scroll-down {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255,255,255,0.6);
            font-size: 1.8rem;
            animation: bounce 2s infinite;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .scroll-down:hover {
            color: white;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-10px) translateX(-50%);
            }
            60% {
                transform: translateY(-5px) translateX(-50%);
            }
        }
        
        /* New All Services Section */
        .all-services {
            background-color: var(--light-bg);
            padding: 6rem 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .services-header {
            margin-bottom: 2.5rem;
        }

        .services-title {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 2.5rem;
            color: #222;
            letter-spacing: 1px;
        }

        .filter-bar {
            display: flex;
            gap: 1rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .filter-pill {
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-size: 0.95rem;
            color: #666;
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-pill.active {
            background-color: #e8ebe4;
            color: #222;
            font-weight: 500;
        }

        .services-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .services-hint {
            color: #777;
            font-size: 0.95rem;
        }

        .services-arrows {
            display: flex;
            gap: 1.2rem;
            font-size: 1.2rem;
        }

        .services-arrows i {
            cursor: pointer;
            color: #222;
            transition: color 0.3s;
        }
        
        .services-arrows i.disabled {
            color: #ccc;
            cursor: default;
        }
        
        .services-arrows i:not(.disabled):hover {
            color: #777;
        }

        .services-carousel {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            padding-bottom: 2rem;
        }

        .service-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        
        .service-card:hover .service-card-img {
            transform: scale(1.05);
        }

        .service-card-img-wrapper {
            position: relative;
            height: 200px;
            margin-bottom: 1.2rem;
            border-radius: 16px;
        }

        .service-card-img-inner {
            width: 100%;
            height: 100%;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .service-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card-duration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 3rem 1.2rem 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .service-book-btn {
            position: absolute;
            bottom: -15px;
            right: 15px;
            padding: 0.5rem 1.2rem;
            background: linear-gradient(90deg, #cca248 0%, #ba8a24 100%);
            border-radius: 20px;
            color: white;
            border: 2px solid white;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            z-index: 2;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
        }
        
        .service-book-btn:hover {
            transform: scale(1.05);
        }

        .service-card-title {
            font-weight: 500;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: #333;
        }
        
        .service-card-desc {
            font-size: 0.9rem;
            color: #999;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Media queries */
        @media (max-width: 1200px) {
            .main-title {
                font-size: 3.2rem;
            }
            .container {
                padding: 2rem 3rem;
            }
            .all-services {
                padding: 4rem 3rem;
            }
        }
        
        @media (max-width: 1024px) {
            .main-title {
                font-size: 2.8rem;
            }
            .nav-section {
                gap: 1.5rem;
            }
            nav ul {
                gap: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 1.5rem 2rem;
            }
            .all-services {
                padding: 3rem 2rem;
            }
            .services-carousel {
                grid-template-columns: 1fr;
            }
            nav ul, .btn-book-now {
                display: none;
            }
            .main-title {
                font-size: 2.2rem;
            }
            .hero-services {
                flex-wrap: wrap;
                gap: 1.5rem;
            }
            .cta-buttons {
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 1.5rem;
            }
            .btn-subtle {
                margin-left: 0;
            }
            .address-info h1 {
                font-size: 1.4rem;
            }
        }
        /* Why Us Section */
        .why-us {
            background-color: var(--light-bg);
            padding: 6rem 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .why-us-header {
            margin-bottom: 3rem;
        }

        .why-us-title {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 400;
            line-height: 1.2;
            color: #222;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .why-us-card {
            background-color: white;
            border: 1px solid #f0f0f0;
            border-radius: 20px;
            padding: 1.5rem;
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: transform 0.3s ease;
        }
        
        .services-arrows i:not(.disabled):hover {
            color: #777;
        }

        .services-carousel {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            padding-bottom: 2rem;
        }

        .service-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        
        .service-card:hover .service-card-img {
            transform: scale(1.05);
        }

        .service-card-img-wrapper {
            position: relative;
            height: 200px;
            margin-bottom: 1.2rem;
            border-radius: 16px;
        }

        .service-card-img-inner {
            width: 100%;
            height: 100%;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .service-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card-duration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 3rem 1.2rem 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .service-add-btn {
            position: absolute;
            bottom: -5px;
            right: 15px;
            width: 45px;
            height: 45px;
            background-color: #5b6f5d;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            border: 3px solid white;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            z-index: 2;
        }
        
        .service-add-btn:hover {
            transform: scale(1.1);
        }

        .service-card-title {
            font-weight: 500;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: #333;
        }
        
        .service-card-desc {
            font-size: 0.9rem;
            color: #999;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Media queries */
        @media (max-width: 1200px) {
            .main-title {
                font-size: 3.2rem;
            }
            .container {
                padding: 2rem 3rem;
            }
            .all-services {
                padding: 4rem 3rem;
            }
        }
        
        @media (max-width: 1024px) {
            .main-title {
                font-size: 2.8rem;
            }
            .nav-section {
                gap: 1.5rem;
            }
            nav ul {
                gap: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 1.5rem 2rem;
            }
            .all-services {
                padding: 3rem 2rem;
            }
            .services-carousel {
                grid-template-columns: 1fr;
            }
            nav ul, .btn-book-now {
                display: none;
            }
            .main-title {
                font-size: 2.2rem;
            }
            .hero-services {
                flex-wrap: wrap;
                gap: 1.5rem;
            }
            .cta-buttons {
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 1.5rem;
            }
            .btn-subtle {
                margin-left: 0;
            }
            .address-info h1 {
                font-size: 1.4rem;
            }
        }
        /* Why Us Section */
        .why-us {
            background-color: var(--light-bg);
            padding: 6rem 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .why-us-header {
            margin-bottom: 3rem;
        }

        .why-us-title {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 400;
            line-height: 1.2;
            color: #222;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .why-us-card {
            background-color: white;
            border: 1px solid #f0f0f0;
            border-radius: 20px;
            padding: 1.5rem;
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: transform 0.3s ease;
        }

        .why-us-card:hover {
            transform: translateY(-5px);
        }

        .why-us-card.image-card {
            padding: 0;
            overflow: hidden;
            border: none;
            box-shadow: none;
            grid-row: span 2;
        }

        .why-us-card.image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            transition: transform 0.5s ease;
        }
        
        .why-us-card.image-card:hover img {
            transform: scale(1.05);
        }

        .why-us-card.highlight-card {
            background-color: #e8ebe4;
            border: none;
        }
        
        .why-us-card.highlight-card p {
            color: #3c503e;
        }

        .card-plus {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            color: #aaa;
            font-size: 0.9rem;
            font-weight: 300;
        }

        .why-us-card-content {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: flex-start;
        }

        .why-us-card-title {
            font-weight: 600;
            font-size: 1.15rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .why-us-card-desc {
            font-size: 0.95rem;
            color: #777;
            line-height: 1.6;
            font-weight: 400;
        }
        
        @media (max-width: 1024px) {
            .why-us-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .why-us {
                padding: 4rem 2rem;
            }
            .why-us-grid {
                grid-template-columns: 1fr;
            }
            .why-us-card.image-card {
                grid-row: auto;
            }
        }
        /* Reviews Section */
                .reviews-section {
            padding: 8rem 2rem;
            background-color: #fafafa;
            text-align: center;
        }
        
        .reviews-header {
            margin-bottom: 4rem;
        }
        
        .reviews-title {
            font-family: 'Cinzel', serif;
            font-size: 2.8rem;
            color: #222;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }
        
        .reviews-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .reviews-carousel {
            display: flex;
            overflow-x: auto;
            gap: 2rem;
            padding: 2rem 1rem 4rem;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }
        
        .reviews-carousel::-webkit-scrollbar {
            display: none; /* Chrome, Safari and Opera */
        }
        
        .review-card-elegant {
            flex: 0 0 400px;
            scroll-snap-align: center;
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            transition: transform 0.3s;
        }
        
        .review-card-elegant:hover {
            transform: translateY(-5px);
        }
        
        .quote-icon {
            color: #cca248;
            font-size: 3rem;
            opacity: 0.3;
            margin-bottom: 1.5rem;
        }
        
        .elegant-stars {
            color: #cca248;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            display: flex;
            gap: 0.2rem;
        }
        
        .elegant-review-text {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 2rem;
            flex-grow: 1;
        }
        
        .elegant-reviewer-name {
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.3rem;
        }
        
        .elegant-reviewer-role {
            font-size: 0.85rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .review-card-elegant {
                flex: 0 0 300px;
                padding: 2rem 1.5rem;
            }
            .reviews-title {
                font-size: 2.2rem;
            }
        }
        /* Footer Section */
        .main-footer {
            padding: 4rem;
            max-width: 1600px;
            margin: 0 auto;
            background-color: var(--light-bg);
        }
        
        .footer-container {
            display: flex;
            border-radius: 30px;
            overflow: hidden;
            background-color: #5b6f5d;
            color: white;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        .footer-map {
            flex: 1;
            min-height: 400px;
        }
        
        .footer-map iframe {
            width: 100%;
            height: 100%;
            filter: grayscale(100%) opacity(0.8);
        }
        
        .footer-content {
            flex: 1;
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        
        .footer-middle {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            margin-bottom: 3rem;
        }
        
        .footer-social-text {
            font-size: 1.1rem;
            line-height: 1.4;
            grid-column: 1 / 2;
        }
        
        .footer-social-icons {
            display: flex;
            gap: 1rem;
            grid-column: 1 / 2;
        }
        
        .footer-social-icons a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 35px;
            height: 35px;
            background-color: white;
            color: #5b6f5d;
            border-radius: 50%;
            text-decoration: none;
            transition: transform 0.3s;
        }
        
        .footer-social-icons a:hover {
            transform: scale(1.1);
        }
        
        .footer-email {
            grid-column: 2 / 3;
            grid-row: 1 / 3;
            text-align: right;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.9);
        }
        
        .footer-policy {
            font-size: 0.85rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.6);
            margin-bottom: 3rem;
        }
        
        .footer-bottom-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .footer-address {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding-bottom: 2px;
            transition: color 0.3s, border-color 0.3s;
        }
        
        .footer-address:hover {
            color: white;
            border-color: white;
        }
        
        .footer-dev {
            color: rgba(255,255,255,0.6);
        }

        @media (max-width: 1024px) {
            .footer-container {
                flex-direction: column;
            }
            .footer-map {
                min-height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .main-footer {
                padding: 2rem;
            }
            .footer-content {
                padding: 2rem;
            }
            .footer-top {
                flex-direction: column;
                gap: 2rem;
            }
            .footer-middle {
                grid-template-columns: 1fr;
            }
            .footer-email {
                grid-column: 1 / 2;
                grid-row: 3 / 4;
                text-align: left;
                margin-top: 1rem;
            }
            .footer-bottom-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
        /* Hero Booking Form */
        /* Hero Booking Form */
        .hero-booking-form {
            background-color: rgba(40, 48, 41, 0.65);
            border-radius: 10px;
            padding: 3rem 2.5rem;
            width: 100%;
            max-width: 450px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .booking-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .booking-brand {
            font-family: 'Cinzel', serif;
            font-style: italic;
            color: #cca248;
            font-size: 1.1rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .booking-title {
            font-family: 'Cinzel', serif;
            color: white;
            letter-spacing: 4px;
            font-weight: 400;
            font-size: 1.4rem;
        }

        .booking-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            row-gap: 2rem;
        }

        .input-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .input-group label {
            font-size: 0.85rem;
            color: #b0b0b0;
            font-weight: 500;
        }

        .input-group input, .input-group select {
            width: 100%;
            box-sizing: border-box;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            color: white;
            padding: 0.5rem 0;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: border-color 0.3s;
        }
        
        .input-group select, .input-group input[type="date"], .input-group input[type="time"] {
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 6px;
            padding: 0.8rem 1rem;
            background-color: rgba(0, 0, 0, 0.2);
            color: #e0e0e0;
        }
        
        .input-group select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cca248' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
        }

        .input-group select option {
            background-color: #4a5d4e;
            color: white;
        }

        .input-group input:focus, .input-group select:focus {
            border-color: #cca248;
        }

        .btn-submit-booking {
            grid-column: 1 / -1;
            width: 100%;
            box-sizing: border-box;
            background-color: #cca248;
            color: white;
            border: none;
            padding: 1.1rem;
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            margin-top: 1.5rem;
            cursor: pointer;
            transition: background-color 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-submit-booking:hover {
            background-color: #ba8a24;
        }

        .input-group input[type="date"]::-webkit-calendar-picker-indicator {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cca248' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3e%3c/rect%3e%3cline x1='16' y1='2' x2='16' y2='6'%3e%3c/line%3e%3cline x1='8' y1='2' x2='8' y2='6'%3e%3c/line%3e%3cline x1='3' y1='10' x2='21' y2='10'%3e%3c/line%3e%3c/svg%3e");
            cursor: pointer;
        }

        .input-group input[type="time"]::-webkit-calendar-picker-indicator {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cca248' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3ccircle cx='12' cy='12' r='10'%3e%3c/circle%3e%3cpolyline points='12 6 12 12 16 14'%3e%3c/polyline%3e%3c/svg%3e");
            cursor: pointer;
        }

        @media (max-width: 1024px) {
            main {
                flex-direction: column !important;
                justify-content: center !important;
                gap: 4rem;
                padding: 3rem 0;
            }
            .hero-left-content {
                max-width: 100% !important;
                text-align: center;
            }
            .subtitle {
                justify-content: center;
            }
            .hero-services {
                justify-content: center;
            }
            .cta-buttons {
                justify-content: center;
            }
        }
    
        
    
        /* Scroll & Interactive Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            will-change: opacity, transform;
        }
        
        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
    
/* New Simple Footer CSS */
.simple-footer {
    background-color: #546355;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}
.simple-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.simple-footer-col h3 {
    color: #cda14a;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.simple-footer-col p, .simple-footer-col a {
    color: #eaeaea;
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
    line-height: 1.6;
}
.simple-footer-col a:hover {
    color: #cda14a;
}
.simple-footer-bottom {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.8rem;
    color: #b0b0b0;
}
@media (max-width: 900px) {
    .simple-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .simple-footer-container {
        grid-template-columns: 1fr;
    }
}
    
/* Mobile Navigation CSS */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #4a5d4e;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.mobile-nav.active {
    right: 0;
}
.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}
.mobile-nav-content a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    transition: color 0.3s;
}
.mobile-nav-content a:hover {
    color: #cca248;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-left: 1rem;
    z-index: 1000;
}
.hamburger span {
    display: block;
    width: 35px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}
.hamburger span:nth-child(2) {
    width: 25px;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    nav ul, .btn-book-now {
        display: none !important;
    }
}

/* --- */

/* CSS reset and base styles */
        :root {
            --primary-color: #f8f8f8;
            --accent-color: #e5f0e6;
            --bg-color: #4a5d4e;
            --green-text: #3c503e;
            --light-bg: #fcfcfb;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: #333;
            overflow-x: hidden;
        }

        /* Header (Solid background for secondary pages) */
        .page-header {
            background-color: var(--bg-color);
            padding: 2.5rem 4rem 1.5rem;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 1.5rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .logo-img {
    height: 85px;
    width: auto;
    max-width: 300px;
    transition: transform 0.3s ease;
}
.address-info h1 {
            font-family: 'Cinzel', serif;
            font-weight: 400;
            font-size: 1.8rem;
            letter-spacing: 0.5px;
            margin-bottom: 0.3rem;
            color: white;
        }

        .address-info p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.4;
            font-weight: 300;
        }

        .nav-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: rgba(255,255,255,0.6);
        }

        .btn-book-now {
            background: linear-gradient(90deg, #cca248 0%, #ba8a24 100%);
            color: white;
            text-decoration: none;
            padding: 0.6rem 1.6rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            display: inline-block;
        }
        
        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            margin-left: 1rem;
        }

        .hamburger span {
            display: block;
            width: 35px;
            height: 2px;
            background-color: white;
            transition: 0.3s;
        }

        /* Services Grid Section */
        .services-page {
            padding: 6rem 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .page-title {
            font-family: 'Cinzel', serif;
            font-size: 3rem;
            font-weight: 400;
            text-align: center;
            margin-bottom: 4rem;
            color: #222;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem 2rem;
            justify-items: center;
        }

        /* Service Cards (Reused from index.html) */
        .service-card {
            width: 100%;
            max-width: 380px;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        
        .service-card:hover .service-card-img {
            transform: scale(1.05);
        }

        .service-card-img-wrapper {
            position: relative;
            height: 250px;
            margin-bottom: 1.2rem;
            border-radius: 16px;
        }

        .service-card-img-inner {
            width: 100%;
            height: 100%;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .service-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card-duration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 3rem 1.2rem 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .service-action-buttons {
            position: absolute;
            bottom: -15px;
            right: 15px;
            display: flex;
            gap: 0.5rem;
            z-index: 2;
        }
        
        .btn-sm-pill {
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.3s, background-color 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        .btn-sm-pill:hover {
            transform: scale(1.05);
        }
        
        .btn-book-now-sm {
            background: linear-gradient(90deg, #cca248 0%, #ba8a24 100%);
            color: white;
            border: 2px solid white;
        }
        
        .btn-view-now-sm {
            background-color: white;
            color: #5b6f5d;
            border: 2px solid #5b6f5d;
        }

        .service-card-title {
            font-weight: 500;
            font-size: 1.15rem;
            margin-bottom: 0.8rem;
            color: #333;
        }
        
        .service-card-desc {
            font-size: 0.95rem;
            color: #777;
            line-height: 1.6;
            font-weight: 400;
        }

        @media (max-width: 1024px) {
            .nav-section { gap: 1.5rem; }
            nav ul { gap: 1rem; }
            .page-header { padding: 2rem 3rem 1.5rem; }
            .services-page { padding: 4rem 3rem; }
        }
        
        @media (max-width: 768px) {
            nav ul, .btn-book-now { display: none; }
            .page-header { padding: 1.5rem 2rem 1rem; }
            .services-page { padding: 3rem 2rem; }
            .page-title { font-size: 2.2rem; }
        }
    
        
    
        /* Footer Section */
        .main-footer {
            padding: 4rem;
            max-width: 1600px;
            margin: 0 auto;
            background-color: var(--light-bg);
        }
        
        .footer-container {
            display: flex;
            border-radius: 30px;
            overflow: hidden;
            background-color: #5b6f5d;
            color: white;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        .footer-map {
            flex: 1;
            min-height: 400px;
        }
        
        .footer-map iframe {
            width: 100%;
            height: 100%;
            filter: grayscale(100%) opacity(0.8);
        }
        
        .footer-content {
            flex: 1;
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        
        .footer-middle {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            margin-bottom: 3rem;
        }
        
        .footer-social-text {
            font-size: 1.1rem;
            line-height: 1.4;
            grid-column: 1 / 2;
        }
        
        .footer-social-icons {
            display: flex;
            gap: 1rem;
            grid-column: 1 / 2;
        }
        
        .footer-social-icons a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 35px;
            height: 35px;
            background-color: white;
            color: #5b6f5d;
            border-radius: 50%;
            text-decoration: none;
            transition: transform 0.3s;
        }
        
        .footer-social-icons a:hover {
            transform: scale(1.1);
        }
        
        .footer-email {
            grid-column: 2 / 3;
            grid-row: 1 / 3;
            text-align: right;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.9);
        }
        
        .footer-policy {
            font-size: 0.85rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.6);
            margin-bottom: 3rem;
        }
        
        .footer-bottom-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .footer-address {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding-bottom: 2px;
            transition: color 0.3s, border-color 0.3s;
        }
        
        .footer-address:hover {
            color: white;
            border-color: white;
        }
        
        .footer-dev {
            color: rgba(255,255,255,0.6);
        }

        @media (max-width: 1024px) {
            .footer-container {
                flex-direction: column;
            }
            .footer-map {
                min-height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .main-footer {
                padding: 2rem;
            }
            .footer-content {
                padding: 2rem;
            }
            .footer-top {
                flex-direction: column;
                gap: 2rem;
            }
            .footer-middle {
                grid-template-columns: 1fr;
            }
            .footer-email {
                grid-column: 1 / 2;
                grid-row: 3 / 4;
                text-align: left;
                margin-top: 1rem;
            }
            .footer-bottom-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
    
        /* Scroll & Interactive Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            will-change: opacity, transform;
        }
        
        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
    
/* New Simple Footer CSS */
.simple-footer {
    background-color: #546355;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}
.simple-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.simple-footer-col h3 {
    color: #cda14a;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.simple-footer-col p, .simple-footer-col a {
    color: #eaeaea;
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
    line-height: 1.6;
}
.simple-footer-col a:hover {
    color: #cda14a;
}
.simple-footer-bottom {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.8rem;
    color: #b0b0b0;
}
@media (max-width: 900px) {
    .simple-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .simple-footer-container {
        grid-template-columns: 1fr;
    }
}
    
/* Mobile Navigation CSS */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #4a5d4e;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.mobile-nav.active {
    right: 0;
}
.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}
.mobile-nav-content a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    transition: color 0.3s;
}
.mobile-nav-content a:hover {
    color: #cca248;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-left: 1rem;
    z-index: 1000;
}
.hamburger span {
    display: block;
    width: 35px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}
.hamburger span:nth-child(2) {
    width: 25px;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    nav ul, .btn-book-now {
        display: none !important;
    }
}

/* --- */

/* CSS reset and base styles */
        :root {
            --primary-color: #f8f8f8;
            --accent-color: #e5f0e6;
            --bg-color: #4a5d4e;
            --green-text: #3c503e;
            --light-bg: #fcfcfb;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: #333;
            overflow-x: hidden;
        }

        /* Header (Solid background for secondary pages) */
        .page-header {
            background-color: var(--bg-color);
            padding: 2.5rem 4rem 1.5rem;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 1.5rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .logo-img {
    height: 85px;
    width: auto;
    max-width: 300px;
    transition: transform 0.3s ease;
}
.address-info h1 {
            font-family: 'Cinzel', serif;
            font-weight: 400;
            font-size: 1.8rem;
            letter-spacing: 0.5px;
            margin-bottom: 0.3rem;
            color: white;
        }

        .address-info p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.4;
            font-weight: 300;
        }

        .nav-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: rgba(255,255,255,0.6);
        }

        .btn-book-now {
            background: linear-gradient(90deg, #cca248 0%, #ba8a24 100%);
            color: white;
            text-decoration: none;
            padding: 0.6rem 1.6rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            display: inline-block;
        }
        
        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            margin-left: 1rem;
        }

        .hamburger span {
            display: block;
            width: 35px;
            height: 2px;
            background-color: white;
            transition: 0.3s;
        }

        /* Services Grid Section */
        .services-page {
            padding: 6rem 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .page-title {
            font-family: 'Cinzel', serif;
            font-size: 3rem;
            font-weight: 400;
            text-align: center;
            margin-bottom: 4rem;
            color: #222;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem 2rem;
            justify-items: center;
        }

        /* Service Cards (Reused from index.html) */
        .service-card {
            width: 100%;
            max-width: 380px;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        
        .service-card:hover .service-card-img {
            transform: scale(1.05);
        }

        .service-card-img-wrapper {
            position: relative;
            height: 250px;
            margin-bottom: 1.2rem;
            border-radius: 16px;
        }

        .service-card-img-inner {
            width: 100%;
            height: 100%;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .service-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card-duration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 3rem 1.2rem 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .service-add-btn {
            position: absolute;
            bottom: -5px;
            right: 15px;
            width: 45px;
            height: 45px;
            background-color: #5b6f5d;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            border: 3px solid white;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            z-index: 2;
        }
        
        .service-add-btn:hover {
            transform: scale(1.1);
        }

        .service-card-title {
            font-weight: 500;
            font-size: 1.15rem;
            margin-bottom: 0.8rem;
            color: #333;
        }
        
        .service-card-desc {
            font-size: 0.95rem;
            color: #777;
            line-height: 1.6;
            font-weight: 400;
        }

        @media (max-width: 1024px) {
            .nav-section { gap: 1.5rem; }
            nav ul { gap: 1rem; }
            .page-header { padding: 2rem 3rem 1.5rem; }
            .services-page { padding: 4rem 3rem; }
        }
        
        @media (max-width: 768px) {
            nav ul, .btn-book-now { display: none; }
            .page-header { padding: 1.5rem 2rem 1rem; }
            .services-page { padding: 3rem 2rem; }
            .page-title { font-size: 2.2rem; }
        }
    
        
    
        /* Footer Section */
        .main-footer {
            padding: 4rem;
            max-width: 1600px;
            margin: 0 auto;
            background-color: var(--light-bg);
        }
        
        .footer-container {
            display: flex;
            border-radius: 30px;
            overflow: hidden;
            background-color: #5b6f5d;
            color: white;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        .footer-map {
            flex: 1;
            min-height: 400px;
        }
        
        .footer-map iframe {
            width: 100%;
            height: 100%;
            filter: grayscale(100%) opacity(0.8);
        }
        
        .footer-content {
            flex: 1;
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        
        .footer-middle {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            margin-bottom: 3rem;
        }
        
        .footer-social-text {
            font-size: 1.1rem;
            line-height: 1.4;
            grid-column: 1 / 2;
        }
        
        .footer-social-icons {
            display: flex;
            gap: 1rem;
            grid-column: 1 / 2;
        }
        
        .footer-social-icons a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 35px;
            height: 35px;
            background-color: white;
            color: #5b6f5d;
            border-radius: 50%;
            text-decoration: none;
            transition: transform 0.3s;
        }
        
        .footer-social-icons a:hover {
            transform: scale(1.1);
        }
        
        .footer-email {
            grid-column: 2 / 3;
            grid-row: 1 / 3;
            text-align: right;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.9);
        }
        
        .footer-policy {
            font-size: 0.85rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.6);
            margin-bottom: 3rem;
        }
        
        .footer-bottom-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .footer-address {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding-bottom: 2px;
            transition: color 0.3s, border-color 0.3s;
        }
        
        .footer-address:hover {
            color: white;
            border-color: white;
        }
        
        .footer-dev {
            color: rgba(255,255,255,0.6);
        }

        @media (max-width: 1024px) {
            .footer-container {
                flex-direction: column;
            }
            .footer-map {
                min-height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .main-footer {
                padding: 2rem;
            }
            .footer-content {
                padding: 2rem;
            }
            .footer-top {
                flex-direction: column;
                gap: 2rem;
            }
            .footer-middle {
                grid-template-columns: 1fr;
            }
            .footer-email {
                grid-column: 1 / 2;
                grid-row: 3 / 4;
                text-align: left;
                margin-top: 1rem;
            }
            .footer-bottom-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
    
        /* Scroll & Interactive Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            will-change: opacity, transform;
        }
        
        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
    
/* New Simple Footer CSS */
.simple-footer {
    background-color: #546355;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}
.simple-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.simple-footer-col h3 {
    color: #cda14a;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.simple-footer-col p, .simple-footer-col a {
    color: #eaeaea;
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
    line-height: 1.6;
}
.simple-footer-col a:hover {
    color: #cda14a;
}
.simple-footer-bottom {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.8rem;
    color: #b0b0b0;
}
@media (max-width: 900px) {
    .simple-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .simple-footer-container {
        grid-template-columns: 1fr;
    }
}
    
/* Mobile Navigation CSS */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #4a5d4e;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.mobile-nav.active {
    right: 0;
}
.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}
.mobile-nav-content a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    transition: color 0.3s;
}
.mobile-nav-content a:hover {
    color: #cca248;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-left: 1rem;
    z-index: 1000;
}
.hamburger span {
    display: block;
    width: 35px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}
.hamburger span:nth-child(2) {
    width: 25px;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    nav ul, .btn-book-now {
        display: none !important;
    }
}
    
.why-us {
            background-color: var(--light-bg);
            padding: 6rem 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .why-us-header {
            margin-bottom: 3rem;
        }

        .why-us-title {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 400;
            line-height: 1.2;
            color: #222;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .why-us-card {
            background-color: white;
            border: 1px solid #f0f0f0;
            border-radius: 20px;
            padding: 1.5rem;
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: transform 0.3s ease;
        }

        .why-us-card:hover {
            transform: translateY(-5px);
        }

        .why-us-card.image-card {
            padding: 0;
            overflow: hidden;
            border: none;
            box-shadow: none;
        }

        .why-us-card.image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            transition: transform 0.5s ease;
        }
        
        .why-us-card.image-card:hover img {
            transform: scale(1.05);
        }

        .why-us-card.highlight-card {
            background-color: #e8ebe4;
            border: none;
        }
        
        .why-us-card.highlight-card p {
            color: #3c503e;
        }

        .card-plus {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            color: #aaa;
            font-size: 0.9rem;
            font-weight: 300;
        }

        .why-us-card-content {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: flex-start;
        }

        .why-us-card-title {
            font-weight: 600;
            font-size: 1.15rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .why-us-card-desc {
            font-size: 0.95rem;
            color: #777;
            line-height: 1.6;
            font-weight: 400;
        }
        
        @media (max-width: 1024px) {
            .why-us-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .why-us {
                padding: 4rem 2rem;
            }
            .why-us-grid {
                grid-template-columns: 1fr;
            }
        }

/* --- */

.booking-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}
.booking-modal-overlay.active {
    display: flex;
}
.booking-modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
.booking-modal-close {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}
.booking-modal-close:hover { color: #333; }

.why-us {
            background-color: var(--light-bg);
            padding: 6rem 4rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .why-us-header {
            margin-bottom: 3rem;
        }

        .why-us-title {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 400;
            line-height: 1.2;
            color: #222;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .why-us-card {
            background-color: white;
            border: 1px solid #f0f0f0;
            border-radius: 20px;
            padding: 1.5rem;
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: transform 0.3s ease;
        }

        .why-us-card:hover {
            transform: translateY(-5px);
        }

        .why-us-card.image-card {
            padding: 0;
            overflow: hidden;
            border: none;
            box-shadow: none;
        }

        .why-us-card.image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            transition: transform 0.5s ease;
        }
        
        .why-us-card.image-card:hover img {
            transform: scale(1.05);
        }

        .why-us-card.highlight-card {
            background-color: #e8ebe4;
            border: none;
        }
        
        .why-us-card.highlight-card p {
            color: #3c503e;
        }

        .card-plus {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            color: #aaa;
            font-size: 0.9rem;
            font-weight: 300;
        }

        .why-us-card-content {
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: flex-start;
        }

        .why-us-card-title {
            font-weight: 600;
            font-size: 1.15rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .why-us-card-desc {
            font-size: 0.95rem;
            color: #777;
            line-height: 1.6;
            font-weight: 400;
        }
        
        @media (max-width: 1024px) {
            .why-us-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .why-us {
                padding: 4rem 2rem;
            }
            .why-us-grid {
                grid-template-columns: 1fr;
            }
        }