:root {
      --gold:         #C9A84C;
      --bg-dark:      #0E0E0E;
      --bg-deep:      #141414;
      --bg-card:      #1A1A1A;
      --white-text:   #F5F5F5;
      --muted-text:   #A0A0A0;
      --accent-hover: #E2C06A;
      --border-color: #2A2A2A;
      --cta-bg:       #C9A84C;
      --cta-text:     #0E0E0E;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { background-color: var(--bg-dark); color: var(--white-text); font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.8; overflow-x: hidden; }
    h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; color: var(--white-text); }
    h1 { font-size: 52px; font-weight: 700; line-height: 1.15; }
    h2 { font-size: 36px; font-weight: 600; line-height: 1.25; }
    h3 { font-size: 22px; font-weight: 500; line-height: 1.35; }
    p { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.8; color: var(--white-text); }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    section { padding: 90px 0; }
    .section-eyebrow { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 8px; }
    .section-gold-bar { width: 40px; height: 2px; background: var(--gold); margin: 8px 0 24px; }
    .section-gold-bar.centered { margin: 8px auto 24px; }
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-subtext { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--muted-text); max-width: 560px; margin: 16px auto 0; line-height: 1.8; }

    /* Urgency micro-copy */
    .micro-copy { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--muted-text); text-align: center; margin-top: 10px; display: block; }

    /* Buttons */
    .btn-primary { background: var(--cta-bg); color: var(--cta-text); padding: 14px 32px; border: none; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: background 0.3s ease; display: inline-block; text-align: center; text-decoration: none; }
    .btn-primary:hover { background: var(--accent-hover); }
    .btn-outline { background: transparent; color: var(--gold); padding: 13px 30px; border: 1px solid var(--gold); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: all 0.3s ease; display: inline-block; text-align: center; text-decoration: none; }
    .btn-outline:hover { background: var(--gold); color: var(--cta-text); }
    .btn-whatsapp { background: #25D366; color: #fff; padding: 14px 32px; border: none; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; border-radius: 2px; display: inline-block; text-align: center; text-decoration: none; transition: opacity 0.3s ease; }
    .btn-whatsapp:hover { opacity: 0.9; }
    .btn-sm { padding: 10px 24px; font-size: 13px; }

    /* Animations */
    .fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.7s ease forwards; }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
    @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* TOP BAR */
    .top-bar { position: fixed; top: 0; width: 100%; height: 44px; z-index: 1000; background: #0A0A0A; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; }
    .top-bar-inner { display: flex; align-items: center; font-family: 'Inter', sans-serif; font-size: 13px; }
    .top-bar-item { display: flex; align-items: center; gap: 6px; white-space: nowrap; padding: 0 16px; }
    .top-bar-item a { display: flex; align-items: center; gap: 6px; transition: opacity 0.2s; }
    .top-bar-item a:hover { opacity: 0.8; }
    .top-bar-divider { color: #333; font-size: 14px; flex-shrink: 0; }
    .top-bar-gold { color: var(--gold); }
    .top-bar-green { color: #25D366; }
    .top-bar-muted { color: var(--muted-text); }
    .top-bar-hide-mobile { display: flex; align-items: center; }

    /* NAVBAR */
    .navbar { position: fixed; top: 44px; width: 100%; height: 70px; z-index: 999; background: rgba(14,14,14,0.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); display: flex; align-items: center; justify-content: space-between; padding: 0 40px; transition: border-bottom-color 0.3s ease; }
    .navbar.scrolled { border-bottom: 1px solid var(--gold); }
    .navbar-logo { display: flex; flex-direction: column; line-height: 1; cursor: pointer; }
    .navbar-logo-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--gold); letter-spacing: 1px; }
    .navbar-logo-sub { font-family: 'Inter', sans-serif; font-size: 9px; letter-spacing: 3px; color: #555; text-transform: uppercase; margin-top: 2px; }
    .navbar-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .navbar-links a { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--muted-text); letter-spacing: 0.5px; transition: color 0.2s; }
    .navbar-links a:hover, .navbar-links a.active { color: var(--gold); }
    .navbar-cta .btn-primary { padding: 10px 22px; font-size: 13px; }
    .navbar-hamburger { display: none; background: none; border: none; cursor: pointer; font-size: 22px; color: var(--white-text); line-height: 1; padding: 4px; }
    .navbar-mobile-menu { display: none; position: fixed; top: 114px; left: 0; width: 100%; background: var(--bg-dark); z-index: 998; border-bottom: 1px solid var(--border-color); flex-direction: column; }
    .navbar-mobile-menu.open { display: flex; }
    .navbar-mobile-menu a { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--white-text); padding: 16px 24px; border-bottom: 1px solid var(--border-color); transition: color 0.2s, background 0.2s; }
    .navbar-mobile-menu a:hover { color: var(--gold); background: rgba(201,168,76,0.05); }

    /* HERO */
    #hero { min-height: 100vh; background-color: #1a1010; background-image: linear-gradient(135deg,rgba(10,10,10,0.80),rgba(14,8,0,0.75)),url('/images/img-b-corridor.jpg'); background-size: cover; background-position: center top; background-attachment: fixed; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 114px; position: relative; }
    .hero-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
    .hero-eyebrow { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 4px; color: var(--gold); border: 1px solid var(--gold); padding: 6px 20px; display: inline-block; margin-bottom: 24px; text-transform: uppercase; }
    .hero-title { font-family: 'Playfair Display', serif; font-size: 54px; font-weight: 700; line-height: 1.2; margin-bottom: 24px; }
    .hero-title .highlight { color: var(--gold); }
    .hero-para { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--muted-text); line-height: 1.9; max-width: 600px; margin: 0 auto 36px; }
    .hero-trust-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
    .hero-trust-item { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--muted-text); padding: 0 16px; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
    .hero-trust-divider { color: #333; font-size: 14px; }
    .hero-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
    .hero-cta-group { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
    .hero-quick-trust { margin-top: 28px; font-family: 'Inter', sans-serif; font-size: 13px; color: var(--muted-text); display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
    .hero-quick-trust-item { display: flex; align-items: center; gap: 6px; }
    .hero-quick-trust-item .check { color: var(--gold); font-weight: 700; }
    .hero-scroll-arrow { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--gold); font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 1px; animation: bounce 1.5s ease-in-out infinite; }
    .hero-scroll-arrow .arrow-icon { font-size: 20px; }

    /* TRUST STATS */
    .trust-stats { background: var(--bg-deep); padding: 40px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
    .trust-stats-grid { display: grid; grid-template-columns: repeat(6,1fr); }
    .trust-stat-item { text-align: center; padding: 16px 12px; position: relative; }
    .trust-stat-item:not(:last-child)::after { content:''; position:absolute; right:0; top:20%; bottom:20%; width:1px; background:var(--border-color); }
    .trust-stat-number { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--gold); line-height: 1.1; display: block; }
    .trust-stat-label { font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted-text); display: block; margin-top: 6px; }

    /* OFFER BANNER */
    .offer-banner { background: linear-gradient(180deg,#1A1200 0%,#0E0E0E 100%); border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); padding: 32px 0; }
    .offer-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
    .offer-banner-left { flex: 1; }
    .offer-label { font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 8px; animation: pulse 2s ease-in-out infinite; }
    .offer-title { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--white-text); margin-bottom: 8px; }
    .offer-perks { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--muted-text); }
    .offer-banner-right { flex-shrink: 0; text-align: center; }

    /* ABOUT */
    #about { background: var(--bg-dark); padding: 90px 0; }
    .about-grid { display: grid; grid-template-columns: 60fr 40fr; gap: 60px; align-items: start; }
    .about-para { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--muted-text); line-height: 2; margin-bottom: 20px; }
    .about-icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 24px 0 32px; }
    .about-icon-item { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--muted-text); display: flex; align-items: center; gap: 8px; }
    .about-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
    .about-image-wrap { position: relative; }
    .about-image-placeholder { width: 100%; height: 400px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 14px; color: #444; }
    .about-floating-card { position: absolute; bottom: -20px; left: -20px; background: var(--gold); padding: 20px 24px; border-radius: 2px; z-index: 2; }
    .about-floating-card-title { font-family: 'Playfair Display', serif; font-size: 18px; color: #0E0E0E; display: block; line-height: 1.2; }
    .about-floating-card-sub { font-family: 'Inter', sans-serif; font-size: 11px; color: #5A4A1A; display: block; margin-top: 4px; }

    /* SERVICES CARD GRID */
    #services { background: var(--bg-deep); padding: 90px 0; }
    .services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
    .service-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 4px; overflow: hidden; cursor: pointer; transition: border-color 0.3s, transform 0.3s; }
    .service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
    .service-card-image { height: 200px; background: #222; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 14px; color: #444; }
    .service-card-content { padding: 24px; }
    .service-card-duration { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; display: block; }
    .service-card-title { font-family: 'Playfair Display', serif; font-size: 19px; margin: 8px 0; }
    .service-card-desc { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--muted-text); line-height: 1.7; margin-bottom: 16px; }
    .service-card-link { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--gold); text-decoration: underline; text-underline-offset: 3px; display: inline-block; }
    .service-card-confirm { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--muted-text); display: block; margin-top: 6px; }

    /* SERVICE DETAIL DESCRIPTIONS */
    .service-detail-section { background: var(--bg-dark); padding: 90px 0; }
    .service-block { display: grid; gap: 32px; margin-bottom: 64px; align-items: center; }
    .service-block.odd  { grid-template-columns: 60fr 40fr; }
    .service-block.even { grid-template-columns: 40fr 60fr; }
    .service-block.even .service-block-image { order: -1; }
    .service-block-title { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 16px; }
    .service-block-body { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--muted-text); line-height: 1.9; margin-bottom: 20px; }
    .service-block-benefits { list-style: none; margin-bottom: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
    .service-block-benefits li { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--muted-text); display: flex; align-items: flex-start; gap: 8px; }
    .service-block-benefits li::before { content: '●'; color: var(--gold); font-size: 8px; margin-top: 6px; flex-shrink: 0; }
    .service-block-duration { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--gold); margin-bottom: 20px; display: block; }
    .service-block-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
    .service-block-image { width: 100%; height: 280px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 14px; color: #444; }
    .service-block-divider { border: none; border-top: 1px solid var(--border-color); opacity: 0.15; margin-bottom: 64px; }

    /* WHY CHOOSE US */
    #why { background: var(--bg-deep); background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1600&q=75&fit=crop'); background-size: cover; background-position: center; background-attachment: fixed; position: relative; padding: 90px 0; }
    #why::before { content: ''; position: absolute; inset: 0; background: rgba(10,10,10,0.86); }
    #why > * { position: relative; }
    .why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 48px; }
    .why-card { background: var(--bg-card); border: 1px solid var(--border-color); padding: 28px 24px; border-radius: 2px; transition: border-left 0.3s, transform 0.3s; border-left: 3px solid transparent; }
    .why-card:hover { border-left: 3px solid var(--gold); transform: translateY(-2px); }
    .why-card-emoji { font-size: 28px; display: block; }
    .why-card h4 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--white-text); margin-top: 14px; margin-bottom: 8px; }
    .why-card p { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--muted-text); line-height: 1.6; }
    .why-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

    /* BENEFITS */
    #benefits { background: var(--bg-dark); padding: 90px 0; }
    .benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-bottom: 48px; }
    .benefits-col-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
    .benefits-col-emoji { font-size: 28px; }
    .benefits-col-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); }
    .benefits-list { list-style: none; }
    .benefits-list li { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--muted-text); display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(42,42,42,0.5); }
    .benefits-list li::before { content: '●'; color: var(--gold); font-size: 8px; margin-top: 6px; flex-shrink: 0; }
    .benefits-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

    /* FACILITIES */
    #facilities { background: var(--bg-deep); padding: 90px 0; }
    .facilities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 48px; }
    .facility-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 4px; overflow: hidden; transition: border-color 0.3s; }
    .facility-card:hover { border-color: var(--gold); }
    .facility-card-image { height: 180px; background: #222; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 13px; color: #444; }
    .facility-card-name { padding: 16px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--white-text); }

    /* COUPLE */
    #couple { background: linear-gradient(to right, #0E0E0E 50%, #1A1200 100%); padding: 90px 0; }
    .couple-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .couple-image { width: 100%; height: 500px; background: var(--bg-card); border: 1px solid var(--gold); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 14px; color: #444; }
    .couple-para { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--muted-text); line-height: 1.9; margin-bottom: 24px; }
    .couple-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
    .couple-badge { border: 1px solid var(--gold); padding: 6px 16px; font-family: 'Inter', sans-serif; font-size: 12px; color: var(--gold); letter-spacing: 1px; border-radius: 2px; }
    .couple-ctas { display: flex; flex-direction: column; gap: 12px; }
    .couple-ctas .btn-primary, .couple-ctas .btn-outline { display: block; text-align: center; }

    /* GALLERY */
    #gallery { background: var(--bg-dark); padding: 90px 0; }
    .gallery-masonry { columns: 4; column-gap: 16px; margin-bottom: 48px; }
    .gallery-item { break-inside: avoid; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 4px; margin-bottom: 16px; overflow: hidden; cursor: pointer; position: relative; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 12px; color: #444; transition: transform 0.3s; }
    .gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(201,168,76,0.12); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
    .gallery-item:hover::after { opacity: 1; }
    .gallery-item:hover { transform: scale(1.02); }
    .gallery-item img, .facility-card-image img, .service-card img { transition: transform 0.55s ease; }
    .gallery-item:hover img, .facility-card:hover .facility-card-image img, .service-card:hover img { transform: scale(1.07); }
    .gallery-cta { text-align: center; }
    .lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9000; align-items: center; justify-content: center; }
    .lightbox.open { display: flex; }
    .lightbox-inner { position: relative; max-width: 900px; width: 90%; display: flex; align-items: center; justify-content: center; }
    .lightbox-close { position: fixed; top: 24px; right: 32px; background: none; border: none; font-size: 36px; color: var(--gold); cursor: pointer; line-height: 1; z-index: 9001; }
    .lightbox-nav { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.55); border: 1px solid var(--gold); color: var(--gold); font-size: 48px; line-height: 1; cursor: pointer; padding: 8px 16px; border-radius: 2px; z-index: 9001; transition: background 0.2s; }
    .lightbox-nav:hover { background: rgba(201,168,76,0.22); }
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }

    /* AREAS */
    #areas { background: var(--bg-deep); padding: 90px 0; }
    .areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 48px; }
    .area-badge { background: var(--bg-card); border: 1px solid var(--border-color); padding: 14px 20px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--muted-text); text-align: center; border-radius: 2px; cursor: default; transition: border-color 0.3s, color 0.3s; }
    .area-badge:hover { border-color: var(--gold); color: var(--white-text); }
    .areas-seo { max-width: 800px; margin: 0 auto; padding: 40px 0; }
    .areas-seo p { font-family: 'Inter', sans-serif; font-size: 15px; color: #777; line-height: 2; margin-bottom: 20px; }
    .areas-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

    /* REVIEWS */
    #reviews { background: var(--bg-dark); background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1600&q=75&fit=crop'); background-size: cover; background-position: center; background-attachment: fixed; position: relative; padding: 90px 0; }
    #reviews::before { content: ''; position: absolute; inset: 0; background: rgba(8,8,8,0.88); }
    #reviews > * { position: relative; }
    .reviews-rating { text-align: center; margin-bottom: 48px; }
    .reviews-rating .stars { font-size: 24px; color: var(--gold); display: block; margin-bottom: 8px; }
    .reviews-rating-label { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); }
    .carousel-wrap { position: relative; overflow: hidden; }
    .carousel-track { display: flex; transition: transform 0.5s ease; }
    .review-card { flex: 0 0 calc(33.333% - 16px); margin-right: 24px; background: var(--bg-card); border: 1px solid var(--border-color); padding: 32px; border-radius: 4px; transition: border-color 0.3s; }
    .review-card:hover { border-color: var(--gold); }
    .review-stars { color: var(--gold); font-size: 14px; display: block; margin-bottom: 16px; }
    .review-text { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--muted-text); line-height: 1.8; font-style: italic; }
    .review-text::before { content: '"'; }
    .review-text::after  { content: '"'; }
    .review-name { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--white-text); font-weight: 700; margin-top: 20px; display: block; }
    .review-source { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--gold); display: block; margin-top: 4px; }
    .carousel-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
    .carousel-btn { background: none; border: 1px solid var(--gold); color: var(--gold); width: 44px; height: 44px; border-radius: 50%; font-size: 18px; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
    .carousel-btn:hover { background: var(--gold); color: var(--cta-text); }
    .carousel-dots { display: flex; gap: 8px; }
    .carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-color); cursor: pointer; transition: background 0.3s; border: none; }
    .carousel-dot.active { background: var(--gold); }
    .reviews-links { display: flex; justify-content: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
    .reviews-cta { display: flex; justify-content: center; gap: 16px; margin-top: 20px; flex-wrap: wrap; }

    /* OFFERS */
    #offers { background: var(--bg-deep); padding: 90px 0; }
    .offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
    .offer-card { background: var(--bg-card); border: 1px solid var(--border-color); padding: 32px; border-radius: 4px; }
    .offer-card.featured { border-color: var(--gold); }
    .offer-card-emoji { font-size: 32px; display: block; margin-bottom: 16px; }
    .offer-card-title { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 12px; }
    .offer-card-desc { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--muted-text); line-height: 1.7; margin-bottom: 24px; }
    .offer-card .btn-primary, .offer-card .btn-outline { width: 100%; text-align: center; }
    .offers-cta { text-align: center; }

    /* FAQ */
    #faq { background: var(--bg-dark); padding: 90px 0; }
    .faq-list { max-width: 780px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border-color); }
    .faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 16px; color: var(--white-text); user-select: none; gap: 16px; }
    .faq-question:hover { color: var(--gold); }
    .faq-icon { color: var(--gold); font-size: 20px; flex-shrink: 0; font-weight: 300; transition: transform 0.3s; line-height: 1; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-answer { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--muted-text); line-height: 1.9; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
    .faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
    .faq-bottom-cta { max-width: 780px; margin: 40px auto 0; text-align: center; }
    .faq-bottom-cta p { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--muted-text); margin-bottom: 20px; }
    .faq-bottom-cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

    /* LOCATION */
    #location { background: var(--bg-deep); padding: 90px 0; }
    .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
    .location-address-block { border-left: 3px solid var(--gold); padding-left: 24px; }
    .location-address-title { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 16px; }
    .location-address-lines { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--muted-text); line-height: 2.2; }
    .location-contact { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
    .location-contact a, .location-contact span { font-family: 'Inter', sans-serif; font-size: 15px; display: flex; align-items: center; gap: 10px; }
    .location-map iframe { width: 100%; height: 420px; border: 0; border-radius: 4px; filter: grayscale(20%); display: block; }
    .location-ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

    /* BOOKING */
    #booking { background: var(--bg-dark); padding: 90px 0; }
    .booking-form-wrap { max-width: 680px; margin: 0 auto; background: var(--bg-deep); border: 1px solid var(--border-color); padding: 48px 40px; border-radius: 4px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .form-group { display: flex; flex-direction: column; margin-bottom: 20px; }
    .form-group label { font-family: 'Inter', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted-text); display: block; margin-bottom: 6px; }
    .form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--bg-card); border: 1px solid var(--border-color); color: var(--white-text); padding: 14px 16px; font-family: 'Inter', sans-serif; font-size: 14px; border-radius: 2px; outline: none; transition: border-color 0.2s; appearance: none; -webkit-appearance: none; }
    .form-group input::placeholder, .form-group textarea::placeholder { color: #555; }
    .form-group select option { background: var(--bg-card); }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
    .form-error { font-family: 'Inter', sans-serif; font-size: 12px; color: #E05555; margin-top: 4px; display: none; }
    .form-error.show { display: block; }
    .booking-submit { width: 100%; padding: 16px; font-size: 15px; }
    .booking-success { display: none; text-align: center; padding: 20px 0; }
    .booking-success-text { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); }
    .booking-direct { text-align: center; margin-top: 28px; }
    .booking-direct p { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--muted-text); margin-bottom: 16px; }
    .booking-direct-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

    /* SEO CONTENT */
    .seo-content { background: #0A0A0A; padding: 80px 0; }
    .seo-inner { max-width: 900px; margin: 0 auto; }
    .seo-main-title { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--white-text); margin-bottom: 48px; text-align: center; }
    .seo-block { margin-bottom: 40px; }
    .seo-block h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--muted-text); margin-bottom: 12px; }
    .seo-block p { font-family: 'Inter', sans-serif; font-size: 15px; color: #666; line-height: 2; }

    /* FINAL CTA */
    .final-cta { background-color: #1A1200; background-image: url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?w=1600&q=75&fit=crop'); background-size: cover; background-position: center; background-attachment: fixed; position: relative; padding: 100px 0; text-align: center; }
    .final-cta::before { content: ''; position: absolute; inset: 0; background: rgba(12,10,2,0.88); }
    .final-cta > * { position: relative; }
    .final-cta h2 { font-family: 'Playfair Display', serif; font-size: 52px; margin-bottom: 20px; }
    .final-cta-para { font-family: 'Inter', sans-serif; font-size: 17px; color: var(--muted-text); max-width: 520px; margin: 0 auto 40px; }
    .final-cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 16px; }
    .final-cta-buttons a { min-width: 280px; }

    /* FOOTER */
    footer { background: #0A0A0A; border-top: 1px solid var(--border-color); padding-top: 64px; }
    .footer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
    .footer-brand-name { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--gold); }
    .footer-brand-sub { font-family: 'Inter', sans-serif; font-size: 9px; letter-spacing: 3px; color: #555; text-transform: uppercase; margin-top: 2px; }
    .footer-brand-desc { font-family: 'Inter', sans-serif; font-size: 14px; color: #666; margin-top: 16px; line-height: 1.7; }
    .footer-social { display: flex; gap: 12px; margin-top: 20px; }
    .footer-social-btn { width: 40px; height: 40px; border: 1px solid var(--border-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 13px; color: var(--muted-text); cursor: pointer; transition: border-color 0.3s, color 0.3s; }
    .footer-social-btn:hover { border-color: var(--gold); color: var(--gold); }
    .footer-col-header { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; display: block; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-family: 'Inter', sans-serif; font-size: 14px; color: #777; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-family: 'Inter', sans-serif; font-size: 14px; }
    .footer-divider { border: none; border-top: 1px solid #1A1A1A; margin: 48px 0; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-bottom: 32px; flex-wrap: wrap; gap: 16px; }
    .footer-bottom-left { font-family: 'Inter', sans-serif; font-size: 12px; color: #444; }
    .footer-bottom-center { font-family: 'Inter', sans-serif; font-size: 12px; color: #444; display: flex; gap: 12px; }
    .footer-bottom-center a { color: #444; transition: color 0.2s; }
    .footer-bottom-center a:hover { color: var(--gold); }
    .footer-bottom-right { display: flex; gap: 16px; }
    .footer-bottom-right a { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--gold); transition: opacity 0.2s; }
    .footer-bottom-right a:hover { opacity: 0.8; }

    /* FLOATING ELEMENTS */
    .mobile-bottom-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999; background: #0E0E0E; border-top: 1px solid var(--border-color); }
    .mobile-urgency-strip { background: #1A1200; font-family: 'Inter', sans-serif; font-size: 11px; color: var(--gold); text-align: center; padding: 6px; }
    .mobile-bottom-bar-inner { display: flex; }
    .mobile-bottom-btn { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; padding: 8px 0; text-decoration: none; }

    .float-wa { display: flex; position: fixed; bottom: 32px; right: 32px; width: 60px; height: 60px; background: #25D366; color: #fff; border-radius: 50%; align-items: center; justify-content: center; font-size: 24px; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.35); z-index: 8000; transition: transform 0.3s; cursor: pointer; }
    .float-wa:hover { transform: scale(1.1); }
    .float-wa-tooltip { position: absolute; right: 68px; background: var(--bg-card); border: 1px solid var(--border-color); color: var(--white-text); font-family: 'Inter', sans-serif; font-size: 12px; white-space: nowrap; padding: 6px 12px; border-radius: 2px; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
    .float-wa:hover .float-wa-tooltip { opacity: 1; }

    .float-call { display: flex; position: fixed; bottom: 104px; right: 32px; width: 52px; height: 52px; background: var(--gold); color: #0E0E0E; border-radius: 50%; align-items: center; justify-content: center; font-size: 20px; text-decoration: none; z-index: 8000; transition: transform 0.3s; box-shadow: 0 4px 16px rgba(201,168,76,0.3); }
    .float-call:hover { transform: scale(1.1); }

    .back-to-top { display: none; position: fixed; bottom: 80px; right: 32px; width: 44px; height: 44px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 50%; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); cursor: pointer; z-index: 7999; transition: border-color 0.3s; text-decoration: none; }
    .back-to-top.visible { display: flex; }
    .back-to-top:hover { border-color: var(--gold); }

    /* EXIT INTENT POPUP */
    .exit-popup { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 99999; align-items: center; justify-content: center; }
    .exit-popup.open { display: flex; }
    .exit-popup-card { background: var(--bg-deep); border: 1px solid var(--gold); padding: 48px 40px; max-width: 480px; width: 90%; border-radius: 4px; position: relative; text-align: center; }
    .exit-popup-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 20px; color: #555; cursor: pointer; transition: color 0.2s; line-height: 1; }
    .exit-popup-close:hover { color: var(--gold); }
    .exit-popup-title { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--white-text); margin-bottom: 12px; }
    .exit-popup-body { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--muted-text); margin-bottom: 28px; line-height: 1.7; }
    .exit-popup-btns { display: flex; flex-direction: column; gap: 12px; }
    .exit-popup-btns .btn-whatsapp, .exit-popup-btns .btn-outline { width: 100%; }

    /* STICKY BOTTOM STRIP (desktop) */
    .sticky-strip { display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9998; background: #0E0E0E; border-top: 2px solid var(--gold); padding: 14px 0; }
    .sticky-strip.visible { display: block; }
    .sticky-strip-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
    .sticky-strip-text { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--white-text); }
    .sticky-strip .btn-primary, .sticky-strip .btn-whatsapp, .sticky-strip .btn-outline { padding: 10px 24px; font-size: 13px; }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2,1fr); }
      .why-grid { grid-template-columns: repeat(2,1fr); }
      .facilities-grid { grid-template-columns: repeat(2,1fr); }
      .offers-grid { grid-template-columns: repeat(2,1fr); }
      .footer-grid { grid-template-columns: repeat(2,1fr); }
      .service-block.odd, .service-block.even { grid-template-columns: 1fr; }
      .service-block.even .service-block-image { order: 0; }
    }
    @media (max-width: 768px) {
      h1 { font-size: 32px; }
      h2 { font-size: 26px; }
      h3 { font-size: 18px; }
      section { padding: 60px 0; }
      body { padding-bottom: 76px; }
      .top-bar-hide-mobile { display: none; }
      .navbar { padding: 0 20px; }
      .navbar-links, .navbar-cta { display: none; }
      .navbar-hamburger { display: block; }
      .hero-title { font-size: 34px; }
      .hero-cta-group { flex-direction: column; width: 100%; }
      .hero-cta-group .btn-primary, .hero-cta-group .btn-whatsapp, .hero-cta-group .btn-outline { width: 100%; }
      .hero-trust-row { flex-direction: column; gap: 8px; }
      .hero-trust-divider { display: none; }
      .trust-stats-grid { grid-template-columns: repeat(3,1fr); }
      .trust-stat-number { font-size: 26px; }
      .offer-banner-inner { flex-direction: column; text-align: center; }
      .offer-banner-right .btn-whatsapp { width: 100%; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-floating-card { position: static; margin-top: 16px; }
      .about-cta-row { flex-direction: column; }
      .about-cta-row a { text-align: center; }
      .services-grid { grid-template-columns: 1fr; }
      .service-block-benefits { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: repeat(2,1fr); }
      .why-cta { flex-direction: column; align-items: center; }
      .benefits-grid { grid-template-columns: 1fr; }
      .benefits-cta { flex-direction: column; align-items: center; }
      .facilities-grid { grid-template-columns: repeat(2,1fr); }
      .couple-grid { grid-template-columns: 1fr; }
      .couple-image { height: 300px; }
      .couple-ctas .btn-primary, .couple-ctas .btn-outline { width: 100%; text-align: center; }
      .gallery-masonry { columns: 2; }
      .areas-grid { grid-template-columns: repeat(2,1fr); }
      .areas-cta { flex-direction: column; align-items: center; }
      .review-card { flex: 0 0 calc(100% - 24px); }
      .reviews-links, .reviews-cta { flex-direction: column; align-items: center; }
      .offers-grid { grid-template-columns: 1fr; }
      .location-grid { grid-template-columns: 1fr; }
      .location-ctas { flex-direction: column; }
      .location-ctas a { text-align: center; }
      .booking-form-wrap { padding: 32px 20px; }
      .form-row { grid-template-columns: 1fr; gap: 0; }
      .final-cta h2 { font-size: 36px; }
      .final-cta-buttons a { min-width: 240px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-bottom-center, .footer-bottom-right { justify-content: center; }
      .mobile-bottom-bar { display: block; }
      .float-wa, .float-call { display: none; }
      .back-to-top { bottom: 80px; right: 16px; }
      .sticky-strip { display: none !important; }
    }