﻿        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: #C9A99A;
        }

        /* ========== NAVBAR ========== */
        .navbar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 25px 40px;
            display: flex;
            align-items: center;
            z-index: 100;
        }

        .nav-left {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .brand {
            font-size: 22px;
            font-weight: 600;
            color: white;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand img {
            height: 96px;
            width: auto;
            object-fit: contain;
        }

        .menu-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1.5px solid rgba(255,255,255,0.4);
            background: transparent;
            color: white;
            display: none; /* hidden on desktop, shown on mobile */
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            transition: background 0.3s;
        }

        .menu-btn:hover {
            background: rgba(255,255,255,0.15);
        }

        .nav-pills {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .nav-pill {
            padding: 14px 28px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }

        .nav-pill.active {
            background: rgba(255,255,255,0.15);
            color: white;
        }

        .nav-pill:not(.active) {
            background: rgba(255,255,255,0.15);
            color: white;
        }

        .nav-right {
            margin-left: auto;
            flex-shrink: 0;
            display: flex;
            gap: 12px;
        }

        .nav-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.3);
            color: #E8D4CA;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s;
        }

        .nav-icon:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.5);
            transform: translateY(-2px);
            color: #FAF5F2;
        }
        
        /* Language Switcher */
        .lang-switcher-container {
            position: relative;
        }
        
        .lang-switcher-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.3);
            color: #E8D4CA;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s;
            cursor: pointer;
            padding: 0;
        }
        
        .lang-switcher-btn:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.5);
            transform: translateY(-2px);
            color: #FAF5F2;
        }
        
        .lang-dropdown {
            position: absolute;
            top: 60px;
            right: 0;
            background: rgba(30, 20, 15, 0.95);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            min-width: 150px;
            z-index: 1000;
            display: none;
            flex-direction: column;
            overflow: hidden;
        }
        
        .lang-dropdown.show {
            display: flex;
        }
        
        .lang-dropdown a {
            padding: 12px 16px;
            color: #E8D4CA;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .lang-dropdown a:last-child {
            border-bottom: none;
        }
        
        .lang-dropdown a:hover {
            background: rgba(255,255,255,0.1);
            color: #FAF5F2;
        }
        
        .lang-dropdown a.active {
            background: rgba(255,255,255,0.15);
            color: #FAF5F2;
            font-weight: 600;
        }

        /* ========== HERO SECTION ========== */
        .hero-section {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            background: linear-gradient(135deg, 
                #2d1e1a 0%, 
                #755048 40%, 
                #bd9890 100%);
        }

        /* Hero Model Image */
        .hero-model-image {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 600px;
            height: calc(100vh);
            background: url('/slider1.png') no-repeat center bottom;
            background-size: auto 100%;
            z-index: 3;
            pointer-events: none;
            opacity: 0.7;
        }

        .hero-image {
            display: none;
        }

        .hero-overlay {
            display: none;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-left: 40px;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            color: white;
            font-weight: 700;
        }

        .hero-content h1 span {
            color: rgba(255,255,255,0.6);
        }

        .hero-content p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.6);
            max-width: 420px;
            line-height: 1.6;
            margin-top: 15px;
        }

        /* Gallery Button */
        .gallery-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .gallery-btn .play-icon {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .gallery-btn span {
            color: white;
            font-size: 0.75rem;
            text-align: center;
            line-height: 1.4;
        }

        /* ========== SERVICE SLIDER ========== */
        .service-slider {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            width: 95%;
            max-width: 750px;
        }

        .slider-container {
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 24px;
            padding: 15px;
            display: flex;
            align-items: stretch;
            gap: 15px;
        }

        .slider-card-img {
            width: 140px;
            border-radius: 18px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }

        .slider-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 140px;
        }

        .slider-card-img .arrow-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-card-img .arrow-btn i {
            font-size: 0.6rem;
            color: #333;
            transform: rotate(-45deg);
        }

        .slider-card-content {
            flex: 1;
            display: flex;
            align-items: center;
            position: relative;
            border-radius: 18px;
            padding: 15px;
            min-width: 200px;
        }

        .slider-card-content.peach {
            background: #e8c4b8;
        }

        .slider-card-content h5 {
            font-size: 1.1rem;
            color: #333;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .slider-card-content p {
            font-size: 0.75rem;
            color: #555;
            line-height: 1.4;
            margin: 0;
        }

        .slider-card-content .arrow-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-card-content .arrow-btn i {
            font-size: 0.6rem;
            color: #333;
            transform: rotate(-45deg);
        }

        .slider-hand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .slider-hand-img {
            width: 100px;
            height: 100px;
            border-radius: 14px;
            overflow: hidden;
            position: relative;
        }

        .slider-hand-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider-hand-img .arrow-btn {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-hand-img .arrow-btn i {
            font-size: 0.5rem;
            color: #333;
            transform: rotate(-45deg);
        }

        .slider-hand-text h5 {
            font-size: 1rem;
            color: white;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .slider-hand-text p {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.4;
            margin: 0;
        }

        /* Slider Bottom */
        .slider-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 20px;
            width: 100%;
        }

        .scroll-indicator {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .scroll-line {
            width: 1px;
            height: 30px;
            background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
        }

        .scroll-dot {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse-glow 2s infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.2); }
            50% { box-shadow: 0 0 15px 3px rgba(255,255,255,0.3); }
        }

        .scroll-dot i {
            color: white;
            font-size: 0.7rem;
            animation: bounce-down 2s infinite;
        }

        @keyframes bounce-down {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(3px); }
        }

        .scroll-text {
            color: white;
            font-size: 0.7rem;
            opacity: 0.5;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Service Pills */
        .service-pills {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-pill {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 8px 18px;
            gap: 8px;
            color: white;
            font-size: 0.75rem;
            opacity: 0.9;
        }

        .service-pill .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        /* CTA Button */
        .cta-btn {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50px;
            padding: 5px 5px 5px 25px;
            gap: 12px;
            color: white;
            font-weight: 500;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.4s ease;
        }

        .cta-btn .icon-circle {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-btn .icon-circle i {
            font-size: 0.8rem;
            color: #755048;
            transition: transform 0.3s ease;
        }

        .cta-btn:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.4);
        }

        .cta-btn:hover .icon-circle i {
            transform: rotate(45deg);
        }

        /* ========== SECTIONS ========== */
        .section-white {
            background: linear-gradient(135deg, #f8f5f2 0%, #e8d4ca 50%, #f8f5f2 100%);
            padding: 80px 0;
        }

        .section-light {
            background: #f8f5f2;
            padding: 80px 0;
        }

        .container-custom {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
        }
        
        /* About Text Section */
        .about-text {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .about-text .lead {
            color: #555;
            line-height: 1.8;
            font-size: 1.1rem;
            font-weight: 400;
        }
        
        /* Modern About Section */
        .about-modern {
            text-align: center;
            padding: 40px 0;
        }
        
        .about-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #755048, #bd9890);
            color: white;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(117, 80, 72, 0.3);
        }
        
        .about-badge i {
            font-size: 1rem;
        }
        
        .about-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #333;
            line-height: 1.3;
            margin-bottom: 20px;
        }
        
        .about-title .highlight {
            background: linear-gradient(135deg, #755048, #bd9890);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .about-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin: 0 auto 50px;
            line-height: 1.6;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            padding: 40px 30px;
            border-radius: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(117, 80, 72, 0.1);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(117, 80, 72, 0.2);
            background: rgba(255, 255, 255, 0.35);
            border-color: rgba(255, 255, 255, 0.6);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #755048, #bd9890);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .feature-icon i {
            font-size: 1.8rem;
            color: white;
        }
        
        .feature-card h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
        }
        
        .feature-card p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }
        
        .about-cta .btn-modern-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #755048, #bd9890);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(117, 80, 72, 0.35);
        }
        
        .about-cta .btn-modern-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(117, 80, 72, 0.45);
        }
        
        .about-cta .btn-modern-primary i {
            transition: transform 0.3s ease;
        }
        
        .about-cta .btn-modern-primary:hover i {
            transform: translateX(5px);
        }
        
        @media (max-width: 991px) {
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .about-title {
                font-size: 2rem;
            }
        }
                /* ========== CUSTOM SCROLLBAR ========== */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f0e8e4;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #bd9890, #755048);
            border-radius: 10px;
            border: 2px solid #f0e8e4;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #755048, #4a2e28);
        }
        
        /* Firefox */
        html {
            scrollbar-width: thin;
            scrollbar-color: #bd9890 #f0e8e4;
        }
        
        /* ========== SCROLL TO TOP BUTTON ========== */
        .scroll-top-btn {
            position: fixed;
            bottom: 35px;
            right: 35px;
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 8px 32px rgba(117, 80, 72, 0.25);
            color: #755048;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
        }
        
        .scroll-top-btn.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .scroll-top-btn:hover {
            background: linear-gradient(135deg, #755048, #bd9890);
            color: white;
            border-color: transparent;
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(117, 80, 72, 0.4);
        }
        
        /* ========== APPOINTMENT SECTION ========== */
        .appointment-wrapper {
            border-radius: 30px;
            padding: 60px;
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 50px;
            align-items: center;
        }

        .appointment-title {
            font-size: 40px;
            font-weight: 600;
            color: #2D2926;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .appointment-title span {
            color: #8B6F5C;
        }

        .appointment-desc {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .stats-row {
            display: flex;
            gap: 50px;
        }

        .stat-box .num {
            font-size: 48px;
            font-weight: 700;
            color: #8B6F5C;
        }

        .stat-box .label {
            font-size: 14px;
            color: #666;
        }

        .form-card {
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255,255,255,0.5);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        }

        .form-title {
            font-size: 26px;
            font-weight: 600;
            color: #2D2926;
            margin-bottom: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .form-row.three {
            grid-template-columns: 1fr 1fr 1fr;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: #2D2926;
            margin-bottom: 8px;
        }

        .form-input {
            width: 100%;
            padding: 16px 18px;
            background: rgba(255,255,255,0.9);
            border: 2px solid rgba(0,0,0,0.06);
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            transition: all 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: #8B6F5C;
            background: white;
        }

        select.form-input {
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238B6F5C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 12px;
        }

        .btn-submit {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #8B6F5C, #A68B7B);
            color: white;
            border: none;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 15px;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(139,111,92,0.35);
        }

        /* ========== MODERN SERVICES SECTION ========== */
        .services-section {
            background: linear-gradient(180deg, #f8f5f2 0%, #efe8e3 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .services-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(189, 152, 144, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .services-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(117, 80, 72, 0.1);
            color: #755048;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .services-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }
        
        .services-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .service-card-modern {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
        }
        
        .service-card-inner {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            padding: 40px 30px;
            border-radius: 24px;
            height: 100%;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(117, 80, 72, 0.08);
        }
        
        .service-card-modern:hover .service-card-inner {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(117, 80, 72, 0.15);
            background: rgba(255, 255, 255, 0.6);
        }
        
        .service-card-modern.featured .service-card-inner {
            background: linear-gradient(135deg, #755048 0%, #bd9890 100%);
            border-color: transparent;
        }
        
        .service-card-modern.featured h3,
        .service-card-modern.featured p,
        .service-card-modern.featured .service-features li {
            color: white;
        }
        
        .service-card-modern.featured .service-icon {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .service-card-modern.featured .service-number {
            color: rgba(255, 255, 255, 0.3);
        }
        
        .service-card-modern.featured .service-link {
            background: white;
            color: #755048;
        }
        
        .service-card-modern.featured .service-features li i {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .featured-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #e8c4b8;
            color: #755048;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .service-icon-wrap {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #755048, #bd9890);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .service-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        .service-number {
            font-size: 3rem;
            font-weight: 800;
            color: rgba(117, 80, 72, 0.1);
            line-height: 1;
        }
        
        .service-card-modern h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 12px;
        }
        
        .service-card-modern p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
        }
        
        .service-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: #555;
            padding: 6px 0;
        }
        
        .service-features li i {
            font-size: 0.75rem;
            color: #755048;
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #755048, #bd9890);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .service-link:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(117, 80, 72, 0.3);
        }
        
        .service-link i {
            transition: transform 0.3s ease;
        }
        
        .service-link:hover i {
            transform: translateX(3px);
        }
        
        /* Other Services Tags */
        .other-services {
            margin-top: 60px;
            text-align: center;
        }
        
        .other-services-title {
            font-size: 1rem;
            color: #888;
            font-weight: 500;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .services-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }
        
        .service-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            color: #755048;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .service-tag:hover {
            background: #755048;
            color: white;
            transform: translateY(-2px);
        }
        
        .service-tag i {
            font-size: 0.8rem;
        }
        
        @media (max-width: 991px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .services-title {
                font-size: 2rem;
            }
            
            .featured-badge {
                top: 15px;
                right: 15px;
            }
        }

        /* Beauty Cards Grid */
        .beauty-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .beauty-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 300px;
        }

        .beauty-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .beauty-card .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
        }

        .beauty-card .card-overlay h5 {
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .beauty-card .btn-light {
            margin-top: 10px;
        }

        /* Services Accordion */
        .services-accordion {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .accordion-item {
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
        }

        .accordion-button {
            background: white;
            padding: 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .accordion-button:not(.collapsed) {
            background: #f8f5f2;
            color: #333;
        }

        .accordion-button i {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .accordion-body {
            padding: 20px;
            color: #666;
            line-height: 1.6;
        }

        /* Reviews */
        .review-card {
            background: #f8f5f2;
            border-radius: 8px;
            padding: 25px;
            height: 100%;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .reviewer-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }

        .reviewer-info h6 {
            margin: 0;
            font-size: 0.9rem;
        }

        .reviewer-info .rating {
            color: #ffc107;
            font-size: 0.8rem;
        }

        .review-badge {
            background: #755048;
            color: white;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
        }

        /* ========== FAQ SECTION ========== */
        .faq-section {
            background: linear-gradient(135deg, #2D2926 0%, #4a4340 100%);
            padding: 100px 0;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .faq-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201, 169, 154, 0.2);
            color: #C9A99A;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .faq-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .faq-subtitle {
            font-size: 1.1rem;
            color: #bbb;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .faq-card {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 25px;
            transition: all 0.3s;
        }
        
        .faq-card:hover {
            background: rgba(255,255,255,0.12);
            transform: translateY(-5px);
        }
        
        .faq-card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #C9A99A 0%, #bd9890 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .faq-card-icon i {
            color: #fff;
            font-size: 1.3rem;
        }
        
        .faq-card-body h4 {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .faq-card-body p {
            color: #aaa;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .faq-link {
            color: #C9A99A;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        
        .faq-link:hover {
            color: #fff;
        }
        
        .faq-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .faq-link:hover i {
            transform: translateX(5px);
        }

        /* ========== CONTACT SECTION ========== */
        .contact-section {
            background: linear-gradient(180deg, #efe8e3 0%, #f8f5f2 100%);
            padding: 100px 0;
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .contact-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(117, 80, 72, 0.1);
            color: #755048;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .contact-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }
        
        .contact-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: start;
        }
        
        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        /* 2x2 Info Grid */
        .contact-info-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .contact-card {
            display: flex;
            align-items: center;
            gap: 16px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.7);
            border-radius: 16px;
            padding: 18px 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(117, 80, 72, 0.06);
        }
        
        .contact-card:hover {
            transform: translateX(4px);
            box-shadow: 0 8px 25px rgba(117, 80, 72, 0.12);
            background: rgba(255, 255, 255, 0.85);
        }
        
        .contact-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, #755048, #bd9890);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-card-icon i {
            font-size: 1rem;
            color: white;
        }
        
        .contact-card-body {
            flex: 1;
            min-width: 0;
        }
        
        .contact-card-body h4 {
            font-size: 0.75rem;
            font-weight: 600;
            color: #aaa;
            margin-bottom: 3px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .contact-link {
            font-size: 0.9rem;
            font-weight: 600;
            color: #333;
            text-decoration: none;
            transition: color 0.2s ease;
            display: block;
            white-space: normal;
            word-break: break-word;
        }
        
        a.contact-link:hover {
            color: #755048;
        }
        
        /* Quick Action Buttons */
        .contact-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .action-btn {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 22px;
            border-radius: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .action-btn-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.2rem;
        }
        
        .action-btn strong {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
        }
        
        .action-btn span {
            font-size: 0.82rem;
            opacity: 0.85;
        }
        
        .action-phone {
            background: linear-gradient(135deg, #755048, #bd9890);
            color: white;
            box-shadow: 0 8px 25px rgba(117, 80, 72, 0.3);
        }
        
        .action-phone:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(117, 80, 72, 0.4);
            color: white;
        }
        
        .action-phone .action-btn-icon {
            background: rgba(255,255,255,0.2);
            color: white;
        }
        
        .action-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
        }
        
        .action-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
            color: white;
        }
        
        .action-whatsapp .action-btn-icon {
            background: rgba(255,255,255,0.2);
            color: white;
        }
        
        .action-appointment {
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(117, 80, 72, 0.2);
            color: #333;
        }
        
        .action-appointment:hover {
            background: rgba(255,255,255,0.9);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(117, 80, 72, 0.1);
            color: #333;
        }
        
        .action-appointment .action-btn-icon {
            background: linear-gradient(135deg, #755048, #bd9890);
            color: white;
        }
        
        /* Google Maps Container */
        .contact-map {
            position: sticky;
            top: 100px;
        }
        
        .map-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            height: 540px;
            box-shadow: 0 20px 60px rgba(117, 80, 72, 0.15);
        }
        
        .map-container iframe {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        .map-info-chip {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            border-radius: 50px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            white-space: nowrap;
            font-size: 0.9rem;
            color: #333;
            font-weight: 500;
        }
        
        .map-info-chip i:first-child {
            color: #755048;
        }
        
        .map-directions-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #755048, #bd9890);
            color: white;
            padding: 7px 16px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .map-directions-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(117, 80, 72, 0.3);
            color: white;
        }
        
        @media (max-width: 991px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-map {
                position: static;
            }
            
            .contact-title {
                font-size: 2rem;
            }
            
            .map-container {
                height: 380px;
            }
            
            .contact-info-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 575px) {
            /* contact-info-grid is now single column by default */
        }
        
        /* Footer */
        /* ========== MODERN FOOTER ========== */
        .footer-modern {
            background: linear-gradient(180deg, #2d2926 0%, #1a1715 100%);
            color: white;
            padding: 80px 0 0;
            position: relative;
        }
        
        .footer-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(189, 152, 144, 0.3), transparent);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }
        
        /* Brand Section */
        .footer-brand {
            max-width: 400px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #bd9890, #e8c4b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .footer-desc {
            font-size: 0.9rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 30px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .social-btn {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(189, 152, 144, 0.1);
            border: 1px solid rgba(189, 152, 144, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #bd9890;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-btn:hover {
            background: linear-gradient(135deg, #755048, #bd9890);
            border-color: transparent;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Footer Sections */
        .footer-section {
            padding-top: 5px;
        }
        
        .footer-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #bd9890, transparent);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .footer-links a i {
            font-size: 0.7rem;
            color: #bd9890;
            transition: transform 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-links a:hover i {
            transform: translateX(3px);
        }
        
        /* Contact Section */
        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(189, 152, 144, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #bd9890;
            flex-shrink: 0;
        }
        
        .contact-text {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .contact-text strong {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
        }
        
        .contact-text span {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .contact-text a {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-text a:hover {
            color: #bd9890;
        }
        
        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px 0;
        }
        
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-bottom p {
            margin: 0;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }
        
        .footer-bottom strong {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .footer-bottom-links a {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: #bd9890;
        }
        
        .footer-bottom-links .separator {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.7rem;
        }
        
        /* Responsive Footer */
        @media (max-width: 991px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            
            .footer-brand {
                max-width: 100%;
            }
        }
        
        @media (max-width: 767px) {
            .footer-modern {
                padding: 60px 0 0;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 60px 0 30px;
        }

        .footer h4 {
            margin-bottom: 20px;
        }

        .footer p {
            color: rgba(255,255,255,0.6);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: #755048;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            margin-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.4);
            font-size: 0.9rem;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 991px) {
            .hero-content h1 { font-size: 2rem; }
            .slider-hand { display: none; }
            .gallery-btn { display: none; }
            .beauty-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 767px) {
            /* Navbar */
            .navbar {
                padding: 16px 20px;
            }
            .nav-pills { display: none; }
            .nav-right .nav-icon,
            .nav-right .lang-switcher-container { display: none; }
            .menu-btn { display: flex; }
            .brand img { height: 60px; }

            /* Hero */
            .service-pills { display: none; }
            .hero-content h1 { font-size: 1.6rem; line-height: 1.3; }
            .hero-content p { font-size: 0.95rem; }
            .hero-section { min-height: 100svh; }
            .hero-model-image { display: none; }
            .hero-content {
                padding-top: 120px;
                align-items: flex-start;
            }

            /* Slider */
            .slider-container { flex-direction: column; }
            .slider-card-img { width: 100%; height: 180px; }

            /* Sections padding */
            .services-section,
            .about-section,
            .appointment-section,
            .contact-section { padding: 60px 0; }

            /* Services grid */
            .services-grid { grid-template-columns: 1fr; }
            .services-title { font-size: 1.8rem; }

            /* Appointment form */
            .appointment-wrapper {
                grid-template-columns: 1fr !important;
                padding: 30px 20px;
                gap: 30px;
            }
            .appointment-title { font-size: 1.8rem; }
            .form-row,
            .form-row.three {
                grid-template-columns: 1fr !important;
            }
            .form-card { padding: 24px 16px; }
            .stats-row { gap: 24px; }
            .scroll-top-btn { bottom: 20px; right: 20px; width: 44px; height: 44px; }
        }

        @media (max-width: 480px) {
            .hero-content h1 { font-size: 1.3rem; }
            .navbar { padding: 12px 16px; }
            .brand img { height: 50px; }
            .hero-content { padding-top: 100px; }
        }

        /* ========== MOBILE DRAWER ========== */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .mobile-menu-overlay.active {
            display: block;
            opacity: 1;
        }

        .mobile-drawer {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100%;
            background: linear-gradient(160deg, #2a1810 0%, #4a2e28 50%, #755048 100%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -8px 0 40px rgba(0,0,0,0.4);
            overflow-y: auto;
        }
        .mobile-drawer.open {
            right: 0;
        }

        .mobile-drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            border-bottom: 1px solid rgba(255,255,255,0.12);
        }

        .mobile-drawer-logo {
            height: 52px;
            width: auto;
            object-fit: contain;
        }

        .mobile-drawer-close {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.3);
            background: rgba(255,255,255,0.1);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.25s;
        }
        .mobile-drawer-close:hover {
            background: rgba(255,255,255,0.2);
        }

        .mobile-drawer-nav {
            display: flex;
            flex-direction: column;
            padding: 28px 24px 16px;
            gap: 4px;
            flex: 1;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            padding: 14px 18px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 500;
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            transition: background 0.25s, color 0.25s;
            letter-spacing: 0.3px;
        }
        .mobile-nav-link:hover,
        .mobile-nav-link.active {
            background: rgba(255,255,255,0.15);
            color: #fff;
        }

        .mobile-drawer-actions {
            padding: 20px 24px 36px;
            border-top: 1px solid rgba(255,255,255,0.12);
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mobile-cta-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 24px;
            border-radius: 50px;
            background: linear-gradient(135deg, #bd9890, #755048);
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: transform 0.2s, opacity 0.2s;
        }
        .mobile-cta-btn:hover {
            transform: scale(1.03);
            opacity: 0.92;
            color: #fff;
        }

        .mobile-drawer-social {
            display: flex;
            justify-content: center;
            gap: 14px;
        }

        .mobile-social-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.25);
            color: rgba(255,255,255,0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            text-decoration: none;
            transition: background 0.25s;
        }
        .mobile-social-icon:hover {
            background: rgba(255,255,255,0.25);
            color: #fff;
        }

        /* Lock body scroll when drawer is open */
        body.mobile-menu-open {
            overflow: hidden;
        }
        /* ===== HONEYPOT (spam trap) ===== */
        .hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

        /* ===== BOOKING RESULT POPUP ===== */
        .booking-popup-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,.55);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }
        .booking-popup-overlay.active { display: flex; }
        .booking-popup-card {
            background: rgba(255,255,255,.12);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,.25);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            max-width: 420px;
            width: 90%;
            text-align: center;
            box-shadow: 0 25px 60px rgba(0,0,0,.35);
            animation: popupIn .35s cubic-bezier(.175,.885,.32,1.275);
        }
        @keyframes popupIn {
            from { opacity:0; transform: scale(.8) translateY(30px); }
            to   { opacity:1; transform: scale(1) translateY(0); }
        }
        .booking-popup-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1;
        }
        .booking-popup-icon.success { color: #4ade80; }
        .booking-popup-icon.error   { color: #f87171; }
        .booking-popup-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: .6rem;
        }
        .booking-popup-msg {
            font-size: .95rem;
            color: rgba(255,255,255,.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        .booking-popup-btn {
            display: inline-block;
            padding: .65rem 2.2rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-size: .95rem;
            transition: transform .15s, opacity .15s;
        }
        .booking-popup-btn:hover { transform: scale(1.04); opacity: .9; }
        .booking-popup-btn.success-btn { background: linear-gradient(135deg, #4ade80, #22c55e); color: #fff; }
        .booking-popup-btn.error-btn   { background: linear-gradient(135deg, #f87171, #ef4444); color: #fff; }
