  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
                Roboto, Helvetica, Arial, sans-serif;
    padding-top: 72px;
    /* padding-bottom: 90px; */
    color: #222;
  }
  .section-gap {
    /* padding: 110px 16px; */
  }
  .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #bd9400;
    margin: 14px auto 0;
  }


  /*NAVBAR BASE*/

  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 9999;
  }

  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /*PROJECT LOGO / TITLE*/

  #project-name-header {
    display: flex;
    align-items: center;
    padding: 8px 0;              /* 👈 vertical breathing space */
    white-space: nowrap;
  }

  /* If using image logo */
  #project-name-header img {
    display: block;
    height: 35px;                /* desktop */
    width: auto;
    object-fit: contain;
  }

  /* Text fallback (if no image) */
  #project-name-header {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    letter-spacing: 0.4px;
  }

  /*  DESKTOP NAV*/

  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #333333;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: #bd9400;
  }

  /*HAMBURGER BUTTON*/

  #menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 24px;
    padding: 0;
  }

  /* Pure CSS hamburger icon */
  .hamburger,
  .hamburger::before,
  .hamburger::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #111111;
    border-radius: 2px;
    position: relative;
  }

  .hamburger::before {
    position: absolute;
    top: -8px;
  }

  .hamburger::after {
    position: absolute;
    top: 8px;
  }

  /* MOBILE MENU (SMOOTH + BLUR) */

  #mobile-menu {
    position: absolute;
    top: 72px;                   /* aligns under navbar */
    left: 0;
    width: 100%;

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    display: flex;
    flex-direction: column;
    align-items: center;

    overflow: hidden;

    /* closed state */
    max-height: 0;
    opacity: 0;
    transform: translateY(-12px);

    transition:
      max-height 0.45s ease,
      opacity 0.35s ease,
      transform 0.35s ease,
      backdrop-filter 0.45s ease;

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }

  /* OPEN STATE (JS removes .hidden) */
  #mobile-menu:not(.hidden) {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    backdrop-filter: blur(3px); /* blur → clear */
  }

  /* Mobile links */
  #mobile-menu a {
    width: 100%;
    padding: 16px 0;
    text-align: center;

    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    color: #111111;
    transition:
      color 0.3s ease,
      background-color 0.3s ease;
  }

  #mobile-menu a:hover {
    color: #bd9400;
    background-color: rgba(189, 148, 0, 0.08);
  }

  /*HIDDEN (USED BY JS) */

  .hidden {
    max-height: 0 !important;
    opacity: 0 !important;
    transform: translateY(-12px) !important;
    pointer-events: none;
  }

  /* RESPONSIVE*/

  @media (max-width: 1024px) {
    #project-name-header img {
      height: 36px;
    }
  }

  @media (max-width: 768px) {

    /* hide desktop nav */
    .nav-links {
      display: none;
    }

    /* show hamburger */
    #menu-toggle {
      display: block;
    }

    #project-name-header img {
      height: 42px;
    }
  }

  @media (max-width: 480px) {
    #project-name-header img {
      height: 48px;
    }
  }
  /* =========================
    HERO BASE
  ========================= */

  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  /* BACKGROUND SLIDER */

  .hero-background {
    position: absolute;
    inset: 0;
  }

  .hero-background > div {
    position: absolute;
    inset: 0;
  }

  /*DARK OVERLAY*/

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.35)
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 16px;
  }

  /* HERO CONTENT (CENTERED)*/

  .hero-content {
    max-width: 900px;
    color: #ffffff;
    z-index: 2;
  }

  /* Project Tagline / subtitle */
  .hero-content p {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #e5c27b; /* luxury gold */
  }

  /* Project Name */
  .hero-content h1 {
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 10px;
  }

  /* Location */
  .hero-content h1 svg {
    margin-right: 6px;
  }

  .hero-content h1 span {
    display: block;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-top: 8px;
  }

  /* Price */
  .hero-content .sub-title {
    font-size: clamp(18px, 3vw, 26px);
    margin-top: 14px;
    color: rgba(255,255,255,0.85);
  }

  /* DOTS*/

  .hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 32px;
  }

  .hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .hero-dots button:hover {
    background: #ffffff;
  }

  .hero-dots button.bg-gold {
    background: #e5c27b;
    width: 30px;
    border-radius: 20px;
  }

  /* RESPONSIVE*/

  @media (max-width: 768px) {
    .hero {
      height: 90vh;
    }

    .hero-content {
      padding-top: 60px;
    }
  }
  /* =========================
    ABOUT / OVERVIEW SECTION
  ========================= */

  .about-section {
    padding: 100px 16px;
    background: #ffffff;
  }

  .about-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  /* LEFT CONTENT*/

  .about-content {
    max-width: 540px;
  }

  .about-title {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #111111;
  }

  .about-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 40px;
  }

  /* STATS*/

  .about-stats {
    display: flex;
    gap: 40px;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
  }

  .stat-value {
    font-size: 28px;
    font-weight: 600;
    color: #bd9400; /* luxury gold */
  }

  .stat-label {
    font-size: 14px;
    color: #666666;
    margin-top: 4px;
  }

  /*IMAGE*/

  .about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
  }

  /*RESPONSIVE*/

  @media (max-width: 992px) {
    .about-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .about-content {
      max-width: 100%;
    }

    .about-image img {
      height: 360px;
    }
  }

  @media (max-width: 576px) {
    .about-section {
      padding: 70px 16px;
    }

    .about-title {
      font-size: 26px;
    }

    .about-stats {
      /* flex-direction: column; */
      gap: 20px;
    }
  }
  /* =========================
    CONFIGURATION SECTION
  ========================= */

  .configuration-section {
    padding: 100px 16px;
    background: #f9f9f9;
  }

  .configuration-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /*SECTION HEADER*/

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-title {
      padding: 30px 14px 0px 14px;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 16px;
    color: #666666;
    max-width: 832px;
    margin: 0 auto;
  }

  /*GRID*/

  .configuration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /*CARD*/

  .config-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;

    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .config-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  }

  .config-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111111;
  }

  .config-area {
    font-size: 14px;
    color: #555555;
    margin-bottom: 12px;
  }

  .config-price {
    font-size: 18px;
    font-weight: 500;
    color: #bd9400;
    margin-bottom: 30px;
  }

  /* BUTTON*/

  .config-btn {
    border: 1px solid #bd9400;
    background: transparent;
    color: #bd9400;
    padding: 12px 26px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .config-btn:hover {
    background: #bd9400;
    color: #ffffff;
  }

  /*RESPONSIVE */

  @media (max-width: 992px) {
    .configuration-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .configuration-section {
      padding: 70px 16px;
    }

    .configuration-grid {
      grid-template-columns: 1fr;
    }

    .section-title {
      font-size: 26px;
    }
  }
  /* =========================
    SCROLL REVEAL (PREMIUM)
  ========================= */

  .reveal {
    opacity: 0;
    transform: translateY(24px); /* subtle movement */
    transition:
      opacity 1.1s ease,
      transform 1.1s ease;
    will-change: opacity, transform;
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Optional small delays (keep minimal) */
  .reveal.delay-1 { transition-delay: 0.08s; }
  .reveal.delay-2 { transition-delay: 0.16s; }
  .reveal.delay-3 { transition-delay: 0.24s; }
  /* AMENITIES IMAGE GRID (FINAL)*/

  .amenities-section {
    padding: 50px 16px;
    background: #ffffff;
  }

  .amenities-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Grid */
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
  }

  /* Card */
  .amenity-item {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
  }

  .amenity-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  /* Overlay */
  .amenity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.25)
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.45s ease;
  }

  .amenity-overlay h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
  }

  /* Hover only on devices that support hover */
  @media (hover: hover) {
    .amenity-item:hover img {
      transform: scale(1.06);
    }

    .amenity-item:hover .amenity-overlay {
      opacity: 1;
    }
  }

  /* =========================
    RESPONSIVE FIXES
  ========================= */

  @media (max-width: 576px) {
    .amenities-section {
      padding: 70px 16px;
    }

    .amenities-grid {
      grid-template-columns: repeat(2, 1fr); /* ✅ 2 columns on mobile */
      gap: 16px;
    }

    .amenity-item {
      height: 200px; /* better proportion for mobile */
    }

    /* Title always visible on mobile */
    .amenity-overlay {
      opacity: 1;
      align-items: center;
    }

    .amenity-overlay h3 {
      font-size: 14px;
      letter-spacing: 0.8px;
      text-align: center;
    }
  }


  /* =========================
    LOCATION SECTION
  ========================= */

  .location-section {
    padding: 100px 16px;
    background: #f9f9f9;
  }

  /* .location-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  } */

  /* LEFT CONTENT */

  .location-content .section-title {
    margin-bottom: 12px;
  }

  .location-content .section-subtitle {
    margin-bottom: 30px;
  }

  /* LOCATION LIST */

  .location-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .location-list li {
    font-size: 15px;
    color: #444;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .location-list li strong {
    color: #111;
  }

  /* MAP IMAGE */

  .location-map img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  }

  /* =========================
    RESPONSIVE
  ========================= */

  @media (max-width: 992px) {
    .location-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .location-map img {
      height: 340px;
    }
  }

  @media (max-width: 576px) {
    .location-section {
      padding: 70px 16px;
    }

    .location-map img {
      height: 260px;
    }

    .location-list li {
      font-size: 14px;
    }
  }
  /* =========================
    FOOTER (PREMIUM)
  ========================= */

  .footer {
    background: #2f2f2f; /* premium dark grey */
    color: #d1d1d1;
    padding: 60px 16px 40px;
    font-size: 14px;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* =========================
    TOP ROW
  ========================= */

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 30px;
  }

  .footer-brand p {
    font-size: 14px;
    color: #cccccc;
  }

  .footer-brand a {
    color: #bd9400;
    text-decoration: none;
  }

  .footer-links {
    display: flex;
    gap: 24px;
  }

  .footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
  }

  .footer-links a:hover {
    color: #bd9400;
  }

  /* =========================
    DISCLAIMER + QR
  ========================= */

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
  }

  /* Disclaimer text */
  .footer-disclaimer p {
    line-height: 1.8;
    font-size: 13px;
    color: #bbbbbb;
  }

  /* QR block */
  .footer-qr {
    text-align: center;
  }

  .footer-qr img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 6px;
    background: #ffffff;
    padding: 6px;
  }

  .footer-qr span {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #cccccc;
    letter-spacing: 1px;
  }
  .footer-disclaimer {
    max-width: 820px;
  }

  .footer-disclaimer p {
    font-size: 12.5px;
    line-height: 1.9;
  }


  /* =========================
    RESPONSIVE
  ========================= */

  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }

    .footer-bottom {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .footer-qr {
      text-align: center;
    }
  }

  @media (max-width: 576px) {
    .section-title {
      letter-spacing: 1px;
    }

    .section-subtitle {
      font-size: 14px;
      padding: 0 12px;
    }
  }
  /* =========================
    ENQUIRY POPUP (FIXED - ABOVE STICKY BUTTONS)
  ========================= */

  .form-popup {
    position: fixed;
    inset: 0;
    z-index: 10000000; /* ← Much higher than sticky buttons (999999) */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  /* Show state */
  .form-popup:not(.hidden) {
    opacity: 1;
    visibility: visible;
  }

  /* Hidden state */
  .form-popup.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* Overlay (smooth fade) */
  .form-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
  }

  .form-popup:not(.hidden) .form-overlay {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
  }

  /* Form box (smooth scale animation) */
  .form-box {
    position: relative;
    background: #ffffff;
    width: 92%;
    max-width: 520px;
    border-radius: 14px;
    padding: 32px;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    
    /* Initial state */
    transform: scale(0.85) translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.4s ease;
  }

  /* Show animation */
  .form-popup:not(.hidden) .form-box {
    transform: scale(1) translateY(0);
    opacity: 1;
  }

  /* Close button */
  .form-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #333;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .form-close:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: rotate(90deg);
  }

  /* =========================
    FORM UI
  ========================= */

  .enquiry-form {
    margin-top: 10px;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    display: block;
  }

  .form-group input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease;
  }

  .form-group input:focus {
    outline: none;
    border-color: #bd9400;
    box-shadow: 0 0 0 3px rgba(189, 148, 0, 0.1);
  }

  /* Radio buttons */
  .radio-group {
    display: flex;
    gap: 20px;
    margin-top: 6px;
  }

  .radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
  }

  .radio-option input {
    accent-color: #bd9400;
    width: 18px;
    height: 18px;
    cursor: pointer;
  }

  .radio-option span {
    user-select: none;
  }

  /* Submit button */
  .form-submit {
    margin-top: 24px;
    width: 100%;
    height: 46px;
    background: #bd9400;
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .form-submit:hover {
    background: #a67f00;
    transform: translateY(-2px);
  }

  .form-submit:active {
    transform: translateY(0);
  }

  /* Disclaimer */
  .form-disclaimer {
    margin-top: 12px;
    font-size: 10px;
    text-align: center;
    color: #777;
    line-height: 16px;
  }

  /* =========================
    STICKY CTA (KEEP BELOW POPUP)
  ========================= */

  .mobile-cta {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999; /* ← Lower than popup (10000000) */
    
    display: flex;
    gap: 10px;
    
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    padding: 6px;
    border-radius: 40px;
    
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  }

  /* Buttons */
  .cta-btn {
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  /* Call */
  .cta-btn.call {
    background: #bd9400;
    color: #ffffff;
  }

  .cta-btn.call:hover {
    background: #a67f00;
    transform: translateY(-2px);
  }

  /* Enquire Button */
  .cta-btn.enquire {
    background: transparent;
    color: #111111;
    border: 1px solid rgba(0, 0, 0, 0.25);
  }

  .cta-btn.enquire:hover {
    border-color: #bd9400;
    color: #bd9400;
    transform: translateY(-2px);
  }

  /* WhatsApp */
  .cta-btn.whatsapp {
    background: transparent;
    color: #111111;
    border: 1px solid rgba(0, 0, 0, 0.25);
  }

  .cta-btn.whatsapp:hover {
    border-color: #bd9400;
    color: #bd9400;
    transform: translateY(-2px);
  }

  /* =========================
    RESPONSIVE
  ========================= */

  @media (max-width: 576px) {
    .form-box {
      width: 94%;
      padding: 24px;
      max-height: 90vh;
      overflow-y: auto;
    }
    
    .form-grid {
      gap: 14px;
    }
    
    .mobile-cta {
      bottom: 12px;
    }
    
    .cta-btn {
      padding: 8px 14px;
      font-size: 12px;
    }
  }

  /* =========================
    PREVENT SCROLL WHEN POPUP OPEN
  ========================= */

  body.popup-open {
    overflow: hidden;
  }

  .contact-form-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 16px;
  }

  .contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  /* =========================
    LEFT SIDE: INFO
  ========================= */

  .contact-info-side {
    color: #ffffff;
    padding: 40px 0;
  }

  .contact-main-title {
    font-size: 36px;
    font-weight: 600;
    color: #bd9400;
    margin-bottom: 16px;
    letter-spacing: 1px;
  }

  .contact-tagline {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    max-width: 480px;
  }

  /* Contact Details */

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(189, 148, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #bd9400;
  }

  .contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
  }

  .contact-item a {
    font-size: 16px;
    color: #bd9400;
    text-decoration: none;
    font-weight: 500;
  }

  .contact-item a:hover {
    color: #d4af37;
  }

  .contact-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
  }

  /* =========================
    RIGHT SIDE: FORM CARD
  ========================= */

  .contact-form-side {
    position: relative;
  }

  .form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .form-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
  }

  .form-card-subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 32px;
  }

  /* Form Fields */

  .premium-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
  }

  .form-field input[type="text"],
  .form-field input[type="email"],
  .form-field input[type="tel"] {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
  }

  .form-field input:focus {
    outline: none;
    border-color: #bd9400;
    box-shadow: 0 0 0 3px rgba(189, 148, 0, 0.1);
  }

  /* Radio Buttons Inline */

  .radio-group-inline {
    display: flex;
    gap: 24px;
    margin-top: 8px;
  }

  .radio-option-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  .radio-option-inline input {
    width: 18px;
    height: 18px;
    accent-color: #bd9400;
    cursor: pointer;
  }

  .radio-option-inline span {
    font-size: 14px;
    color: #333333;
    user-select: none;
  }

  /* Submit Button */

  .premium-submit-btn {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #bd9400 0%, #d4af37 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(189, 148, 0, 0.3);
  }

  .premium-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(189, 148, 0, 0.4);
    background: linear-gradient(135deg, #a67f00 0%, #bd9400 100%);
  }

  .premium-submit-btn:active {
    transform: translateY(0);
  }

  /* =========================
    RESPONSIVE
  ========================= */

  @media (max-width: 992px) {
    .contact-form-container {
      grid-template-columns: 1fr;
      gap: 50px;
    }

    .contact-info-side {
      padding: 0;
    }

    .contact-main-title {
      font-size: 28px;
    }
  }

  @media (max-width: 576px) {
    .contact-form-section {
      padding: 70px 16px;
    }

    .form-card {
      padding: 28px 20px;
    }

    .form-card-title {
      font-size: 20px;
    }

    .radio-group-inline {
      gap: 16px;
    }

    .contact-details {
      gap: 24px;
    }

    .contact-item {
      gap: 14px;
    }
  }

  /* =========================
    FAQ SECTION
  ========================= */

  .faq-section {
    background: #ffffff;
  }

  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-accordion {
    margin-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }

  .faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  /* Question */
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;

    font-size: 16px;
    font-weight: 500;
    color: #111111;
    text-align: left;

    transition: color 0.3s ease;
  }

  .faq-question:hover {
    color: #bd9400;
  }

  /* Icon */
  .faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: #bd9400;
    transition: transform 0.35s ease;
  }

  /* Answer */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
  }

  /* Active state */
  .faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
  }

  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }

  /* Closing text */
  .faq-closing-text {
    margin-top: 40px;
    font-size: 15px;
    line-height: 1.9;
    color: #444444;
    text-align: center;
  }

  /* Responsive */
  @media (max-width: 576px) {
    .faq-question {
      font-size: 15px;
    }

    .faq-answer {
      font-size: 14px;
    }
  }
  /* =========================
    WHY CHOOSE SECTION
  ========================= */

  .why-choose-section {
    background: #ffffff;
  }

  .why-choose-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .why-choose-content {
    max-width: 880px;
    margin: 0 auto;
  }

  .why-choose-intro {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 36px;
  }

  .why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
  }

  .why-choose-list li {
    padding: 14px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .why-choose-list li strong {
    color: #111;
  }

  .why-choose-closing {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    text-align: center;
  }

  /* Mobile */
  @media (max-width: 576px) {
    .why-choose-intro,
    .why-choose-closing {
      font-size: 15px;
    }

    .why-choose-list li {
      font-size: 14px;
    }
  }

  .overview-highlights-section {
    background: #f9f9f9;
    padding: 100px 16px;
  }

  .overview-highlights-container {
    max-width: 1300px;
    margin: 0 auto;
  }

  /* Section Header */
  .section-title-bold {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    color: #111111;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }

  .section-seo-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
  }

  /* 3-Column Grid Layout */
  .overview-highlights-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
  }

  /* Columns */
  .highlights-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* Individual Highlight Point */
  .highlight-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  /* Icon Circle */
  .highlight-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(189, 148, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bd9400;
  }

  /* Text Content */
  .highlight-point h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 6px;
  }

  .highlight-point p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
  }

  /* Center Image */
  .highlights-center-image {
    width: 380px;
    min-width: 380px;
  }

  .highlights-center-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  }

  /* =========================
    RESPONSIVE
  ========================= */

  /* Tablet (iPad) */
  @media (max-width: 1200px) {
    .overview-highlights-grid {
      gap: 40px;
    }

    .highlights-center-image {
      width: 320px;
      min-width: 320px;
    }

    /* .highlights-center-image img {
      height: 420px;
    } */

    .highlight-point {
      gap: 12px;
    }

    .highlight-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
    }
  }

  /* Mobile - Stack Vertically */
  @media (max-width: 992px) {
    .section-title-bold {
      font-size: 28px;
    }

    .section-seo-text {
      font-size: 15px;
      margin-bottom: 50px;
    }

    .overview-highlights-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    /* Image comes AFTER left points, BEFORE right points */
    .highlights-left {
      order: 1;
    }

    .highlights-center-image {
      order: 2;
      width: 100%;
      min-width: 100%;
      max-width: 500px;
      margin: 0 auto;
    }

    .highlights-center-image img {
      height: 360px;
    }

    .highlights-right {
      order: 3;
    }

    .highlights-column {
      gap: 28px;
    }

    .highlight-point h4 {
      font-size: 15px;
    }

    .highlight-point p {
      font-size: 13px;
    }
  }

  /* Small Mobile */
  @media (max-width: 576px) {
    .overview-highlights-section {
      padding: 70px 16px;
    }

    .section-title-bold {
      font-size: 24px;
    }

    .section-seo-text {
      font-size: 14px;
    }

    .highlights-center-image img {
      height: 300px;
    }

    .highlights-column {
      gap: 24px;
    }

    .highlight-point {
      gap: 12px;
    }

    .highlight-icon {
      width: 36px;
      height: 36px;
      min-width: 36px;
    }

    .highlight-icon svg {
      width: 18px;
      height: 18px;
    }
  }
  footer {
    margin-bottom: 0;
  }

/* =========================
   PREMIUM OTP UI (FINAL)
========================= */

.otp-section {
  position: fixed;
  inset: 0;
  z-index: 9999999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.45)
  );
}

/* Card */
.otp-container {
  background: #ffffff;
  max-width: 420px;
  width: 92%;
  padding: 36px 28px;
  border-radius: 18px;
  text-align: center;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: otpFadeUp 0.45s ease forwards;
}

/* Title */
.otp-container .section-title {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 6px;
}

/* Subtitle */
.otp-container .section-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 22px;
}

/* Timer */
.otp-timer {
  font-size: 16px;
  font-weight: 600;
  color: #bd9400;
  letter-spacing: 1px;
}

/* OTP boxes */
.otp-inputs {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 26px 0;
}

.otp-box {
  width: 52px;
  height: 58px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;

  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.2);
  background: #fafafa;

  transition: all 0.25s ease;
}

.otp-box:focus {
  outline: none;
  border-color: #bd9400;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(189,148,0,0.15);
  transform: translateY(-2px);
}

/* Button */
.otp-submit {
  width: 100%;
  height: 50px;
  border-radius: 30px;
  border: none;

  background: linear-gradient(135deg, #bd9400 0%, #d4af37 100%);
  color: #fff;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;

  cursor: pointer;
  box-shadow: 0 8px 22px rgba(189,148,0,0.35);
  transition: all 0.3s ease;
}

.otp-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(189,148,0,0.45);
}

/* Resend */
.otp-resend {
  margin-top: 16px;
  font-size: 13px;
  color: #666;
}

.otp-resend span {
  color: #bd9400;
  cursor: pointer;
}

/* Animation */
@keyframes otpFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .otp-box {
    width: 46px;
    height: 52px;
    font-size: 20px;
  }
}

  /* =========================
    FORM LOGO ONLY (ADJUSTABLE)
  ========================= */

  .form-header-logo {
    /* 🔧 Size controls (change only these values) */
    --form-logo-height-desktop: 54px;
    --form-logo-height-mobile: 48px;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
  }

  .form-header-logo img {
    height: var(--form-logo-height-desktop);
    width: auto;
    object-fit: contain;
  }

  /* Mobile */
  @media (max-width: 576px) {
    .form-header-logo img {
      height: var(--form-logo-height-mobile);
    }
  }

  /* =========================
    SINGLE ITEM SLIDER
  ========================= */

  .amenities-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
    position: relative;
  }

  .amenities-col .amenity-item {
    transition: transform 0.9s ease, opacity 0.9s ease;
  }

  /* ENTRY animations */
  .enter-left {
    animation: enterFromLeft 0.9s ease forwards;
  }

  .enter-right {
    animation: enterFromRight 0.9s ease forwards;
  }

  @keyframes enterFromLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes enterFromRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  /* Hide original grid – used only as data source */
  #amenitiesSource {
    display: none;
  }

  /* Main slider layout */
  .amenities-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
  }
  .amenities-col .amenity-item {
    height: 320px; /* SAME as original */
  }
  /* =========================
    SINGLE IMAGE PER SIDE
  ========================= */

  .amenities-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
  }

  .amenities-col {
    position: relative;
    overflow: hidden;
  }

  /* ONE card only */
  .amenities-col .amenity-item {
    height: 360px;
    width: 100%;
  }

  /* animations */
  .enter-left {
    animation: slideFromLeft 1s ease forwards;
  }

  .enter-right {
    animation: slideFromRight 1s ease forwards;
  }

  @keyframes slideFromLeft {
    from {
      opacity: 0;
      transform: translateX(-60px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideFromRight {
    from {
      opacity: 0;
      transform: translateX(60px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Mobile: stack */
  @media (max-width: 768px) {
    .amenities-slider {
      grid-template-columns: 1fr;
    }
  }
  /* =========================
    OVERVIEW → MOBILE BULLET MODE
  ========================= */

  @media (max-width: 576px) {

    /* Hide icons on mobile */
    .highlight-icon {
      display: none;
    }

    /* Convert each point to bullet-style */
    .highlight-point {
      position: relative;
      padding-left: 18px;
      gap: 0;
    }

    .highlight-point::before {
      content: "•";
      position: absolute;
      left: 0;
      top: 2px;
      font-size: 18px;
      color: #bd9400;
      line-height: 1;
    }

    /* Flatten text to single statement */
    .highlight-point h4 {
      display: inline;
      font-size: 14px;
      font-weight: 600;
    }

    .highlight-point p {
      display: inline;
      font-size: 14px;
      margin-left: 6px;
      color: #555;
    }

    /* Remove extra spacing */
    .highlights-column {
      gap: 18px;
    }

    /* Keep center image same behavior */
    .highlights-center-image {
      margin: 20px auto 10px;
    }
  }
  /* =========================
    LOCATION HEADER ALIGN FIX
  ========================= */

  .location-section > .section-title {
    text-align: center;
    margin-bottom: 10px;
  }

  .location-section > .section-subtitle {
    text-align: center;
    margin-bottom: 60px;
  }

  /* Golden line already via ::after, just ensure centering */
  .location-section .section-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  /* Mobile spacing tune */
  @media (max-width: 576px) {
    .location-section > .section-title {
      margin-bottom: 8px;
    }

    .location-section > .section-subtitle {
      margin-bottom: 40px;
      padding: 0 12px;
    }
  }
  /* =========================
    LOCATION – PREMIUM MAP
  ========================= */

  .location-map {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  }

  /* Landscape ratio */
  .location-map img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
  }

  /* Invisible overlay – blocks clicks */
  .map-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    cursor: default;
  }

  /* =========================
    LOCATION LIST – GRID
  ========================= */

  .location-list-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0;
    list-style: none;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
  }

  .location-list-grid li {
    font-size: 15px;
    color: #444;
    padding-left: 18px;
    position: relative;
  }

  /* Bullet */
  .location-list-grid li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: #bd9400;
    font-size: 18px;
  }

  .location-list-grid strong {
    color: #111;
  }

  /* =========================
    RESPONSIVE
  ========================= */

  @media (max-width: 992px) {
    .location-map img {
      height: 340px;
    }

    .location-list-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px 24px;
    }
  }

  @media (max-width: 576px) {
    .location-map img {
      height: 260px;
    }

    .location-list-grid {
      grid-template-columns: 1fr;
      gap: 14px;
      margin-top: 30px;
    }

    .location-list-grid li {
      font-size: 14px;
    }
  }
  /* =========================
    LOCATION – FINAL LAYOUT
  ========================= */

  .location-section {
    padding: 30px 16px;
    background: #f9f9f9;
  }

  .location-section .section-title,
  .location-section .section-subtitle {
    text-align: center;
  }

  /* Map full width */
  .location-map {
    max-width: 1200px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
  }

  /* Location list below map */
  .location-list-grid {
    max-width: 1200px;
    margin: 40px auto 0;
  }
  /* =========================
    REAL MAP EMBED (LOCKED)
  ========================= */

  .location-map {
    position: relative;
    max-width: 1200px;
    margin: 50px auto 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  }

  /* Landscape ratio */
  .location-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
  }

  /* Transparent overlay — disables interaction */
  .map-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    cursor: default;
    z-index: 5;
  }
  /* =========================
    OVERVIEW PRIMARY CTA
  ========================= */

  .overview-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }

  /* Target only this button */
  .overview-cta-row .cta-btn.enquire {
    background: linear-gradient(135deg, #bd9400 0%, #d4af37 100%);
    color: #ffffff;

    border: none;
    border-radius: 28px;

    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    cursor: pointer;
    transition: all 0.3s ease;

    box-shadow: 0 8px 20px rgba(189, 148, 0, 0.35);
  }

  /* Hover */
  .overview-cta-row .cta-btn.enquire:hover {
    background: linear-gradient(135deg, #a67f00 0%, #bd9400 100%);
    box-shadow: 0 14px 30px rgba(189, 148, 0, 0.45);
    transform: translateY(-2px);
  }

  /* Active */
  .overview-cta-row .cta-btn.enquire:active {
    transform: translateY(0);
  }

  /* Mobile tweak */
  @media (max-width: 576px) {
    .overview-cta-row .cta-btn.enquire {
      padding: 12px 26px;
      font-size: 13px;
    }
  }
  /* =========================
    CONFIG CARD – POP-UP REVEAL
  ========================= */

  /* =========================
    CONFIG CARD – FINAL POP FIX
  ========================= */

  .pop-reveal {
    opacity: 1 !important;       /* 🔒 always visible */
    visibility: visible !important;
    transform: translateY(40px);

    animation: cardPopUp 1.3s ease forwards;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
  }

  /* text animation */
  .pop-reveal > * {
    opacity: 0;
    animation: textFadeUp 1.2s ease forwards;
  }

  /* stagger */
  .pop-reveal > *:nth-child(1) { animation-delay: 0.35s; }
  .pop-reveal > *:nth-child(2) { animation-delay: 0.5s; }
  .pop-reveal > *:nth-child(3) { animation-delay: 0.65s; }
  .pop-reveal > *:nth-child(4) { animation-delay: 0.8s; }


  /* Card motion */
  @keyframes cardPopUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    70% {
      opacity: 1;
      transform: translateY(-4px);
    }
    100% {
      transform: translateY(0);
    }
  }

  /* Text appearance */
  @keyframes textFadeUp {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* =========================
    OVERVIEW TEXT SWITCH
  ========================= */

  .highlight-text::before {
    content: attr(data-desktop);
    display: block;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
  }

  /* Mobile version */
  @media (max-width: 576px) {
    .highlight-text::before {
      content: attr(data-mobile);
      font-size: 14px;
      color: #444;
    }
  }
  /* =========================
    OVERVIEW TEXT SWAP
  ========================= */

  .highlight-desc::before {
    content: attr(data-desktop);
  }

  /* Mobile version */
  @media (max-width: 576px) {
    .highlight-desc::before {
      content: attr(data-mobile);
    }
  }
/* =========================
   MOBILE CTA WRAPPER (HIDDEN ON DESKTOP)
========================= */

.mobile-cta-wrapper {
  display: none; /* Hidden by default on desktop */
}

/* =========================
   OVERVIEW – MOBILE FLOW CONTROL
========================= */

@media (max-width: 576px) {
  /* Stack grid vertically */
  .overview-highlights-grid {
    display: flex;
    flex-direction: column;
  }

  /* LEFT + RIGHT points together */
  .highlights-left {
    order: 1;
  }

  .highlights-right {
    order: 2;
  }

  /* Hide individual button rows on mobile */
  .highlights-left .overview-cta-row,
  .highlights-right .overview-cta-row {
    display: none !important;
  }

  /* IMAGE AFTER ALL POINTS */
  .highlights-center-image {
    order: 3;
    margin: 24px auto;
  }

  /* Mobile CTA wrapper - appears after image */
  .mobile-cta-wrapper {
    order: 4;
    display: flex !important; /* Show on mobile */
    gap: 12px;
    width: 100%;
    margin-top: 24px;
  }

  .mobile-cta-wrapper .cta-btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 13px;
    text-align: center;
    
    /* Match desktop gold gradient style */
    background: linear-gradient(135deg, #bd9400 0%, #d4af37 100%);
    color: #ffffff;
    border: none;
    border-radius: 28px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(189, 148, 0, 0.35);
  }
  
  .mobile-cta-wrapper .cta-btn:hover {
    background: linear-gradient(135deg, #a67f00 0%, #bd9400 100%);
    box-shadow: 0 14px 30px rgba(189, 148, 0, 0.45);
    transform: translateY(-2px);
  }
  
  .mobile-cta-wrapper .cta-btn:active {
    transform: translateY(0);
  }

}
/* =========================
   AMENITIES – MOBILE COMPACT VIEW
========================= */

@media (max-width: 576px) {

  /* Reduce gap between left & right images */
  .amenities-slider {
    gap: 16px;
    margin-top: 32px;
  }

  /* Reduce image height */
  .amenities-col .amenity-item {
    height: 200px;   /* 🔑 key fix */
  }

  /* Slightly tighter overlay text */
  .amenity-overlay {
    padding: 16px;
  }

  .amenity-overlay h3 {
    font-size: 14px;
    letter-spacing: 0.6px;
  }
}
/* =========================
   AMENITIES – CTA BUTTON
========================= */

.amenities-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Button style (reuse gold CTA look) */
.amenities-cta .cta-btn.enquire {
  background: linear-gradient(135deg, #bd9400 0%, #d4af37 100%);
  color: #ffffff;
  border: none;
  border-radius: 28px;
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(189, 148, 0, 0.35);
  transition: all 0.3s ease;
}

.amenities-cta .cta-btn.enquire:hover {
  background: linear-gradient(135deg, #a67f00 0%, #bd9400 100%);
  box-shadow: 0 14px 30px rgba(189, 148, 0, 0.45);
  transform: translateY(-2px);
}

.amenities-cta .cta-btn.enquire:active {
  transform: translateY(0);
}
/* Mobile adjustments */
@media (max-width: 576px) {
  .amenities-cta {
    margin-top: 24px;
  }

  .amenities-cta .cta-btn.enquire {
    padding: 12px 26px;
    font-size: 13px;
  }
}
/* =========================
   OTP VERIFY – LOADING STATE
========================= */

.otp-submit.loading {
  pointer-events: none;
  opacity: 0.8;
  background: linear-gradient(135deg, #cfcfcf 0%, #b5b5b5 100%);
  color: #555;
  box-shadow: none;
}

.otp-submit.loading::after {
  content: "Please wait...";
  display: inline-block;
}
/* =========================
   OVERVIEW IMAGE SLIDER
========================= */

.overview-slider {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.overview-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1.2s ease;
}

.overview-slider img.active {
  opacity: 1;
}

/* Responsive heights */
@media (max-width: 992px) {
  .overview-slider {
    height: 360px;
  }
}

@media (max-width: 576px) {
  .overview-slider {
    height: 300px;
  }
}
/* =========================
   LOCATION – CTA BUTTON
========================= */

.location-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Reuse same CTA look */
.location-cta .cta-btn.enquire {
  background: linear-gradient(135deg, #bd9400 0%, #d4af37 100%);
  color: #ffffff;
  border: none;
  border-radius: 28px;
  padding: 14px 34px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(189, 148, 0, 0.35);
  transition: all 0.3s ease;
}

.location-cta .cta-btn.enquire:hover {
  background: linear-gradient(135deg, #a67f00 0%, #bd9400 100%);
  box-shadow: 0 14px 30px rgba(189, 148, 0, 0.45);
  transform: translateY(-2px);
}

.location-cta .cta-btn.enquire:active {
  transform: translateY(0);
}

/* Mobile spacing */
@media (max-width: 576px) {
  .location-cta {
    margin-top: 24px;
  }

  .location-cta .cta-btn.enquire {
    padding: 12px 26px;
    font-size: 13px;
  }
}
.form-intro {
  text-align: center;
  margin: -22px 0 2px;
  font-size: 14px;
  color: #444;
}

.form-intro strong {
  font-size: 18px;
  display: block;
  /* margin-bottom: 6px; */
}
/* =========================
   PLANS SECTION – FINAL
========================= */

.plans-section {
  background: #ffffff;
  padding: 50px 16px;
}

.plans-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* CARD TITLE */
.plan-card h3 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-transform: uppercase;
  color: #111;
}

/* IMAGE BOX */
.plan-image {
  position: relative;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* IMAGE – DEFAULT */
.plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
  transform: scale(1.05);
  transition: filter 0.45s ease, transform 0.45s ease;
}

/* OVERLAY */
.plan-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.45s ease;
}

/* BUTTON */
.plan-btn {
  background: #ffffff;
  color: #111;
  border: none;
  padding: 12px 26px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 26px;
  font-weight: 600;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* =========================
   HOVER EFFECTS (DESKTOP ONLY)
========================= */

@media (hover: hover) {

  .plan-image:hover img {
    filter: blur(2px);       /* reduce blur */
    transform: scale(1.08);  /* subtle zoom */
  }

  .plan-image:hover .plan-overlay {
    background: rgba(0,0,0,0.3);
  }

  .plan-image:hover .plan-btn {
    background: #bd9400;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  }
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .plan-image {
    height: 240px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {
  .plans-section {
    padding: 70px 16px;
  }

  .plan-image {
    height: 220px;
  }

  /* Slightly clearer on mobile */
  .plan-image img {
    filter: blur(3.5px);
    transform: scale(1.04);
  }

  .plan-overlay {
    background: rgba(0,0,0,0.5);
  }

  .plan-btn {
    padding: 11px 22px;
    font-size: 12px;
    letter-spacing: 0.8px;
  }
}
/* Make entire image clickable */
.plan-image {
  cursor: pointer;
}

/* Prevent button blocking image click */
.plan-btn {
  pointer-events: auto;
}

/* Optional: subtle click feedback */
.plan-image:active img {
  transform: scale(1.02);
}
/* =========================
   HERO – KNOW MORE BUTTON
========================= */

.hero-know-more {
  margin-top: 26px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  transition: all 0.35s ease;
  animation: heroPulse 2.4s infinite;
}

.hero-know-more .arrow {
  font-size: 16px;
  animation: arrowBounce 1.6s infinite;
}

/* Hover (desktop only) */
@media (hover: hover) {
  .hero-know-more:hover {
    background: #bd9400;
    border-color: #bd9400;
    transform: translateY(-2px);
  }
}

/* Animations */
@keyframes heroPulse {
  0% { box-shadow: 0 0 0 0 rgba(189,148,0,0.6); }
  70% { box-shadow: 0 0 0 16px rgba(189,148,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(189,148,0,0); }
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Mobile tuning */
@media (max-width: 576px) {
  .hero-know-more {
    padding: 10px 24px;
    font-size: 12px;
    margin-top: 22px;
  }
}
/* =========================
   MINIMAL CENTER FOOTER (IMAGE STYLE)
========================= */

.minimal-footer {
  background: #2f2f2f;
  padding: 22px 12px 78px 0px;
  font-size: 11px;
  color: #991313;
}

.footer-center-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* QR */
.footer-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.footer-qr img {
  width: 80px;
  height: 80px;
  padding: 4px;
  background: #fff;
  border-radius: 4px;
}

.footer-qr span {
  font-size: 10px;
  letter-spacing: 0.8px;
  margin-top: 6px;
  color: #666;
}

/* RERA LINE */
.footer-rera {
  font-size: 11px;
  margin: 6px 0 8px;
  color: white;
}

/* Disclaimer */
.footer-disclaimer-text {
  font-size: 11px;
  line-height: 1.55;
  color: white;
  margin: 0 auto 10px;
  max-width: 860px;
}

/* Credit */
.footer-credit {
  font-size: 15px;
  color: #666;
}

.footer-credit a {
  color: #8a6d00;
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* Mobile tuning */
@media (max-width: 576px) {
  .minimal-footer {
    padding: 18px 10px;
  }

  .footer-qr img {
    width: 70px;
    height: 70px;
  }

  .footer-disclaimer-text {
    font-size: 10.8px;
  }
}
/* =========================
   CONSENT DROPDOWN (FORM)
========================= */

.consent-box {
  margin-top: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  background: #fafafa;
  padding: 12px 14px;
  font-size: 12px;
}

.consent-header {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.consent-header input {
  margin-top: 3px;
  accent-color: #bd9400;
  cursor: default;
}

.consent-header label {
  color: #555;
  line-height: 1.6;
  cursor: pointer;
  user-select: none;
}

.consent-toggle {
  color: #bd9400;
  font-weight: 600;
  margin-left: 4px;
}

.consent-content {
  display: none;
  margin-top: 8px;
  padding-left: 22px;
  line-height: 1.6;
  color: #777;
}

.consent-box.open .consent-content {
  display: block;
}
