 :root {
   --amber: #D4960A;
   --amber-light: #F5C842;
   --amber-dark: #A8760A;
   --dark: #0C0C0C;
   --dark-2: #161616;
   --dark-3: #202020;
   --off-white: #FAFAF8;
   --warm-grey: #F2EFE8;
   --text: #1A1A1A;
   --muted: #777;
   --red: #C0392B;
   --green: #1A9E5A;
   --white: #fff;
 }

 *,
 *::before,
 *::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 html {
   scroll-behavior: smooth;
 }

 body {
   font-family: 'Outfit', sans-serif;
   background: var(--off-white);
   color: var(--text);
   overflow-x: hidden;
 }

 h1,
 h2,
 h3 {
   font-family: 'Playfair Display', serif;
 }

 /* ── URGENCY BAR ── */
 .urgency-bar {
   background: var(--amber);
   color: var(--dark);
   text-align: center;
   padding: 10px 16px;
   font-size: 0.82rem;
   font-weight: 600;
   letter-spacing: 0.5px;
   position: sticky;
   top: 0;
   z-index: 1000;
 }

 .urgency-bar span {
   font-weight: 700;
 }

 .countdown-inline {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   background: rgba(0, 0, 0, 0.15);
   border-radius: 4px;
   padding: 2px 10px;
   font-weight: 700;
   font-size: 0.9rem;
   margin-left: 8px;
   letter-spacing: 1px;
 }

 /* ── NAV ── */
 .site-nav {
   background: var(--dark);
   padding: 14px 20px;
   display: flex;
   align-items: center;
   justify-content: space-between;

   z-index: 999;
       position: relative;
 }

 .brand {
   font-family: 'Playfair Display', serif;
   font-size: 1.5rem;
   font-weight: 700;
   color: var(--amber);
   letter-spacing: 1.5px;
   text-decoration: none;
 }

 .nav-cta-btns {
   display: flex;
   gap: 10px;
   align-items: center;
 }

 .nav-call {
   display: flex;
   align-items: center;
   gap: 6px;
   color: var(--white);
   font-size: 0.8rem;
   font-weight: 500;
   text-decoration: none;
   opacity: 0.8;
 }

 .nav-call i {
   color: var(--amber);
 }

 .btn-nav-book {
   background: var(--amber);
   color: var(--dark);
   padding: 9px 18px;
   border-radius: 4px;
   font-size: 0.78rem;
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
   text-decoration: none;
   white-space: nowrap;
 }

 /* ── HERO ── */
 .hero {
   position: relative;
   min-height: 100svh;
   display: flex;
   align-items: flex-end;
   overflow: hidden;
 }

 .hero-swiper {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
 }

 .hero-swiper .swiper-slide {
   background-size: cover;
   background-position: center;
 }

 .hero-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(to top,
       rgba(12, 12, 12, 0.2) 0%,
       rgba(12, 12, 12, 0.35) 40%,
       rgba(12, 12, 12, 0.85) 85%,
       rgba(12, 12, 12, 0.95) 100%);
   z-index: 2;
 }

 .hero-content {
   position: absolute;
   z-index: 3;
   padding: 28px 20px 36px;
   width: 100%;
   top: 1rem;
 }

 .availability-pill {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   background: rgba(26, 158, 90, 0.18);
   border: 1px solid rgba(26, 158, 90, 0.5);
   border-radius: 50px;
   padding: 5px 14px;
   font-size: 0.72rem;
   font-weight: 600;
   color: #4ade80;
   letter-spacing: 1px;
   margin-bottom: 14px;
 }

 .avail-dot {
   width: 7px;
   height: 7px;
   background: #4ade80;
   border-radius: 50%;
   animation: pulse-dot 1.5s infinite;
 }

 @keyframes pulse-dot {

   0%,
   100% {
     opacity: 1;
     transform: scale(1);
   }

   50% {
     opacity: 0.5;
     transform: scale(0.7);
   }
 }

 .hero-content h1 {
   font-size: clamp(2.2rem, 7.5vw, 4.8rem);
   font-weight: 900;
   color: var(--white);
   line-height: 1.05;
   margin-bottom: 14px;
   letter-spacing: -0.5px;
 }

 .hero-content h1 em {
   font-style: italic;
   color: var(--amber-light);
 }

 .hero-content p {
   font-size: 0.95rem;
   color: rgba(255, 255, 255, 0.82);
   line-height: 1.7;
   max-width: 480px;
   margin-bottom: 22px;
   font-weight: 300;
 }

 /* Quick Stats Strip */
 .quick-stats {
   display: flex;
   gap: 0;
   background: rgba(255, 255, 255, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.12);
   border-radius: 8px;
   overflow: hidden;
   margin-bottom: 24px;
   backdrop-filter: blur(8px);
 }

 .qs-item {
   flex: 1;
   padding: 12px 8px;
   text-align: center;
   border-right: 1px solid rgba(255, 255, 255, 0.1);
 }

 .qs-item:last-child {
   border: none;
 }

 .qs-item strong {
   display: block;
   font-size: 1.2rem;
   font-weight: 700;
   color: var(--amber-light);
   font-family: 'Playfair Display', serif;
 }

 .qs-item span {
   font-size: 0.65rem;
   color: rgba(255, 255, 255, 0.65);
   text-transform: uppercase;
   letter-spacing: 1px;
 }

 /* CTA Buttons */
 .hero-ctas {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 10px;
 }

 .cta-primary {
   background: var(--amber);
   color: var(--dark);
   padding: 16px 12px;
   border-radius: 6px;
   font-size: 0.85rem;
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
   text-decoration: none;
   text-align: center;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   box-shadow: 0 4px 24px rgba(212, 150, 10, 0.45);
   transition: transform 0.15s, box-shadow 0.15s;
 }

 .cta-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 32px rgba(212, 150, 10, 0.55);
 }

 .cta-wa {
   background: #25D366;
   color: var(--white);
   padding: 16px 12px;
   border-radius: 6px;
   font-size: 0.85rem;
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
   text-decoration: none;
   text-align: center;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
   transition: transform 0.15s;
 }

 .cta-wa:hover {
   transform: translateY(-2px);
 }

 /* ── TRUST BAR ── */
 .trust-bar {
   background: var(--dark-2);
   padding: 16px 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 24px;
   flex-wrap: wrap;
 }

 .trust-item {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 0.78rem;
   color: rgba(255, 255, 255, 0.7);
 }

 .trust-item i {
   color: var(--amber);
   font-size: 0.9rem;
 }

 /* ── SCARCITY SECTION ── */
 .scarcity-banner {
   background: linear-gradient(135deg, #1a0a00 0%, #2d1500 100%);
   border-top: 2px solid var(--amber);
   border-bottom: 2px solid var(--amber);
   padding: 18px 20px;
   text-align: center;
 }

 .scarcity-banner p {
   font-size: 0.88rem;
   color: rgba(255, 255, 255, 0.85);
   margin-bottom: 10px;
 }

 .weekend-slots {
   display: flex;
   gap: 8px;
   justify-content: center;
   flex-wrap: wrap;
 }

 .slot {
   padding: 6px 16px;
   border-radius: 4px;
   font-size: 0.75rem;
   font-weight: 700;
   letter-spacing: 0.5px;
 }

 .slot.booked {
   background: rgba(192, 57, 43, 0.2);
   border: 1px solid rgba(192, 57, 43, 0.5);
   color: #e74c3c;
   text-decoration: line-through;
 }

 .slot.available {
   background: rgba(26, 158, 90, 0.15);
   border: 1px solid rgba(26, 158, 90, 0.4);
   color: #4ade80;
 }

 .slot.limited {
   background: rgba(212, 150, 10, 0.15);
   border: 1px solid rgba(212, 150, 10, 0.4);
   color: var(--amber-light);
 }

 /* ── SECTION STYLES ── */
 section {
   padding: 52px 0;
 }

 .container {
   width: 100%;
   max-width: 1000px;
   margin: 0 auto;
   padding: 0 20px;
 }

 .section-eyebrow {
   font-size: 0.68rem;
   font-weight: 700;
   letter-spacing: 4px;
   text-transform: uppercase;
   color: var(--amber);
   display: block;
   margin-bottom: 10px;
 }

 .section-h {
   font-size: clamp(1.8rem, 5vw, 2.8rem);
   font-weight: 700;
   line-height: 1.15;
   margin-bottom: 8px;
 }

 .section-h em {
   font-style: italic;
   color: var(--amber);
 }

 .gold-line {
   width: 44px;
   height: 3px;
   background: var(--amber);
   margin: 14px 0 20px;
 }

 /* ── VILLA CARDS ── */
 .villa-select-section {
   background: var(--warm-grey);
 }

 .villa-big-card {
   background: var(--white);
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
   margin-bottom: 20px;
   border: 1px solid #eee;
   transition: transform 0.3s, box-shadow 0.3s;
 }

 .villa-big-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 16px 56px rgba(0, 0, 0, 0.15);
 }

 .villa-img-wrap {
   position: relative;
   height: 100%;
   overflow: hidden;
 }

 .villa-img-wrap img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.6s;
 }

 .villa-big-card:hover .villa-img-wrap img {
   transform: scale(1.04);
 }

 .villa-badge {
   position: absolute;
   top: 14px;
   left: 14px;
   background: var(--amber);
   color: var(--dark);
   font-size: 0.65rem;
   font-weight: 800;
   letter-spacing: 2px;
   text-transform: uppercase;
   padding: 5px 14px;
   border-radius: 3px;
 }

 .villa-avail-tag {
   position: absolute;
   top: 14px;
   right: 14px;
   background: rgba(26, 158, 90, 0.9);
   backdrop-filter: blur(4px);
   color: var(--white);
   font-size: 0.65rem;
   font-weight: 700;
   padding: 5px 12px;
   border-radius: 3px;
 }

 .villa-body {
   padding: 22px 20px;
 }

 .villa-body h3 {
   font-size: 1.5rem;
   font-weight: 700;
   margin-bottom: 6px;
 }

 .villa-chips {
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
   margin-bottom: 12px;
 }

 .chip {
   background: var(--warm-grey);
   border-radius: 50px;
   padding: 4px 12px;
   font-size: 0.72rem;
   font-weight: 500;
   color: #555;
   display: flex;
   align-items: center;
   gap: 5px;
 }

 .chip i {
   color: var(--amber);
   font-size: 0.75rem;
 }

 .villa-body p {
   font-size: 0.85rem;
   color: #666;
   line-height: 1.7;
   margin-bottom: 18px;
 }

 .villa-price-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   border-top: 1px solid #eee;
   padding-top: 16px;
   flex-wrap: wrap;
   gap: 12px;
 }

 .price-block .price-val {
   font-family: 'Playfair Display', serif;
   font-size: 1.6rem;
   font-weight: 700;
   color: var(--dark);
 }

 .price-block .price-label {
   font-size: 0.72rem;
   color: var(--muted);
 }

 .btn-villa-book {
   background: var(--amber);
   color: var(--dark);
   padding: 12px 24px;
   border-radius: 5px;
   font-size: 0.78rem;
   font-weight: 700;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   transition: background 0.2s, transform 0.15s;
 }

 .btn-villa-book:hover {
   background: var(--amber-dark);
   transform: translateY(-1px);
 }

 /* ── WHAT'S INCLUDED ── */
 .included-section {
   background: var(--dark);
 }

 .included-section .section-h {
   color: var(--white);
 }

 .included-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 12px;
   margin-top: 6px;
 }

 .inc-item {
   display: flex;
   align-items: center;
   gap: 12px;
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(212, 150, 10, 0.15);
   border-radius: 8px;
   padding: 14px;
 }

 .inc-icon {
   width: 40px;
   height: 40px;
   border-radius: 8px;
   background: rgba(212, 150, 10, 0.12);
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--amber);
   font-size: 1rem;
   flex-shrink: 0;
 }

 .inc-item span {
   font-size: 0.82rem;
   color: #ccc;
   line-height: 1.4;
 }

 /* ── SOCIAL PROOF ── */
 .social-proof-section {
   background: var(--warm-grey);
 }

 .star-summary {
   display: flex;
   align-items: center;
   gap: 16px;
   background: var(--white);
   border-radius: 10px;
   padding: 20px;
   border: 1px solid #e8e0d0;
   margin-bottom: 20px;
   box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
 }

 .star-big {
   font-family: 'Playfair Display', serif;
   font-size: 3rem;
   font-weight: 900;
   color: var(--amber);
   line-height: 1;
 }

 .star-details p {
   font-size: 0.78rem;
   color: var(--muted);
   margin-top: 4px;
 }

 .stars-row {
   color: var(--amber);
   font-size: 1rem;
   letter-spacing: 2px;
 }

 .review-card {
   background: var(--white);
   border-radius: 10px;
   padding: 20px;
   border: 1px solid #e8e0d0;
   box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
   margin-bottom: 14px;
 }

 .review-stars {
   color: var(--amber);
   font-size: 0.85rem;
   margin-bottom: 10px;
 }

 .review-text {
   font-size: 0.88rem;
   color: #444;
   line-height: 1.75;
   font-style: italic;
   margin-bottom: 14px;
 }

 .review-text::before {
   content: '"';
   font-size: 1.8rem;
   color: var(--amber);
   line-height: 0;
   vertical-align: -0.4em;
   margin-right: 4px;
 }

 .reviewer {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .reviewer img {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   object-fit: cover;
   border: 2px solid var(--amber);
 }

 .reviewer-name {
   font-size: 0.85rem;
   font-weight: 600;
 }

 .reviewer-loc {
   font-size: 0.72rem;
   color: var(--muted);
 }

 .review-platform {
   margin-left: auto;
   font-size: 0.65rem;
   color: #aaa;
   text-transform: uppercase;
   letter-spacing: 1px;
 }

 /* ── LEAD FORM ── */
 .form-section {
   background: linear-gradient(135deg, var(--dark) 0%, #1a0f00 100%);
   position: relative;
   overflow: hidden;
 }

 .form-section::before {
   content: '';
   position: absolute;
   top: -80px;
   right: -80px;
   width: 300px;
   height: 300px;
   background: radial-gradient(circle, rgba(212, 150, 10, 0.12) 0%, transparent 70%);
   pointer-events: none;
 }

 .form-section .section-h {
   color: var(--white);
 }

 .form-section .section-eyebrow {
   color: var(--amber);
 }

 .lead-form-card {
   background: rgba(255, 255, 255, 0.04);
   border: 1px solid rgba(212, 150, 10, 0.25);
   border-radius: 12px;
   padding: 28px 22px;
   position: relative;
   z-index: 1;
 }

 .form-guarantee {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 0.75rem;
   color: rgba(255, 255, 255, 0.5);
   margin-bottom: 20px;
 }

 .form-guarantee i {
   color: var(--green);
 }

 .f-row {
   margin-bottom: 14px;
 }

 .f-label {
   display: block;
   font-size: 0.68rem;
   font-weight: 700;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   color: rgba(255, 255, 255, 0.55);
   margin-bottom: 6px;
 }

 .f-input,
 .f-select {
   width: 100%;
   background: rgba(255, 255, 255, 0.07);
   border: 1.5px solid rgba(212, 150, 10, 0.2);
   color: var(--white);
   border-radius: 6px;
   padding: 13px 15px;
   font-size: 0.88rem;
   font-family: 'Outfit', sans-serif;
   outline: none;
   transition: border-color 0.2s;
 }

 .f-input:focus,
 .f-select:focus {
   border-color: var(--amber);
 }

 .f-input::placeholder {
   color: #444;
 }

 .f-select {
   appearance: auto;
   background-color: #1a1a1a;
 }

 .f-select option {
   background: #1a1a1a;
 }

 .row-2 {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 12px;
 }

 .form-terms {
   margin: 16px 0;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }

 .fterm {
   display: flex;
   align-items: flex-start;
   gap: 8px;
   font-size: 0.75rem;
   color: rgba(255, 255, 255, 0.45);
 }

 .fterm i {
   color: var(--amber);
   margin-top: 2px;
   font-size: 0.7rem;
   flex-shrink: 0;
 }

 .btn-submit-main {
   width: 100%;
   background: var(--amber);
   color: var(--dark);
   border: none;
   padding: 17px;
   border-radius: 6px;
   font-size: 0.88rem;
   font-weight: 800;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   cursor: pointer;
   transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
   box-shadow: 0 6px 28px rgba(212, 150, 10, 0.4);
   font-family: 'Outfit', sans-serif;
 }

 .btn-submit-main:hover {
   background: var(--amber-dark);
   transform: translateY(-2px);
   box-shadow: 0 10px 36px rgba(212, 150, 10, 0.5);
 }

 .form-wa-alt {
   text-align: center;
   margin-top: 14px;
   font-size: 0.78rem;
   color: rgba(255, 255, 255, 0.4);
 }

 .form-wa-alt a {
   color: #4ade80;
   text-decoration: none;
   font-weight: 600;
 }

 /* ── FAQ ── */
 .faq-section {
   background: var(--off-white);
 }

 .faq-item {
   border-bottom: 1px solid #e0dbd0;
   padding: 18px 0;
 }

 .faq-q {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 12px;
   cursor: pointer;
   font-weight: 600;
   font-size: 0.9rem;
   color: var(--text);
 }

 .faq-q .icon {
   color: var(--amber);
   flex-shrink: 0;
   transition: transform 0.2s;
 }

 .faq-item.open .faq-q .icon {
   transform: rotate(45deg);
 }

 .faq-a {
   font-size: 0.85rem;
   color: #666;
   line-height: 1.8;
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease, padding 0.3s;
   padding-top: 0;
 }

 .faq-item.open .faq-a {
   max-height: 200px;
   padding-top: 12px;
 }

 /* ── STICKY BOTTOM BAR ── */
 .sticky-bar {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: var(--dark);
   border-top: 2px solid var(--amber);
   padding: 12px 16px;
   display: flex;
   gap: 10px;
   align-items: center;
   z-index: 997;
 }

 .sticky-bar-text {
   flex: 1;
 }

 .sticky-bar-text span {
   display: block;
   font-size: 0.7rem;
   color: rgba(255, 255, 255, 0.55);
   text-transform: uppercase;
   letter-spacing: 1px;
 }

 .sticky-bar-text strong {
   color: var(--white);
   font-size: 0.88rem;
 }

 .sticky-wa-btn {
   background: #25D366;
   color: var(--white);
   padding: 11px 18px;
   border-radius: 50px;
   font-size: 0.8rem;
   font-weight: 700;
   text-decoration: none;
   display: flex;
   align-items: center;
   gap: 6px;
   white-space: nowrap;
 }

 .sticky-call-btn {
   background: var(--amber);
   color: var(--dark);
   padding: 11px 14px;
   border-radius: 50px;
   font-size: 0.8rem;
   font-weight: 700;
   text-decoration: none;
   display: flex;
   align-items: center;
   gap: 6px;
 }

 /* ── FOOTER ── */
 .mini-footer {
   background: #080808;
   padding: 28px 20px 80px;
   text-align: center;
 }

 .mini-footer .brand {
   font-size: 1.6rem;
   display: block;
   margin-bottom: 10px;
 }

 .mini-footer p {
   font-size: 0.78rem;
   color: #444;
   line-height: 1.8;
 }

 .mini-footer-links {
   display: flex;
   justify-content: center;
   gap: 20px;
   margin: 14px 0;
   flex-wrap: wrap;
 }

 .mini-footer-links a {
   color: #555;
   font-size: 0.75rem;
   text-decoration: none;
   transition: color 0.2s;
 }

 .mini-footer-links a:hover {
   color: var(--amber);
 }

 /* ── ANIMATIONS ── */
 .reveal {
   opacity: 0;
   transform: translateY(24px);
   transition: opacity 0.55s ease, transform 0.55s ease;
 }

 .reveal.shown {
   opacity: 1;
   transform: none;
 }

 @media (min-width: 600px) {
   .hero-ctas {
     grid-template-columns: 1fr 1fr;
     max-width: 420px;
   }

   .included-grid {
     grid-template-columns: repeat(3, 1fr);
   }
 }

 @media (max-width: 400px) {
   .hero-ctas {
     grid-template-columns: 1fr;
   }

   .row-2 {
     grid-template-columns: 1fr;
   }
 }

 /* ── HERO SLIDES: Mobile vs Desktop Images ── */
 .slide-1 {
   background-image: url('../img/mb-slide3.jpg');
 }

 .slide-2 {
   background-image: url('../img/mb-slide4.jpg');
 }

 .slide-3 {
   background-image: url('../img/mb-slide.jpg');
 }

 @media (min-width: 768px) {
   .slide-1 {
     background-image: url('../img/slide1.jpg');
   }

   .slide-2 {
     background-image: url('../img/slide2.jpg');
   }

   .slide-3 {
     background-image: url('../img/slide3.jpg');
   }
   .hero-content {
    position: relative;
    z-index: 3;
    padding: 28px 20px 36px;
    width: 100%;
    top: -8rem;
}
.inc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 150, 10, 0.15);
    border-radius: 8px;
    padding: 10px 5px;
}
 }