/* ── DESIGN SYSTEM & VARIABLE DEFINITIONS ── */
    :root {
      --bg-dark:        #F5EFEB;      /* Page background — Beige (Off-White) */
      --bg-card:        #FFFFFF;      /* Card/section backgrounds — White */
      --bg-section-alt: #EAE3DF;      /* Alternating sections — Warm Off-White */
      --areia:          #2F4156;      /* Sand/cream — Navy */
      --azul:           #C8D9E6;      /* Softer slate blue — Sky Blue */
      --terra:          #567C8D;      /* Terracotta red — Teal */
      --verde:          #C8D9E6;      /* Sage green-grey — Sky Blue */
      --gold:           #2F4156;      /* Gold — Navy */
      --gold-light:     #567C8D;      /* Light gold — Teal */
      --gold-dark:      #1b2635;      /* Dark gold — Darker Navy */
      --white-soft:     #2F4156;      /* Off-white — Navy (main body text) */
      --white-dim:      #567C8D;      /* Muted — Teal (secondary text) */
      --border-luxury:  rgba(47,65,86,0.15); /* Subtle Navy border */
      --whatsapp:       #25D366;      /* WhatsApp green — keep brand-accurate */
      
      /* Royal Mewar Accent Colors */
      --royal-emerald:  #567C8D;      /* Teal */
      --royal-ruby:     #2F4156;      /* Navy */
      --royal-indigo:   #1b2635;      /* Deep Navy */
      
      --transition-lux: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ── BASE RESET & STRUCTURE ── */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    html {
      scroll-behavior: smooth;
      background-color: var(--bg-dark);
      color: var(--white-soft);
      font-family: 'Inter', sans-serif;
    }

    body {
      background-color: var(--bg-dark);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      line-height: 1.8;
      padding-top: 132px; /* Accommodate urgency banner (42px) + Nav (90px) */
      transition: padding-top 0.35s ease;
    }

    body.has-banner {
      padding-top: 174px; /* Accommodate urgency banner (42px) + seasonal banner (42px) + Nav (90px) */
    }

    /* Subtle CSS noise grain filter overlay */
    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      opacity: 0.025;
      z-index: 9999;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    }

    /* Skip link for accessibility */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 20px;
      background: var(--gold);
      color: var(--bg-dark);
      padding: 10px 20px;
      z-index: 10010;
      font-weight: 600;
      text-decoration: none;
      border-radius: 2px;
      transition: top 0.3s;
    }
    .skip-link:focus {
      top: 50px;
    }

    /* ── TYPOGRAPHY RULES ── */
    h1, h2, h3, h4, .font-heading {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 500;
      letter-spacing: -0.01em;
    }

    h2 {
      font-size: clamp(28px, 4.5vw, 52px);
      font-weight: 600;
      line-height: 1.15;
      color: var(--white-soft);
      text-align: center;
      margin-top: 15px;
      margin-bottom: 50px;
    }

    h2 em {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 300;
      color: var(--areia);
    }

    p {
      color: var(--white-dim);
      font-size: 15px;
      font-weight: 300;
    }

    /* ── LAYOUT UTILITIES ── */
    .section-pad {
      padding: 100px 24px;
    }
    @media (max-width: 767px) {
      .section-pad {
        padding: 60px 16px;
      }
    }

    .container {
      max-width: 1300px;
      margin: 0 auto;
      width: 100%;
    }

    /* ── DECORATIVE ELEMENTS ── */
    .section-title-wrap {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
    }

    .eyebrow-rule {
      width: 60px;
      height: 1px;
      background-color: var(--gold);
      margin: 0 auto 12px;
    }

    .eyebrow {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: clamp(10px, 2vw, 11px);
      letter-spacing: 0.20em;
      text-transform: uppercase;
      color: var(--gold);
      display: inline-block;
      margin-bottom: 12px;
    }

    .title-svg {
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .title-svg svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    /* ── BUTTON STYLES ── */
    .btn-lux {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 36px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      transition: var(--transition-lux);
      cursor: pointer;
      text-align: center;
    }

    /* Primary: WhatsApp button */
    .btn-lux.primary {
      background-color: var(--whatsapp);
      color: #ffffff;
      border: none;
      border-radius: 3px;
    }
    .btn-lux.primary:hover {
      background-color: #1da851;
      box-shadow: 0 8px 28px rgba(37,211,102,0.40);
      transform: translateY(-2px);
    }

    /* Secondary: Gold outline button */
    .btn-lux.secondary {
      border: 1.5px solid var(--gold);
      color: var(--gold);
      background-color: transparent;
      border-radius: 3px;
    }
    .btn-lux.secondary:hover {
      background-color: rgba(201, 168, 76, 0.08);
      border-color: var(--gold-light);
      color: var(--gold-light);
      transform: translateY(-2px);
    }

    /* Solid Gold button */
    .btn-lux.gold-solid {
      background-color: var(--gold);
      color: var(--bg-dark);
      border: none;
      border-radius: 3px;
    }
    .btn-lux.gold-solid:hover {
      background-color: var(--gold-light);
      box-shadow: 0 8px 28px rgba(201,168,76,0.30);
      transform: translateY(-2px);
    }

    /* Pill adaptation */
    .btn-lux.pill {
      border-radius: 50px;
    }

    /* ── SEASONAL BANNER ── */
    .seasonal-banner {
      position: fixed;
      top: 42px;
      left: 0;
      width: 100%;
      height: 42px;
      background: linear-gradient(135deg, var(--royal-emerald) 0%, var(--royal-indigo) 100%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      z-index: 10002;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 0.05em;
      color: #FFFFFF;
      padding: 0 40px 0 16px;
    }
    .seasonal-banner .close-btn {
      position: absolute;
      right: 16px;
      background: none;
      border: none;
      color: #FFFFFF;
      font-size: 20px;
      cursor: pointer;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
    }
    .seasonal-banner .close-btn:hover {
      color: var(--azul);
    }

    /* ── 01. URGENCY BANNER ── */
    .urgency-banner {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 42px;
      background: linear-gradient(135deg, var(--royal-ruby), var(--royal-indigo));
      border-bottom: 1px solid var(--border-luxury);
      z-index: 10003;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 0.06em;
      color: #FFFFFF; /* High contrast white text */
      padding: 0 16px;
    }

    @media (max-width: 767px) {
      .urgency-banner, .seasonal-banner {
        font-size: 10px;
        letter-spacing: 0.03em;
        text-align: center;
      }
      .urgency-banner-span, .seasonal-banner-span {
        display: inline-block;
        white-space: nowrap;
        animation: marquee 15s linear infinite;
        padding-left: 100%;
      }
      @keyframes marquee {
        0% { transform: translate3d(0, 0, 0); }
        100% { transform: translate3d(-100%, 0, 0); }
      }
    }

    /* ── 02. NAVIGATION ── */
    .nav-bar {
      position: fixed;
      top: 42px;
      left: 0;
      width: 100%;
      height: 90px;
      background: rgba(17, 24, 34, 0.92) !important; /* Rich deep navy */
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 10001;
      border-bottom: 1px solid rgba(200, 217, 230, 0.12) !important;
      transition: var(--transition-lux), top 0.35s ease;
    }
    body.has-banner .nav-bar {
      top: 84px;
    }
    .nav-bar.scrolled {
      background: rgba(11, 16, 23, 0.96) !important;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35) !important;
      height: 80px;
    }

    .nav-container {
      display: flex;
      height: 100%;
      align-items: center;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .logo-link {
      display: flex;
      align-items: center;
      gap: 16px;
      text-decoration: none;
    }
    
    .logo-img {
      max-height: 52px;
      width: auto;
      object-fit: contain;
    }

    .logo-tagline {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #C8D9E6;
      border-left: 1px solid rgba(200, 217, 230, 0.25);
      padding-left: 16px;
      white-space: nowrap;
    }

    @media (max-width: 1023px) {
      .logo-tagline {
        display: none;
      }
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 32px;
      align-items: center;
    }

    .nav-menu-item a {
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #F5EFEB !important; /* High contrast light beige */
      text-decoration: none;
      transition: var(--transition-lux);
    }
    .nav-menu-item a:hover {
      color: #C8D9E6 !important; /* Sky Blue accent hover */
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav-tel {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.05em;
      color: #C8D9E6 !important; /* Sky Blue */
      text-decoration: none;
      transition: var(--transition-lux);
    }
    .nav-tel:hover {
      color: #FFFFFF !important;
    }

    .nav-bar .btn-lux.secondary {
      border-color: #C8D9E6 !important;
      color: #C8D9E6 !important;
    }
    .nav-bar .btn-lux.secondary:hover {
      background-color: rgba(200, 217, 230, 0.1) !important;
      border-color: #FFFFFF !important;
      color: #FFFFFF !important;
    }

    .mobile-burger-btn {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 10006;
    }
    .mobile-burger-btn span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: #F5EFEB !important; /* Light beige burger lines */
      transition: var(--transition-lux);
    }

    @media (max-width: 1023px) {
      .nav-menu {
        display: none;
      }
      .nav-actions {
        display: none;
      }
      .mobile-burger-btn {
        display: flex;
      }
    }

    @media (max-width: 767px) {
      .nav-bar {
        height: 70px;
      }
      .nav-bar.scrolled {
        height: 70px;
      }
      body {
        padding-top: 112px;
      }
      body.has-banner {
        padding-top: 154px;
      }
      .hero-section {
        height: auto;
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 60px;
      }
    }

    /* ── 03. HERO ── */
    .hero-section {
      height: calc(100vh - 132px);
      min-height: 600px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    body.has-banner .hero-section {
      height: calc(100vh - 174px);
    }

    .hero-bg-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      overflow: hidden;
    }
    .hero-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1);
      animation: kenBurns 12s ease infinite alternate;
    }
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(17, 24, 34, 0.75) 0%, rgba(17, 24, 34, 0.45) 55%, rgba(17, 24, 34, 0.15) 100%);
      z-index: 2;
    }
    @media (max-width: 1023px) {
      .hero-overlay {
        background: rgba(17, 24, 34, 0.65) !important;
      }
    }

    @keyframes kenBurns {
      0% { transform: scale(1); }
      100% { transform: scale(1.06); }
    }

    .hero-inner {
      position: relative;
      z-index: 3;
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 60% 40%;
      align-items: center;
    }

    @media (max-width: 1023px) {
      .hero-inner {
        grid-template-columns: 100%;
        text-align: center;
      }
    }

    .hero-text-block {
      max-width: 720px;
    }

    .hero-eyebrow {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #C8D9E6; /* Sky Blue */
      margin-bottom: 16px;
      display: block;
    }

    .hero-h1 {
      font-size: clamp(36px, 5.5vw, 76px);
      font-weight: 700;
      line-height: 1.1;
      color: #FFFFFF; /* White */
      letter-spacing: -0.02em;
      text-transform: uppercase;
    }

    .hero-h1 span.italic-font {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      font-style: italic;
      text-transform: none;
      color: #C8D9E6; /* Sky Blue */
      letter-spacing: 0.02em;
    }

    .hero-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      font-style: italic;
      font-size: clamp(18px, 2.5vw, 24px);
      color: #F5EFEB; /* Light Beige */
      margin-top: 16px;
      margin-bottom: 28px;
    }

    .hero-pills-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 36px;
    }
    @media (max-width: 1023px) {
      .hero-pills-row {
        justify-content: center;
      }
    }

    .hero-pill {
      border: 1px solid rgba(200, 217, 230, 0.25);
      background: rgba(200, 217, 230, 0.08);
      border-radius: 3px;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 11px;
      color: #F5EFEB; /* Light Beige */
      padding: 7px 14px;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    @media (max-width: 1023px) {
      .hero-ctas {
        justify-content: center;
      }
    }
    @media (max-width: 767px) {
      .hero-ctas {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 12px;
      }
      .hero-ctas .btn-lux {
        width: 100%;
        display: flex;
        justify-content: center;
      }
    }

    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      right: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 3;
      opacity: 0.5;
    }

    .scroll-text {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 10px;
      letter-spacing: 0.2em;
      color: #C8D9E6; /* Sky Blue */
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      margin-bottom: 12px;
    }

    .scroll-line {
      width: 1px;
      height: 60px;
      background-color: #C8D9E6; /* Sky Blue */
      position: relative;
      overflow: hidden;
    }

    .scroll-line::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, transparent, #FFFFFF, transparent);
      animation: scrollAnim 2s infinite;
    }

    @keyframes scrollAnim {
      0% { transform: translateY(-100%); }
      100% { transform: translateY(100%); }
    }

    @media (max-width: 767px) {
      .scroll-indicator {
        display: none;
      }
    }

    /* ── TRUST STRIP ── */
    .trust-strip {
      background: linear-gradient(135deg, var(--royal-emerald) 0%, var(--royal-ruby) 100%);
      border-top: 1px solid var(--border-luxury);
      border-bottom: 1px solid var(--border-luxury);
      padding: 24px;
      position: relative;
      z-index: 10;
    }
    .trust-strip-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .trust-strip-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #FFFFFF;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
    }
    .trust-stars {
      color: #C8D9E6; /* Softer light blue rating stars */
      font-size: 18px;
      letter-spacing: 2px;
    }
    .trust-badge-icon {
      font-size: 20px;
    }
    .trust-strip-divider {
      width: 1px;
      height: 24px;
      background-color: rgba(255, 255, 255, 0.2);
    }
    @media (max-width: 767px) {
      .trust-strip-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }
      .trust-strip-divider {
        display: none;
      }
    }

    /* ── 05. ABOUT ── */
    .about-section {
      background-color: var(--bg-dark);
      position: relative;
    }

    .about-grid {
      display: block;
      max-width: 850px;
      margin: 0 auto;
      text-align: center;
    }

    .about-text-col {
      padding-right: 0;
    }

    .about-p {
      color: var(--white-dim);
      font-size: 16px;
      line-height: 1.85;
      margin-bottom: 24px;
      font-weight: 300;
    }

    /* ── 06. GALLERY ── */
    .gallery-section {
      background-color: var(--bg-card);
    }

    .gallery-grid {
      display: grid;
      grid-gap: 24px;
    }

    .gallery-row-1 {
      display: grid;
      grid-template-columns: 2fr 1fr;
      grid-gap: 24px;
    }

    .gallery-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 24px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      cursor: pointer;
      border: 1px solid rgba(201,168,76,0.12);
    }

    .gallery-item.tall {
      aspect-ratio: 10 / 13;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gallery-item:hover img {
      transform: scale(1.04);
    }

    /* Custom luxury overlay on hover */
    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(14, 11, 8, 0.75);
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: var(--transition-lux);
      border: 0px solid var(--gold);
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
      border: 1px solid var(--gold);
    }

    .gallery-overlay-text {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 0.2em;
      color: var(--gold);
      transform: translateY(10px);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gallery-item:hover .gallery-overlay-text {
      transform: translateY(0);
    }

    .gallery-bottom {
      text-align: center;
      margin-top: 48px;
    }

    @media (max-width: 767px) {
      .gallery-row-1, .gallery-row-2 {
        grid-template-columns: 100%;
      }
      .gallery-item.tall {
        aspect-ratio: 16 / 10;
      }
    }

    /* ── 08. ROOMS ── */
    .rooms-section {
      background-color: var(--bg-card);
    }

    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr) !important;
      grid-gap: 32px;
      margin-bottom: 48px;
    }

    .room-card {
      background-color: var(--bg-dark);
      border: 1px solid var(--border-luxury);
      border-radius: 2px;
      overflow: hidden;
      transition: var(--transition-lux);
      display: flex;
      flex-direction: column;
    }

    .room-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.5);
      border-color: rgba(201,168,76,0.35);
    }

    .room-img-container {
      position: relative;
      height: 250px;
      overflow: hidden;
    }

    .room-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }

    .room-card:hover .room-img {
      transform: scale(1.04);
    }

    .room-img-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(14, 11, 8, 0) 40%, rgba(14, 11, 8, 0.75) 100%);
    }

    .room-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--royal-ruby);
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 9px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 6px 12px;
      border: 1px solid rgba(201, 168, 76, 0.40);
      border-radius: 2px;
      z-index: 2;
    }

    .room-body {
      padding: 30px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .room-title-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 8px;
    }

    .room-name {
      font-size: 22px;
      font-weight: 600;
      color: var(--white-soft);
    }

    .room-size {
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 11px;
      color: var(--gold);
      background: rgba(201,168,76,0.08);
      padding: 3px 8px;
      border-radius: 2px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .room-desc {
      font-size: 14px;
      color: var(--white-dim);
      margin-bottom: 18px;
      line-height: 1.6;
    }

    .room-meta-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
      padding-top: 18px;
      border-top: 1px solid rgba(211,199,173,0.1);
    }

    .room-guests {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 12px;
      color: var(--white-dim); /* Legible Teal text color */
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .room-price-block {
      text-align: right;
    }

    .room-price {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 22px;
      color: var(--gold);
      line-height: 1;
    }

    .room-price-lbl {
      font-size: 10px;
      color: var(--white-dim);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .room-cta-btn {
      width: 100%;
      border-top: 1.5px solid var(--border-luxury);
      border-bottom: none;
      border-left: none;
      border-right: none;
      background: transparent;
      color: var(--gold);
      padding: 18px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      text-align: center;
      transition: var(--transition-lux);
      display: block;
    }
    
    .room-card:hover .room-cta-btn {
      background-color: var(--gold);
      color: var(--bg-dark);
    }

    .rooms-bottom {
      text-align: center;
      margin-top: 40px;
      border-top: 1px solid rgba(201,168,76,0.15);
      padding-top: 40px;
    }

    .rooms-starting-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      color: var(--areia);
      font-style: italic;
      margin-bottom: 20px;
    }

    @media (max-width: 1023px) {
      .rooms-grid {
        grid-template-columns: repeat(2, 1fr) !important;
      }
    }

    @media (max-width: 767px) {
      .rooms-grid {
        grid-template-columns: 100% !important;
      }
      .room-title-row {
        flex-direction: column;
        gap: 8px;
      }
    }

    /* ── AMENITIES ── */
    .amenities-section {
      background-color: var(--bg-section-alt);
      border-top: 1px solid var(--border-luxury);
      border-bottom: 1px solid var(--border-luxury);
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-gap: 24px;
    }

    .amenity-card {
      background: var(--bg-card);
      border: 1px solid var(--border-luxury);
      border-radius: 4px;
      padding: 36px 20px;
      text-align: center;
      transition: var(--transition-lux);
    }

    .amenity-card:hover {
      background: rgba(86, 124, 141, 0.08); /* Soft Teal hover */
      border-color: var(--gold-light);
      box-shadow: 0 12px 30px rgba(47, 65, 86, 0.08);
      transform: translateY(-6px);
    }

    .amenity-icon {
      color: var(--gold);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .amenity-icon svg {
      width: 40px;
      height: 40px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.5;
    }

    .amenity-label {
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.05em;
      color: var(--areia);
    }

    @media (max-width: 1023px) {
      .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    @media (max-width: 767px) {
      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 16px;
      }
      .amenity-card {
        padding: 24px 16px;
      }
    }

    /* ── NEARBY ATTRACTIONS / LOCATION ── */
    .attractions-section {
      background-color: var(--bg-dark);
    }
    .attractions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 50px;
    }
    .attraction-card {
      background-color: var(--bg-card);
      border: 1px solid var(--border-luxury);
      border-radius: 4px;
      overflow: hidden;
      transition: var(--transition-lux);
      display: flex;
      flex-direction: column;
    }
    .attraction-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      border-color: var(--gold-light);
    }
    .attraction-img-wrap {
      height: 200px;
      overflow: hidden;
      position: relative;
    }
    .attraction-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .attraction-card:hover .attraction-img {
      transform: scale(1.05);
    }
    .attraction-body {
      padding: 20px;
      flex: 1;
    }
    .attraction-title {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--white-soft);
      margin-bottom: 6px;
    }
    .attraction-desc {
      font-size: 13px;
      color: var(--white-dim);
      line-height: 1.5;
    }
    .map-container {
      width: 100%;
      height: 400px;
      border: 1px solid var(--border-luxury);
      border-radius: 2px;
      overflow: hidden;
    }
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }
    @media (max-width: 1023px) {
      .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 767px) {
      .attractions-grid {
        grid-template-columns: 100%;
      }
    }

    /* ── BEST TIME TO VISIT ── */
    .best-time-section {
      background-color: var(--bg-section-alt);
      border-top: 1px solid var(--border-luxury);
      border-bottom: 1px solid var(--border-luxury);
    }
    .best-time-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 40px;
    }
    .best-time-card {
      background: var(--bg-card);
      border: 1px solid var(--border-luxury);
      border-radius: 4px;
      padding: 40px 30px;
      position: relative;
    }
    .best-time-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }
    .best-time-icon {
      font-size: 24px;
    }
    .best-time-title {
      font-family: 'Inter', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--white-soft);
    }
    .best-time-months {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .best-time-desc {
      font-size: 14.5px;
      color: var(--white-dim);
      line-height: 1.7;
    }
    @media (max-width: 767px) {
      .best-time-grid {
        grid-template-columns: 100%;
        grid-gap: 24px;
      }
    }

    /* ── REVIEWS ── */
    .reviews-section {
      background-color: var(--bg-card);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 32px;
    }

    .review-card {
      background: rgba(255, 255, 255, 0.025);
      border: 1px solid rgba(201, 168, 76, 0.12);
      border-radius: 2px;
      padding: 44px 32px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .review-quote-mark {
      position: absolute;
      top: 10px;
      right: 20px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 90px;
      font-weight: 700;
      color: rgba(201, 168, 76, 0.08);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .review-stars {
      color: var(--gold);
      font-size: 13px;
      letter-spacing: 3px;
      margin-bottom: 24px;
    }

    .review-text {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 400;
      font-size: 17.5px;
      color: var(--areia);
      line-height: 1.75;
      margin-bottom: 28px;
      flex: 1;
    }

    .review-divider {
      width: 40px;
      height: 1px;
      background-color: var(--gold);
      margin-bottom: 20px;
    }

    .review-author {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
    }

    .review-meta {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 11px;
      color: var(--white-dim); /* Legible Teal text color */
    }

    @media (max-width: 1023px) {
      .reviews-grid {
        grid-template-columns: 100%;
        grid-gap: 24px;
      }
    }

    /* ── FAQ ACCORDION ── */
    .faq-section {
      background-color: var(--bg-card);
    }
    .faq-accordion-container {
      max-width: 900px;
      margin: 0 auto;
    }
    .faq-item {
      border-bottom: 1px solid rgba(201, 168, 76, 0.15);
      padding: 18px 0;
    }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--white-soft);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      outline: none;
      padding: 10px 0;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
    }
    .faq-answer p {
      padding: 10px 0 18px 0;
      font-size: 14.5px;
      line-height: 1.7;
      color: var(--white-dim);
    }
    .faq-icon-arrow {
      font-size: 16px;
      color: var(--gold);
      transition: transform 0.3s;
    }
    .faq-item.active .faq-icon-arrow {
      transform: rotate(180deg);
    }

    /* ── 13. FINAL CTA ── */
    .final-cta-section {
      position: relative;
      padding: 140px 24px;
      text-align: center;
      overflow: hidden;
    }

    .final-cta-bg-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
    .final-cta-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .final-cta-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(14,11,8,0.92) 0%, rgba(14,11,8,0.92) 100%);
      z-index: 2;
    }

    .final-cta-inner {
      position: relative;
      z-index: 3;
      max-width: 700px;
      margin: 0 auto;
    }

    .final-cta-eyebrow-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 16px;
    }

    .final-cta-line {
      width: 50px;
      height: 1px;
      background-color: #C8D9E6; /* Sky Blue line */
      opacity: 0.5;
    }

    .final-cta-eyebrow {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #C8D9E6; /* Sky Blue */
    }

    .final-cta-h2 {
      font-size: clamp(24px, 3.5vw, 38px);
      font-weight: 600;
      color: #FFFFFF; /* White */
      line-height: 1.25;
      margin-bottom: 12px;
    }

    .final-cta-h2 em {
      font-style: italic;
      font-weight: 300;
      color: #C8D9E6; /* Sky Blue */
    }

    .final-cta-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      font-style: italic;
      font-size: 20px;
      color: #F5EFEB; /* Light Beige */
      margin-bottom: 40px;
    }

    .final-cta-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .final-cta-buttons .btn-lux {
      height: 56px;
      border-radius: 50px;
      min-width: 220px;
    }

    /* ── 14. FOOTER ── */
    footer {
      background-color: #111822;
      border-top: 1px solid rgba(200,217,230,0.20);
      padding: 80px 24px 40px;
      color: #C8D9E6; /* Sky Blue */
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-gap: 64px;
      max-width: 1300px;
      margin: 0 auto;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(200,217,230,0.1);
    }

    .footer-col-1 {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-logo-img {
      max-height: 56px;
      width: auto;
      object-fit: contain;
      align-self: flex-start;
    }

    .footer-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 18px;
      color: #F5EFEB; /* Beige */
    }

    .footer-addr {
      font-size: 13px;
      line-height: 1.6;
      color: #C8D9E6; /* Sky Blue */
    }

    .footer-col-hdr {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 10px;
      letter-spacing: 0.20em;
      text-transform: uppercase;
      color: #FFFFFF; /* White */
      margin-bottom: 24px;
    }

    .footer-links-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      list-style: none;
    }

    .footer-link-item a {
      font-size: 13.5px;
      color: #C8D9E6; /* Sky Blue */
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-link-item a:hover {
      color: #FFFFFF; /* White */
    }

    .footer-contacts-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      list-style: none;
    }

    .footer-contact-item {
      font-size: 13.5px;
      color: #567C8D; /* Teal */
      display: flex;
      flex-direction: column;
    }

    .footer-contact-item a {
      color: #C8D9E6; /* Sky Blue */
      text-decoration: none;
      transition: color 0.2s;
      font-weight: 500;
      margin-top: 4px;
    }
    .footer-contact-item a:hover {
      color: #FFFFFF; /* White */
    }

    .footer-bottom {
      max-width: 1300px;
      margin: 0 auto;
      padding-top: 40px;
      text-align: center;
    }

    .copyright {
      font-size: 11px;
      color: rgba(211, 199, 173, 0.30);
      letter-spacing: 0.05em;
    }

    @media (max-width: 1023px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 48px;
      }
    }
    @media (max-width: 767px) {
      .footer-grid {
        grid-template-columns: 100%;
        grid-gap: 40px;
        text-align: center;
      }
      .footer-logo-img {
        align-self: center;
      }
      .footer-contacts-list, .footer-links-list {
        align-items: center;
      }
    }

    /* ── FLOATING ELEMENTS ── */

    /* A. WhatsApp Floating Button */
    .whatsapp-float {
      position: fixed;
      bottom: 100px;
      right: 20px;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background-color: var(--whatsapp);
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 6px 24px rgba(37,211,102,0.55);
      z-index: 998;
      cursor: pointer;
      text-decoration: none;
      color: white;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      animation: waPulse 2s infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.08);
    }

    .whatsapp-float svg {
      width: 28px;
      height: 28px;
      fill: currentColor;
    }

    /* Tooltip */
    .wa-tooltip {
      position: absolute;
      right: 70px;
      background-color: var(--bg-card);
      border: 1px solid var(--border-luxury);
      color: var(--areia);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.05em;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transform: translateX(10px);
      transition: all 0.3s;
    }
    
    .whatsapp-float:hover .wa-tooltip {
      opacity: 1;
      transform: translateX(0);
    }

    @keyframes waPulse {
      0%, 100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.4);
      }
      50% {
        box-shadow: 0 0 0 14px rgba(37,211,102,0);
      }
    }

    /* B. Sticky Bottom Bar for Mobile Only */
    .sticky-bottom-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: rgba(14, 11, 8, 0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid rgba(201, 168, 76, 0.25);
      padding: 10px 16px;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
    }

    .sticky-bar-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }

    .sticky-bar-info {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .sticky-bar-icon {
      color: #C8D9E6; /* Sky Blue */
      font-size: 20px;
    }

    .sticky-bar-text {
      display: flex;
      flex-direction: column;
    }

    .sticky-bar-lbl {
      font-size: 11px;
      font-weight: 700;
      color: #FFFFFF; /* High contrast White */
      line-height: 1.2;
    }

    .sticky-bar-sub {
      font-size: 10px;
      color: #C8D9E6; /* Sky Blue */
      font-weight: 600;
    }

    .sticky-bar-ctas {
      display: flex;
      gap: 8px;
    }

    .sticky-bar-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 14px;
      border-radius: 3px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-decoration: none;
      transition: var(--transition-lux);
    }

    .sticky-bar-btn.call {
      border: 1px solid #C8D9E6; /* Sky Blue outline */
      color: #C8D9E6;
      background: transparent;
    }

    .sticky-bar-btn.wa {
      background-color: var(--whatsapp);
      color: #ffffff;
      border: none;
    }

    @media (max-width: 768px) {
      .sticky-bottom-bar {
        display: block;
      }
      body {
        padding-bottom: 74px; /* prevent content hidden behind mobile bar */
      }
    }

    /* C. Scroll to top button */
    .scroll-top-btn {
      position: fixed;
      bottom: 170px;
      right: 20px;
      width: 42px;
      height: 42px;
      background-color: rgba(201, 168, 76, 0.15);
      border: 1px solid rgba(201, 168, 76, 0.40);
      border-radius: 2px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--gold);
      cursor: pointer;
      z-index: 997;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      font-size: 18px;
      font-weight: bold;
    }

    .scroll-top-btn.visible {
      opacity: 1;
      visibility: visible;
    }

    .scroll-top-btn:hover {
      background-color: var(--gold);
      color: var(--bg-dark);
      transform: translateY(-2px);
    }

    @media (max-width: 768px) {
      .scroll-top-btn {
        bottom: 100px;
        left: 20px;
        right: auto;
      }
    }

    /* ── MOBILE DRAWER NAVIGATION STYLING ── */
    .mobile-drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(14, 11, 8, 0.7);
      z-index: 10005;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .mobile-drawer-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }
    .mobile-drawer-panel {
      position: absolute;
      top: 0;
      right: -320px;
      width: 300px;
      height: 100%;
      background: var(--bg-card); /* Cohesive royal dark background */
      border-left: 1px solid rgba(201, 168, 76, 0.40); /* Beautiful left gold trim */
      box-shadow: -10px 0 35px rgba(0,0,0,0.65);
      display: flex;
      flex-direction: column;
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mobile-drawer-overlay.active .mobile-drawer-panel {
      right: 0;
    }
    .drawer-header {
      padding: 24px;
      border-bottom: 1px solid rgba(201, 168, 76, 0.20); /* Luxury gold divider */
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .drawer-brand {
      font-family: "Cormorant Garamond", serif;
      font-weight: 700;
      font-size: 24px;
      color: var(--gold); /* Gold brand text */
    }
    .drawer-close-btn {
      background: none;
      border: none;
      color: var(--areia); /* Soft sand close button */
      font-size: 32px;
      cursor: pointer;
      line-height: 1;
      transition: color 0.3s;
    }
    .drawer-close-btn:hover {
      color: var(--gold);
    }
    .drawer-body {
      flex: 1;
      padding: 30px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .drawer-nav a {
      font-family: "Inter", sans-serif;
      font-weight: 500;
      font-size: 16px;
      color: var(--white-soft); /* Cohesive cream links */
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.3s;
      text-align: left;
    }
    .drawer-nav a:hover {
      color: var(--gold);
    }
    .drawer-footer {
      margin-top: auto;
    }
    .drawer-wa-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--gold); /* primary brand color */
      color: var(--bg-dark);
      padding: 14px 20px;
      border-radius: 50px; /* rounded pill shape */
      text-decoration: none;
      font-family: "Inter", sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.05em;
      transition: background-color 0.3s, transform 0.3s;
    }
    .drawer-wa-btn:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }
    .drawer-wa-btn svg {
      display: inline-block;
      vertical-align: middle;
    }

    /* ── SCROLL REVEAL & INTERSECTION ANIMATION STYLES ── */
    .reveal-item {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-item.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── CUSTOM LIGHTBOX MODAL ── */
    .lightbox-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(14, 11, 8, 0.96);
      z-index: 10010;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .lightbox-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }
    .lightbox-close {
      position: absolute;
      top: 30px;
      right: 30px;
      background: none;
      border: none;
      color: var(--areia);
      font-size: 44px;
      cursor: pointer;
      transition: color 0.3s;
      line-height: 1;
    }
    .lightbox-close:hover {
      color: var(--gold-light);
    }
    .lightbox-content {
      max-width: 90%;
      max-height: 80%;
      border: 1px solid var(--border-luxury);
      box-shadow: 0 20px 60px rgba(0,0,0,0.8);
      transform: scale(0.95);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .lightbox-overlay.active .lightbox-content {
      transform: scale(1);
    }
    .lightbox-content img {
      display: block;
      max-width: 100%;
      max-height: 80vh;
      object-fit: contain;
    }

    /* ── HERO BOOKING WIDGET STYLE ── */
    .hero-booking-widget {
      z-index: 3;
      padding-left: 20px;
      width: 100%;
    }
    
    .booking-widget-card {
      background: rgba(17, 24, 34, 0.95) !important; /* Deep navy backdrop */
      border: 1px solid rgba(200, 217, 230, 0.15) !important;
      border-radius: 4px;
      padding: 30px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45) !important;
      width: 100%;
      max-width: 440px;
      margin-left: auto;
    }
    
    .booking-widget-title {
      font-size: 24px;
      font-weight: 600;
      color: #FFFFFF; /* High contrast White */
      text-align: center;
      margin-bottom: 8px;
      letter-spacing: 0.05em;
    }
    
    .booking-widget-divider {
      width: 40px;
      height: 1px;
      background-color: #C8D9E6; /* Sky Blue */
      margin: 0 auto 20px;
    }
    
    .booking-widget-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      text-align: left;
    }
    
    .form-group label {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 11px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #C8D9E6; /* Sky Blue */
    }
    
    .form-group input, .form-group select {
      background-color: rgba(11, 16, 23, 0.6) !important; /* Dark input background */
      border: 1px solid rgba(200, 217, 230, 0.2) !important;
      color: #FFFFFF !important; /* White input text */
      padding: 12px 14px;
      font-family: 'Inter', sans-serif;
      font-size: 13.5px;
      border-radius: 2px;
      transition: var(--transition-lux);
      width: 100%;
      outline: none;
      box-sizing: border-box;
    }
    
    .form-group select option {
      background-color: #111822; /* Dark option background */
      color: #FFFFFF; /* White option text */
    }
    
    .form-group input::placeholder {
      color: rgba(200, 217, 230, 0.5) !important; /* Clear placeholder */
    }
    
    .form-group input:focus, .form-group select:focus {
      border-color: #C8D9E6;
      background-color: rgba(11, 16, 23, 0.8);
      box-shadow: 0 0 10px rgba(200, 217, 230, 0.15);
    }
    
    .form-row {
      display: flex;
      gap: 14px;
    }
    
    .col-4 { width: 33.33%; }
    .col-6 { width: 50%; }
    .col-8 { width: 66.66%; }
    
    .booking-widget-submit {
      background-color: var(--whatsapp);
      color: #ffffff;
      border: none;
      padding: 15px;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 3px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: var(--transition-lux);
      margin-top: 8px;
      width: 100%;
    }
    
    .booking-widget-submit:hover {
      background-color: #1da851;
      box-shadow: 0 8px 28px rgba(37,211,102,0.35);
      transform: translateY(-1px);
    }
    
    /* Responsive overrides for booking widget on tablet and mobile */
    @media (max-width: 1023px) {
      .hero-section, body.has-banner .hero-section {
        height: auto;
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 80px;
      }
      .hero-inner {
        grid-template-columns: 100% !important;
        gap: 50px;
      }
      .hero-booking-widget {
        padding-left: 0;
      }
      .booking-widget-card {
        margin: 0 auto;
      }
    }
    
    @media (max-width: 767px) {
      .hero-section, body.has-banner .hero-section {
        padding-top: 40px;
        padding-bottom: 60px;
      }
      .booking-widget-card {
        padding: 24px 18px;
        margin-bottom: 20px;
      }
      .form-row {
        flex-direction: column;
        gap: 16px;
      }
      .form-row .col-4, .form-row .col-6, .form-row .col-8 {
        width: 100%;
      }
    }

    /* ── CUSTOM FLATPICKR LUXURY DARK THEME ── */
    .flatpickr-calendar {
      background: var(--bg-card) !important;
      border: 1px solid rgba(47, 65, 86, 0.15) !important;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
      font-family: 'Inter', sans-serif !important;
      border-radius: 4px !important;
      padding: 8px !important;
    }
    .flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
      border-bottom-color: var(--bg-card) !important;
    }
    .flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
      border-top-color: var(--bg-card) !important;
    }
    .flatpickr-months {
      margin-bottom: 8px !important;
    }
    .flatpickr-months .flatpickr-month {
      background: var(--bg-card) !important;
      color: var(--white-soft) !important;
    }
    .flatpickr-current-month {
      font-weight: 500 !important;
      color: var(--white-soft) !important;
    }
    .flatpickr-current-month .numInputWrapper span.arrowUp:after {
      border-bottom-color: var(--gold) !important;
    }
    .flatpickr-current-month .numInputWrapper span.arrowDown:after {
      border-top-color: var(--gold) !important;
    }
    .flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
      color: var(--gold) !important;
      fill: var(--gold) !important;
      padding: 10px !important;
    }
    .flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
      color: var(--gold-light) !important;
      fill: var(--gold-light) !important;
    }
    .flatpickr-weekdays {
      background: transparent !important;
    }
    span.flatpickr-weekday {
      color: rgba(47, 65, 86, 0.4) !important;
      font-weight: 500 !important;
    }
    .flatpickr-day {
      color: var(--white-soft) !important;
      border-radius: 2px !important;
      transition: all 0.15s ease;
    }
    .flatpickr-day:hover, .flatpickr-day:focus {
      background: var(--bg-dark) !important;
      color: var(--white-soft) !important;
      border-color: transparent !important;
    }
    .flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange,
    .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange,
    .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus,
    .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover {
      background: var(--gold) !important;
      border-color: var(--gold) !important;
      color: #ffffff !important;
      font-weight: 600 !important;
    }
    .flatpickr-day.inRange {
      background: rgba(200, 217, 230, 0.3) !important;
      border-color: transparent !important;
      color: var(--white-soft) !important;
      box-shadow: none !important;
    }
    .flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
      color: rgba(47, 65, 86, 0.18) !important;
      background: transparent !important;
    }
    .flatpickr-day.today {
      border-color: rgba(201, 168, 76, 0.4) !important;
    }
    .flatpickr-day.today:hover {
      border-color: transparent !important;
      background: rgba(255, 255, 255, 0.08) !important;
    }
/* Responsive Gallery Grids */
.gallery-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  margin-top: 24px;
}

.gallery-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  margin-top: 24px;
}

@media (max-width: 1023px) {
  .gallery-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
    margin-top: 16px;
  }
  .gallery-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
    margin-top: 16px;
  }
}

@media (max-width: 500px) {
  .gallery-grid-3, .gallery-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    margin-top: 12px;
  }
}

/* Gallery Container style to isolate nested grid layouts */
.gallery-container {
  display: block;
  width: 100%;
}
