
  :root{
    /* --font-heading:'Outfit', sans-serif; */
    /* --font-body:'Nunito', sans-serif; */
    --primary-dark:#0f172a;
    --primary-dark-rgb:15,23,42;
    --primary-green:#ba9a50;
    --primary-green-light:#ba9a50;
    --text-muted:#61666e;
    --border-radius:12px;
    --shadow-gold: 0 10px 20px -5px rgba(168, 143, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  *{ margin:0; padding:0; box-sizing:border-box; font-family:var(--font-body); }
  body{ background:var(--bg-light); }
  h1,h2{ font-family:var(--font-heading); font-weight:700; }

  html {
    scroll-behavior: smooth;
}
section {
    scroll-margin-top: 80px; /* Adjust to your header height */
}

  @media (prefers-reduced-motion: reduce){
    *{ animation:none !important; transition:none !important; }
  }

  /* ============ HEADER ============ */
  .banner-header-desktop{
    position:fixed; top:0; left:0; right:0; z-index:1000;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,0.08);
    transition:var(--transition);
  }
  .header-nav{
    display:flex; justify-content:space-between; align-items:center;
    padding:10px;
    max-width:1300px; margin:0 auto;
  }
  .logo-mark img{
    display:block; height:48px; width:auto;
  }
  .banner-phone-link{
    background:rgba(0,0,0,0.08);
    border:1px solid rgba(255,255,255,0.14);
    color:#0f172a; padding:10px 20px; border-radius:50px;
    font-family:var(--font-heading); font-weight:600; font-size:0.9rem;
    display:flex; align-items:center; gap:8px;
    transition:var(--transition);
  }
  .banner-phone-link:hover{ background:var(--primary-green); border-color:var(--primary-green); transform:translateY(-1px); }
  .banner-phone-link svg{ width:16px; height:16px; fill:var(--primary-green-light); }
  .menuMobileBtn{
    display:none;
  }
  .sidebar{
    display:none;
  }
  .deskMenu {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
  }
  .desknav-link {
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:var(--primary-dark);
    text-decoration:none;
    font-size:1rem;
    line-height:1;
    white-space:nowrap;
    transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }
  .desknav-link:hover,
  .desknav-link:focus-visible{
    color: var(--primary-green-light);
    text-decoration: underline;
    font-weight: 700;
  }

  /* ============ HERO ============ */
  .bannersection{
    position:relative; min-height:100vh;
    display:flex; align-items:center; overflow:hidden;
  }

  .hero-media{ position:absolute; inset:0; z-index:0; }
  .banner-carousel{ position:absolute; inset:0; }
  .banner-slide{
    position:absolute; inset:0; background-size:cover; background-position:center;
    opacity:0; transition:opacity 1.2s ease-in-out;
    background-color:#1c2a3d; /* fallback tone while art loads, matches skyline dusk */
  }
  .banner-slide.active{ opacity:1; }

  .bannersection-overlay{
    position:absolute; inset:0; z-index:1;
    /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%); */
    /* background:
      linear-gradient(100deg, rgba(15,23,42,0.72) 0%, rgba(15,23,42,0.5) 38%, rgba(15,23,42,0.32) 62%, rgba(15,23,42,0.5) 100%),
      linear-gradient(0deg, rgba(15,23,42,0.55) 0%, rgba(15,23,42,0.1) 30%, rgba(15,23,42,0) 55%); */
  }

  .banner-carousel-dots{
    position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
    z-index:5; display:flex; gap:8px; align-items:center;
  }
  .carousel-dot{
    width:8px; height:8px; border-radius:50%;
    background:rgba(255,255,255,0.5); border:none; padding:0; cursor:pointer;
    transition:all .4s cubic-bezier(.22,.68,0,1);
    position:relative; overflow:hidden;
  }
  .carousel-dot.active{ background:var(--primary-green-light); width:30px; border-radius:5px; box-shadow:0 0 12px rgba(197,168,128,0.6); }

  .hero-grid{
    z-index:3;
    max-width:1320px; width:100%; margin:0 auto;
    padding:6.8rem 1.5rem 3.5rem;
    display:grid; grid-template-columns:minmax(0,1.1fr) minmax(320px, 390px); gap:2rem;
    /* align-items:end; */
  }

  /* -------- Left content -------- */
  .hero-content{
    color:#fff;
    align-self:end;
    max-width:520px;
    padding:2rem;
    border-radius:18px;
    background:rgba(15,23,42,0.78);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    box-shadow:0 24px 60px rgba(0,0,0,0.22);
    position: absolute;
    bottom: 5%; left: 3%;
  }

  @keyframes fadeUp{
    from{ opacity:0; transform:translateY(16px); }
    to{ opacity:1; transform:translateY(0); }
  }
  .hero-content > *{ animation:fadeUp 0.7s cubic-bezier(.22,.68,0,1) both; }
  .hero-title{ animation-delay:0.15s; }
  .hero-desc{ animation-delay:0.25s; }
  .hero-price-label{ animation-delay:0.3s; }
  .hero-price{ animation-delay:0.33s; }
  .btn-gold{ animation-delay:0.45s; }

  .hero-tag{ display:none; }

  .hero-title{
    font-family:var(--font-heading);
    font-weight:700;
    font-size:clamp(2.4rem, 2.75vw, 3.75rem);
    line-height:1.12;
    letter-spacing:-0.02em;
    color:#fff;
    margin-bottom:0.8rem;
    text-shadow:0 4px 30px rgba(0,0,0,0.35);
  }
  .hero-title span{ color:#fff; }

  .hero-desc{
    font-size:1.1rem; line-height:1.55;
    color:#f2f2f2; max-width:540px; margin-bottom:1rem;
  }
  .hero-price-label{
    font-size:0.95rem;
    color:rgba(255,255,255,0.9);
    margin-bottom:0.25rem;
  }
  .hero-price{
    font-family:var(--font-heading);
    font-size:clamp(1.65rem, 2.2vw, 2.5rem);
    line-height:1.15;
    color:#fff;
    letter-spacing:-0.03em;
    margin-bottom:1.2rem;
  }


  /* .btn-gold{
    background:#ead15c;
    color:#111827; border:none;
    border-radius:999px; padding:14px 24px;
    font-family:var(--font-heading); font-weight:700; font-size:0.95rem;
    cursor:pointer; box-shadow:none;
    display:inline-flex; align-items:center; gap:10px;
    transition:var(--transition);
  } */
  /* .desktopBtn { margin-bottom:1.1rem; } */
  /* .btn-gold:hover{ transform:translateY(-2px); background:#f0db78; } */
  .btn-gold:hover svg{ transform:translateY(2px); }
  .btn-gold svg{ width:18px; height:18px; transition:transform .25s ease; }

  /* -------- Right form card -------- */
  .hero-form-wrapper{ animation:fadeUp 0.8s cubic-bezier(.22,.68,0,1) 0.3s both; display:none}

  .hero-form-card{
    position:relative;
    overflow:hidden;
    padding:0;
    border-radius:26px;
    background:#fff;
    box-shadow:0 28px 60px rgba(0,0,0,0.22);
    color:#111827;
  }
  .hero-form-card::before{
    content:''; position:absolute; top:0; left:0; right:0; height:3px;
    background:linear-gradient(90deg, transparent, #d6b548, transparent);
  }
  .hero-card-image{
    height:250px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0) 56%, rgba(0,0,0,0.2) 100%),
      url('assests/images/banner/card-lg-2.webp') center/cover no-repeat;
    border-radius:26px 26px 0 0;
  }

  .form-header{ text-align:center; margin:1.1rem 1.4rem 1rem; }
  .form-title{ font-size:1.6rem; color:#111827; margin-bottom:2px; }
  .form-subtitle{ font-size:0.88rem; color:var(--text-muted); }

  .hero-form-card form{ padding:0 1.4rem 1.3rem; }
  .hero-form-card .form-inputContainer{ margin-bottom:12px; }
  .hero-form-card .form-label{display: none;}

  .hero-form-card .form-input{
    width:100%; padding:12px 16px;
    background:#fafafa;
    border:1.5px solid rgba(0,0,0,0.08);
    border-radius:8px; color:var(--primary-dark); font-size:0.95rem;
    outline:none; transition:var(--transition);
  }
  .hero-form-card .form-input:focus{
    border-color:var(--primary-green-light);
    background:#fafafa;
    box-shadow:0 0 0 3px rgba(214,181,72,0.18);
  }
  /* .hero-form-card .form-input::placeholder{ color:#cdcdcd; } */

  .hero-form-card select.form-input{
    appearance:none; -webkit-appearance:none;
    color:var(--primary-dark); cursor:pointer;
    background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d6b548' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 14px center;
    background-size:16px;
    padding-right:40px;
  }
  .hero-form-card select.form-input:focus{
    background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d6b548' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 14px center;
    background-size:16px;
  }
  .hero-form-card select.form-input option{ background:#fff; color:#000; }

  .hero-form-card .row-split{ display:grid; grid-template-columns:100px 1fr; gap:10px; }

  .hero-form-card .form-checkboxlabel{ color:var(--primary-dark); font-size:0.76rem; line-height:1.5; cursor:pointer; }
  .hero-form-card .form-checkboxlabel a{ color:#d6b548; text-decoration:underline; }
  .hero-form-card .consent-row{ display:flex; gap:8px; align-items:flex-start; margin-bottom:1rem; }
  .hero-form-card .consent-row input{ margin-top:3px; accent-color:#d6b548; }

  .hero-form-card .form-SubmitBtn{
    width:100%; padding:14px;
    background:var(--primary-green-light);
    color:#fff; border:none; border-radius:999px;
    font-family:var(--font-heading); font-weight:700; font-size:0.92rem;
    cursor:pointer; box-shadow:none;
    transition:var(--transition);
  }
  .hero-form-card .form-SubmitBtn:hover{
    transform:translateY(-2px);
    background:#f0db78;
  }

  /* -------- Desktop floating widgets -------- */

  /* ============ next section peek (for spacing context) ============ */
  .section-header{ text-align:center; max-width:700px; margin:0 auto 1.5rem; }
  .section-subtitle{ font-size:0.9rem; color:var(--text-muted); }
  .next-section{ background:var(--primary-dark); border-top:1px solid rgba(255,255,255,0.06); }

  @media (max-width: 1024px) {
        .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }
  }

  /* ============ MOBILE ============ */
  @media (max-width:768px){
    .banner-header-desktop{ padding:0.75rem 1.5rem; }
    .header-nav{ padding:0; }
    .banner-phone-link{ padding:8px 14px; font-size:0.8rem; display:none; }
    .deskMenu {
      display: none;
    }
    .sidebar{
      display:flex;
      align-items:center;
      flex-direction: column;
      gap:8px;
      width:100%;
      /* padding:10px 12px;
      margin-top:10px;
      border-top:1px solid rgba(15,23,42,0.08); */
      /* max-height: 0px; */
      overflow: hidden;
    }
    .sidebar::-webkit-scrollbar{
      display:none;
    }
    .sidebar .nav-link{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:10px 14px;
      width: 100%;
      /* background:#fff; */
      border-bottom : 1px solid rgba(15,23,42,0.08);
      /* box-shadow:0 6px 14px rgba(15,23,42,0.06); */
      color:var(--primary-dark);
      text-decoration:none;
      font-size:0.85rem;
      font-weight:700;
      line-height:1;
      white-space:nowrap;
      transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }
    .sidebar .nav-link:hover,
    .sidebar .nav-link:focus-visible{
      color: var(--primary-green-light);
      text-decoration: underline;
    }
    .menuMobileBtn{
      display:flex;
      align-items:center;
      flex-direction: column;
      gap:3px;
      padding:10px 10px;
      border-radius:5px;
      background:rgba(0,0,0,0.08);
      color:var(--primary-dark);
      border:1px solid rgba(15,23,42,0.12);
      box-shadow:0 8px 18px rgba(15,23,42,0.08);
      font-size:0.9rem;
      font-weight:700;
      line-height:1;
      text-decoration:none;
      transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .menuMobileBtn span {
      width: 20px;
      height: 3px;
      background: #000;
    }

    .bannersection{
      display:flex; flex-direction:column; align-items:stretch; justify-content:flex-start;
      padding-top:0; margin-top:70px;
      min-height:unset; height:auto;
    }
    .hero-media{ position:relative; inset:auto; height:46vh; min-height:340px; }
    .bannersection-overlay{
      /* background:linear-gradient(0deg, var(--primary-dark) 0%, rgba(15,23,42,0.2) 32%, rgba(15,23,42,0) 55%); */
      display:none;
    }
    .banner-carousel-dots{ bottom:14px; }

    .hero-grid{
      position:relative; z-index:3; grid-template-columns:1fr;
      width:100%; padding:0;
      background:var(--bg-light); gap:1rem; margin-top:-25px;
      border-radius: 30px 30px 0 0;
      text-align: center;
      overflow: hidden;
    }
    .hero-content{ display:none; }
    .desktopBtn { display:none; }

    .hero-form-wrapper{ display:block !important; }
    .hero-card-image{ height:260px; border-radius:18px 18px 0 0; }
    .form-header {margin: 1rem 0 0.35rem;}
    .hero-form-card{
      border-radius:0px;
      background:#fff;
      box-shadow: none;
    }
    .hero-form-card .form-title{ font-size:1.6rem; color:#111827; }
    .hero-form-card .form-subtitle{ font-size:0.84rem; color:#111827; }
    .hero-card-subtext{ font-size:0.82rem; }
    .hero-card-price{ font-size:1.6rem; }
    .hero-form-card .form-SubmitBtn{
      margin:0 1rem 1rem;
      width:calc(100% - 2rem);
      font-size:0.82rem;
      padding:11px 14px;
    }
  }

 
