  :root{
 --ink:        #0B1220;   /* deep navy — brand base */
    --cream:      #FAF8F4;   /* warm off-white */
    --gold-1:     #F3C265;   /* gold gradient stops, sampled from the logo */
    --gold-2:     #C6892E;
    --gold-mid:   #DDA645;
    --slate:      #5B6472;
    --line:       rgba(11,18,32,0.10);
    --line-onink: rgba(255,255,255,0.18);
 
   
 
    --nav-h: 100px;
    --nav-h-sticky: 76px;
    --hero-h: 700px;
 
    --ease: cubic-bezier(.22,.9,.32,1);
  }
 
  *{ margin:0; padding:0; box-sizing:border-box; }
  html{ scroll-behavior:smooth; }

  section {
  scroll-margin-top: 80px; /* Change 80px to your navbar height */
}
 
  body{
    font-family: var(--font-body);
    color: var(--ink);
    /* background: var(--cream); */
    -webkit-font-smoothing: antialiased;
    overflow-x:hidden;
  }
 
  img{ max-width:100%; display:block; }
  a{ text-decoration:none; color:inherit; }
  ul{ list-style:none; }
  button{ font-family:inherit; cursor:pointer; }
 
  /* ============================================
     NAVBAR
     ============================================ */
 .site-header{
    position: fixed;
    top:0; left:0; right:0;
    z-index: 1000;
    height: var(--nav-h);
    display:flex;
    align-items:center;
    background: transparent;
    transition: height .45s var(--ease), background-color .45s var(--ease), box-shadow .45s var(--ease);
  }
 
  .nav-inner{
    width:100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 32px;
  }
 
  /* --- logo ---
     Icon is a cropped, transparent-background PNG made from the supplied
     logo. It sits on a white chip while the hero is transparent behind
     it, and the chip fades away once the bar goes solid white on scroll. */
  .logo-chip{
    display:inline-flex;
    align-items:center;
    padding: 10px 22px;
    /*background: var(--cream);*/
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(11,18,32,0.0);
    transition: background-color .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease);
  }
 
  .logo-chip img{
    height: 62px;
    width: auto;
    display: block;
    transition: height .45s var(--ease);
  }
 
  .site-header.is-sticky .logo-chip{
    background: transparent;
    box-shadow: none;
    padding: 12px 0;
  }
  .site-header.is-sticky .logo-chip img{ height: 42px; }
 
  /* --- nav links --- */
  .nav-links{ display:flex; align-items:center; gap: 40px; }
 
  .nav-links a{
    position:relative;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .01em;
    color:  #fff;
    padding: 8px 0;
    text-shadow: 0 1px 6px rgba(0,0,0,0.0);
    transition: color .35s var(--ease);
    font-family: 'DM Sans', sans-serif;
  }
 
  .nav-links a::after{
    content:"";
    position:absolute;
    left:0; bottom:0;
    width:0%;
    height:1.5px;
    background: #ED1D26;
    transition: width .35s var(--ease);
  }
 
  .nav-links a:hover{ color: #fff; }
  .nav-links a:hover::after{ width:100%; }
 
  .site-header.is-sticky .nav-links a{ color: var(--ink); text-shadow:none; }
  .site-header.is-sticky .nav-links a:hover{ color: var(--gold-2); }
 
  .nav-right{ display:flex; align-items:center; gap: 36px; }
 
  /* --- call button --- */
  .call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1.5px solid var(--line-onink);
  border-radius: 999px;
  background: #0E284E;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-decoration: none;
}

.call-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
 
  .site-header.is-sticky .call-btn{ color: #fff; border-color: var(--line); }
  .site-header.is-sticky .call-btn:hover{ color: #fff; }
 
  .site-header.is-sticky{
    height: var(--nav-h-sticky);
    background: var(--cream);
    box-shadow: 0 2px 24px rgba(11,18,32,0.08);
  }
 
  /* ============================================
     HAMBURGER (mobile)
     ============================================ */
  .hamburger{
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width: 40px; height: 40px;
    background:none; border:none;
    gap: 5px;
    z-index: 1100;
  }
 
  .hamburger span{
    display:block;
    width: 24px; height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: background-color .35s var(--ease), transform .35s var(--ease), opacity .35s var(--ease);
  }
 
  .site-header.is-sticky .hamburger span{ background: var(--ink); }
  .hamburger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2){ opacity: 0; }
  .hamburger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .hamburger.is-open span{ background: var(--ink) !important; }
 
  /* ============================================
     MOBILE NAV PANEL
     ============================================ */
  .mobile-panel{
    position: fixed;
    top: var(--nav-h-sticky);
    left:0; right:0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(11,18,32,0.12);
    padding: 8px 28px 28px;
    display:flex;
    flex-direction:column;
    gap: 4px;
    transform: translateY(-12px);
    opacity:0;
    visibility:hidden;
    transition: transform .4s var(--ease), opacity .4s var(--ease), visibility .4s;
    z-index: 999;
  }
 
  .mobile-panel.is-open{ transform: translateY(0); opacity:1; visibility:visible; }
 
  .mobile-panel a{
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
  }
 
  .mobile-panel .call-btn{
    margin-top: 18px;
    align-self:flex-start;
    color: #fff;
    border-color: var(--line);
    padding: 12px 24px;
  }
 
  /* ============================================
     HERO BANNER
     ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: var(--hero-h);
  min-height: var(--hero-h);
  overflow: hidden;
  background: url('../images/hirani-banner-02.jpeg') center / cover no-repeat;
}

/* Mobile background */
@media (max-width: 900px) {
  .hero {
    background-image: url('../images/Mobile-banner.jpeg');
  }
}
 

  /* ============================================
     FORM STYLES
     ============================================ */ 
     
   .contact-lead-section {
  width: 100%;
  min-height: 180px;
  background-color: #0b1f34;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 25px 8%;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.contact-lead-section * {
  box-sizing: border-box;
}

.contact-lead-inner {
  width: 100%;
}

.contact-lead-heading {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 18px;
  letter-spacing: 0.2px;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
  line-height: 1.3;
}

.contact-lead-heading span {
  color: #F4B543; /* Gold */
}

.contact-lead-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  flex: 1 1 180px;
  min-width: 180px;
}

.contact-form-field label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}

.contact-required {
  color: #ff5a5a;
  margin-left: 3px;
}

.contact-input-wrap {
  position: relative;
  width: 100%;
}

.contact-input-wrap input {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 4px;
  padding: 0 30px 0 14px;
  font-size: 14px;
  color: #1c2b3a;
  outline: none;
  background-color: #ffffff;
}

.contact-input-wrap input::placeholder {
  color: #7a8896;
}

.contact-input-wrap input.invalid {
  box-shadow: 0 0 0 2px #ff5a5a inset;
}

.contact-input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #0b6e8f;
  pointer-events: none;
}

.contact-error-msg {
  color: #ff8a8a;
  font-size: 12px;
  min-height: 16px;
  margin-top: 4px;
}

.contact-submit-btn {
  flex: 0 0 auto;
  height: 42px;
  margin-top: 25px;
  padding: 0 40px;
  background-color: #ffffff;
  color: #0b6e8f;
  border: 2px solid #0b6e8f;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-submit-btn:hover {
  background-color: #0b6e8f;
  color: #ffffff;
}


  /* ============================================
     ABOUT US
     ============================================ */
 
  .aura-connect {
    --aura-ink: #22261f;
    --aura-ink-soft: #55584d;
    --aura-cream: #f6f2e9;
    --aura-cream-deep: #efe8d9;
    --aura-brass: #a9834c;
    --aura-brass-line: #d8c7a3;
    --aura-radius: 4px;
 
    background: var(--aura-cream);
    color: var(--aura-ink);
    font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    box-sizing: border-box;
    width: 100%;
  }
 
  .aura-connect *,
  .aura-connect *::before,
  .aura-connect *::after {
    box-sizing: border-box;
  }
 
  .aura-connect__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    column-gap: 48px;
    min-height: 100vh;
  }
 
  /* ---------- Content column ---------- */
 
  .aura-connect__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 0 64px 7vw;
  }
 
  .aura-connect__brand {
    margin: 0 0 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--aura-brass);
  }
 
  .aura-connect__heading {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-weight: 500;
    font-optical-sizing: auto;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.14;
    letter-spacing: -0.01em;
    color: var(--aura-ink);
    max-width: 560px;
  }
 
  .aura-connect__copy {
    margin: 26px 0 0;
    font-size: 17px;
    line-height: 1.75;
    color: var(--aura-ink-soft);
    font-weight: 400;
    max-width: 560px;
    text-align: justify;
    font-family: 'Yantramanav', serif;
  }
 
  /* ---------- Stat row ---------- */
 
 .aura-connect__stats {
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid var(--aura-brass-line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 560px;
}

.aura-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 20px 12px;
    border: 1px solid var(--aura-brass-line);
    border-radius: var(--aura-radius);
}

.aura-stat__icon {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--aura-cream-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aura-stat__icon img {
    width: 34px;
    height: 34px;
    display: block;
    object-fit: contain;
}

.aura-stat__label {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--aura-ink);
    letter-spacing: 0.01em;
    font-family: 'DM Sans', Serif;
}
  /* ---------- Visual column: framed image with breathing room ----------
     - left gap to the content comes from .aura-connect__inner's column-gap
     - right-side whitespace comes from padding-right below
     - top/bottom padding matches the content column's 64px so the image
       edges align evenly with the top/bottom of the content section
  ---------------------------------------------------------------------- */
 
  .aura-connect__visual {
    position: relative;
    display: flex;
    padding: 64px 8vw 64px 0;
  }
 
  .aura-connect__visual-box {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
  }
 
  .aura-connect__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--aura-radius);
    display: block;
  }
 
  .aura-connect__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
 
  /* small inset card — anchored near the bottom-left of the main image,
     fully inside the framed area so nothing is left uncovered */
  .aura-connect__frame--inset {
    position: absolute;
    inset: auto;
    bottom: 6%;
    left: -6%;
    top: auto;
    width: 38%;
    aspect-ratio: 4 / 5;
    height: auto;
    border: 6px solid var(--aura-cream);
    border-radius: var(--aura-radius);
    box-shadow: 0 24px 44px -20px rgba(20, 22, 16, 0.45);
    z-index: 2;
  }
 
  .aura-connect__frame--inset .aura-connect__img {
    border-radius: 1px;
  }


  /* ============================================
     HIGHLIGHTS
     ============================================ */
     
     .highlights{
    box-sizing: border-box;
    padding: 96px 60px 90px;
    max-width: 1400px;
    margin: 0 auto;
    background: #FFFFFF;
   
    color: #1B2430;
  }
 
  .highlights, .highlights *{
    box-sizing: border-box;
  }
 
  .highlights__intro{
    max-width: 1000px;
    margin: 0 auto 48px;
    text-align: center;
  }
 
  .highlights__eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #6E7F63;
    font-weight: 600;
    margin-bottom: 18px;
    font-family: 'DM Sans', sans-serif;
  }
 
  .highlights__eyebrow::before,
  .highlights__eyebrow::after{
    content:"";
    width: 22px;
    height: 1px;
    background: #B08D57;
  }
 
  .highlights__heading{
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin: 0 0 22px;
    color: #1B2430;
    
  }
 
  .highlights__text{
    font-size: 17px;
    line-height: 1.75;
    color: rgba(27,36,48,0.72);
    margin: 0;
    font-family: 'Yantramanav', serif;
  }
 
  .highlights__grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px 20px;
  }
 
  .amenity{
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    overflow: hidden;
    background: #1B2430;
    box-shadow: 0 18px 40px rgba(27,36,48,0.16);
    cursor: default;
    opacity: 0;
    transform: translateY(22px);
    animation: rise 0.7s cubic-bezier(.22,.68,.32,1) forwards;
  }
 
  .amenity:nth-child(1){ animation-delay: .02s }
  .amenity:nth-child(2){ animation-delay: .08s }
  .amenity:nth-child(3){ animation-delay: .14s }
  .amenity:nth-child(4){ animation-delay: .20s }
  .amenity:nth-child(5){ animation-delay: .26s }
  .amenity:nth-child(6){ animation-delay: .32s }
  .amenity:nth-child(7){ animation-delay: .38s }
  .amenity:nth-child(8){ animation-delay: .44s }
  .amenity:nth-child(9){ animation-delay: .50s }
  .amenity:nth-child(10){ animation-delay: .56s }
 
  @keyframes rise{
    to{ opacity: 1; transform: translateY(0); }
  }
 
  .amenity img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.22,.68,.32,1), filter 0.6s ease;
    filter: saturate(0.96) brightness(0.96);
  }
 
  .amenity::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(27,36,48,0) 42%, rgba(27,36,48,0.82) 100%);
    transition: opacity 0.4s ease;
  }
 
  .amenity:hover img,
  .amenity:focus-within img{
    transform: scale(1.08);
    filter: saturate(1.05) brightness(1);
  }
 
  .amenity__label{
    position:absolute;
    left:0; right:0; bottom:0;
    z-index: 2;
    padding: 14px 12px 16px;
    text-align:center;
  }
 
  .amenity__title{
    margin:0;
    font-family:'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
  }
 
  .amenity__ring{
    position:absolute;
    inset: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0);
    transition: border-color 0.4s ease;
    z-index: 2;
    pointer-events:none;
  }
 
  .amenity:hover .amenity__ring,
  .amenity:focus-within .amenity__ring{
    border-color: rgba(255,255,255,0.35);
  }
 
  .amenity:focus-within{
    outline: 2px solid #B08D57;
    outline-offset: 3px;
  }



 /* ============================================
     REASONS
     ============================================ */ 
.reasons2-section {
  position: relative;
  width: 1200px;
  max-width: 100%;
  min-height: 580px;
  margin: 0 auto 50px;
  padding: 40px 60px 90px;
  background-image: url('../images/reasons2.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  overflow: hidden;
}
.reasons2-section .reasons2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0) 80%
  );
  z-index: 1;
}
.reasons2-container {
  position: relative;
  z-index: 2;
}
.reasons2-heading {
  margin: 0 0 32px;
  text-align: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.reason2-first-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 32px;
}
.reason2-first {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  width: 100%;
  max-width: 700px;
  justify-content: center;
  padding: 14px 34px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  backdrop-filter: blur(2px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.reason2-first:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 122, 69, 0.8);
  transform: translateY(-3px);
}
.reason2-first .reason2-num {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 24px;
  color: #FF7A45;
  line-height: 1;
}
.reason2-first i {
  font-size: 28px !important;
  color: #FF7A45;
}
.reason2-first-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #141414;
  text-transform: uppercase;
  white-space: nowrap;
}
.reasons2-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0 50px;
  box-sizing: border-box;
  gap: 16px;
}
.reason2-card {
  position: relative;
  box-sizing: border-box;
  padding: 22px 20px 18px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.reason2-card:hover {
  background: #f7f7f7;
  border-color: rgba(255, 122, 69, 0.8);
  transform: translateY(-4px);
}
.reason2-card-num {
  position: absolute;
  top: 8px;
  left: 10px;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 12px;
  color: #D85A30;
}
.reason2-card-stat {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: #D85A30;
  margin: 8px auto 8px;
  text-shadow: none;
}
.reason2-card-text {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.4;
  color: #2C2C2A;
  text-transform: uppercase;
}
 /* ============================================
     FLOOR PLANS
     ============================================ */ 
      .floor-plans-section {
    padding: 40px 40px;
    background-color: #ffffff;
    margin-bottom: 20px;
  }
 
  .floor-plans-section .fp-heading {
    text-align: center;
    font-family:  'Fraunces', serif;
    font-size: 34px;
    letter-spacing: 2px;
    color: #1f1f1f;
    margin: 0 0 60px 0;
    text-transform: uppercase;
  }
 
  .floor-plans-section .fp-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background-color: #b08d57;
    margin: 18px auto 0 auto;
  }
 
  .floor-plans-section .fp-images {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
 
  .floor-plans-section .fp-image-box {
    flex: 1 1 45%;
    max-width: 560px;
  }
 
  .floor-plans-section .fp-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border: 1px solid #ddd8cf;
  }
 
  .floor-plans-section .fp-image-box.fp-left {
    margin-right: auto;
  }
 
  .floor-plans-section .fp-image-box.fp-right {
    margin-left: auto;
  }
  .floor-plans-section .fp-image-title {
  margin-top: 18px;
  text-align: center;
  font-family: 'DM Sans', Sans-Serif;
  font-size: 20px;
  color: #1f1f1f;
  letter-spacing: 1px;
  text-transform: uppercase;
}
 
 
     
     
     
     
  /* ============================================
     LOCATION 
     ============================================ */ 

.lh-section {
    background-color: #f6f2e9;
    padding: 70px 60px 90px;
   
    color: #23231d;
  }
 
  .lh-container {
    max-width: 1400px;
    margin: 0 auto;
  }
 
  .lh-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8a6a3c;
     font-family: 'DM Sans', sans-serif;
  }
 
  .lh-label::before {
    content: "";
    width: 26px;
    height: 1px;
    background: #b08d57;
    display: inline-block;
  }
 
  .lh-heading {
    font-family: 'Fraunces', serif;
    font-weight: 480;
    font-size: clamp(34px, 4.4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 22px auto 0;
    max-width: none;
    width: 100%;
    color: #201f1a;
    text-align: center;
    white-space: nowrap;
  }
 
  .lh-heading em {
    font-style: italic;
    font-weight: 420;
    color: #3b5a49;
  }
 
  .lh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
    align-items: start;
  }
 
  .lh-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(35, 35, 29, 0.08);
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(35,35,29,0.04);
    transition: box-shadow 0.45s ease, border-color 0.45s ease, transform 0.45s ease;
  }
 
  .lh-card:hover {
    box-shadow: 0 24px 48px -18px rgba(35, 35, 29, 0.22);
    transform: translateY(-3px);
    border-color: rgba(35, 35, 29, 0.12);
  }
 
  .lh-media {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.lh-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
 
  .lh-card:hover .lh-media img {
    transform: scale(1.06);
  }
 
  .lh-media::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(15,15,12,0.32), rgba(15,15,12,0));
    pointer-events: none;
    z-index: 1;
  }
 
  .lh-index {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    font-family: 'Fraunces', serif;
    font-size: 13px;
    color: #f6f2e9;
    letter-spacing: 0.05em;
    background: rgba(20, 24, 20, 0.32);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
  }
 
  .lh-strip {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: auto;
    box-sizing: border-box;
    background: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 14px 14px 14px 18px;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 10px 24px -10px rgba(20,20,16,0.28);
    transition: border-radius 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
 
  .lh-card.is-open .lh-strip {
    border-radius: 14px 14px 10px 10px;
  }
 
  .lh-strip-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 480;
    letter-spacing: -0.01em;
    color: #201f1a;
    text-align: left;
  }
 
  .lh-strip-title small {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a8f76;
    margin-top: 3px;
  }
 
  .lh-arrow {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f3ede0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease, transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  }
 
  .lh-strip:hover .lh-arrow {
    background: #3b5a49;
  }
 
  .lh-strip:hover .lh-arrow svg path {
    stroke: #f6f2e9;
  }
 
  .lh-arrow svg {
    width: 14px;
    height: 14px;
    display: block;
  }
 
  .lh-arrow svg path {
    stroke: #201f1a;
    transition: stroke 0.4s ease;
  }
 
  .lh-card.is-open .lh-arrow {
    transform: rotate(180deg);
    background: #3b5a49;
  }
 
  .lh-card.is-open .lh-arrow svg path {
    stroke: #f6f2e9;
  }
 
  .lh-panel {
    display: grid;
    grid-template-rows: 0fr;
    background: #ffffff;
    transition: grid-template-rows 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  }
 
  .lh-card.is-open .lh-panel {
    grid-template-rows: 1fr;
  }
 
  .lh-panel-inner {
    overflow: hidden;
    min-height: 0;
  }
 
  .lh-list {
    list-style: none;
    margin: 0;
    padding: 26px 22px 22px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.4s ease 0.05s, transform 0.45s ease 0.05s;
   
  }
 
  .lh-card.is-open .lh-list {
    opacity: 1;
    transform: translateY(0);
  }
 
  .lh-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(35, 35, 29, 0.08);
    font-size: 14.5px;
    line-height: 1.5;
    color: #3d3a32;
    font-family: 'Yantramanav', serif;
    font-weight: 400;
  }
 
  .lh-list li:last-child {
    border-bottom: none;
    padding-bottom: 2px;
  }
 
  .lh-list li::before {
    content: "";
    flex: none;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #b08d57;
    transform: translateY(-2px);
  }
 
  .lh-list li b {
    font-weight: 700;
    color: #201f1a;
  }
 
  .lh-list li span {
    color: #8b8577;
    font-weight: 500;
  }



 /* ============================================
     FORM 
     ============================================ */   

     :root{
    --ink:#0B0D12;
    --panel:#12151C;
    --panel-2:#181C25;
    --gold:#C9A65B;
    --gold-light:#E7CD93;
    --text:#F3F1EA;
    --muted:#8B92A3;
    --line:rgba(255,255,255,0.10);
    --line-strong:rgba(255,255,255,0.18);
    --error:#E2836F;
    --success:#8FCBA4;
  }
 
  
  .contact-section{
    width:1400px;
    max-width:100%;
    background:#fff;
    border-radius:4px;
    padding:60px 72px 70px;
    position:relative;
    overflow:hidden;
    box-sizing:border-box;
  }
 
  .contact-section::before{
    content:"";
    position:absolute;
    top:0; left:0; right:0;
    height:1px;
    background:linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
    opacity:0.5;
  }
 
  .contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    height:600px;
    border:1px solid var(--line);
    box-sizing:border-box;
  }
 
  /* ---------------- MAP SIDE ---------------- */
  .map-side{
    position:relative;
    height:500px;
    border-right:1px solid var(--line);
    background:var(--panel);
    box-sizing:border-box;
  }
 
  .map-frame{
    position:absolute;
    inset:0;
    overflow:hidden;
  }
 
  .map-frame iframe{
    width:calc(100% + 4px);
    height:calc(100% + 4px);
    margin:-2px;
    border:0;
    filter:none;
  }
 
  .map-tint{
    display: none;
  }
 
  .map-corner{
    position:absolute;
    width:26px;
    height:26px;
    border:1px solid var(--gold);
    opacity:0.85;
    z-index:3;
    box-sizing:border-box;
  }
 .map-corner.tl {
  top: 22px;
  left: 22px;
  border-right: 0;
  border-bottom: 0;
}

.map-corner.br {
  bottom: 22px;
  right: 22px;
  border-left: 0;
  border-top: 0;
}
 
  .map-card{
    position:absolute;
    left:28px;
    bottom:28px;
    right:28px;
    z-index:4;
    background:rgba(11,13,18,0.72);
    backdrop-filter:blur(10px);
    border:1px solid var(--line-strong);
    padding:22px 24px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:16px;
    box-sizing:border-box;
  }
 
  .map-card .label{
    font-size:18px;
    letter-spacing:0.10em;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:8px;
    font-weight:500;
  }
  .map-card .addr{
    font-family:'Fraunces', serif;
    font-size:12px;
    line-height:1.4;
    color:var(--text);
  }
  .map-card .addr span{
    display:block;
    font-family:'Inter', sans-serif;
    font-size:13px;
    color:var(--muted);
    margin-top:6px;
    font-weight:300;
  }
 
  .map-pin{
    flex-shrink:0;
    width:38px;
    height:38px;
    border:1px solid var(--gold);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;
  }
  .map-pin svg{ width:16px; height:16px; }
 
  /* ---------------- FORM SIDE ---------------- */
  .form-side{
    height:500px;
    background:var(--panel);
    padding:56px 64px;
    display:flex;
    flex-direction:column;
    box-sizing:border-box;
  }
 
  .form-side .form-top{
    margin-bottom:34px;
  }
  .form-side .form-top .kicker{
    font-size:11px;
    letter-spacing:0.2em;
    text-transform:uppercase;
    color:var(--gold);
    font-weight:500;
    margin-bottom:10px;
    font-family: 'DM Sans', sans-serif;
  }
  .form-side .form-top h3{
    font-family:'Fraunces', serif;
    font-weight:500;
    font-size:26px;
    margin:0;
    color:var(--text);
  }
 
  form{
    display:flex;
    flex-direction:column;
    flex:1;
  }
 
  .fields-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
  }
 
  .fields{
    position:relative;
    margin-bottom:30px;
  }
 
  .fields.full{ grid-column:1 / -1; }
 
  .fields input,
  .fields textarea{
    width:100%;
    background:transparent;
    border:none;
    border-bottom:1px solid var(--line-strong);
    color:var(--text);
    font-family:'Inter', sans-serif;
    font-size:15px;
    font-weight:400;
    padding:12px 2px 10px;
    outline:none;
    transition:border-color 0.35s ease;
    resize:none;
    box-sizing:border-box;
  }
 
  .fields textarea{ min-height:64px; line-height:1.6; }
 
  .fields label{
    position:absolute;
    left:2px;
    top:12px;
    font-size:15px;
    color:var(--muted);
    pointer-events:none;
    transform-origin:left top;
    transition:transform 0.28s ease, color 0.28s ease, top 0.28s ease;
    font-family: 'DM Sans', sans-serif;
  }
 
  .fields .underline{
    position:absolute;
    left:0; bottom:0;
    width:100%;
    height:1px;
    background:linear-gradient(90deg, var(--gold), var(--gold-light));
    transform:scaleX(0);
    transform-origin:left;
    transition:transform 0.4s cubic-bezier(.4,0,.2,1);
  }
 
  .fields input:focus ~ .underline,
  .fields textarea:focus ~ .underline{
    transform:scaleX(1);
  }
 
  .fields input:focus ~ label,
  .fields input:not(:placeholder-shown) ~ label,
  .fields textarea:focus ~ label,
  .fields textarea:not(:placeholder-shown) ~ label{
    top:-14px;
    font-size:11px;
    letter-spacing:0.06em;
    color:var(--gold-light);
  }
 
  .fields .error-msg{
    position:absolute;
    bottom:-19px;
    left:2px;
    font-size:11.5px;
    color:var(--error);
    opacity:0;
    transform:translateY(-3px);
    transition:all 0.25s ease;
  }
  .fields.invalid input,
  .fields.invalid textarea{ border-bottom-color:var(--error); }
  .fields.invalid .error-msg{ opacity:1; transform:translateY(0); }
 
  .submit-row{
    margin-top:auto;
    display:flex;
    align-items:center;
    gap:20px;
  }
 
  .btn-submits{
    position:relative;
    background:linear-gradient(120deg, var(--gold), var(--gold-light));
    color:#141414;
    border:none;
    padding:15px 34px;
    font-family:'Inter', sans-serif;
    font-size:13.5px;
    font-weight:600;
    letter-spacing:0.06em;
    text-transform:uppercase;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:10px;
    overflow:hidden;
    transition:transform 0.25s ease, box-shadow 0.25s ease;
    box-sizing:border-box;
  }
  .btn-submits:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 24px -8px rgba(201,166,91,0.55);
  }
  .btn-submits:active{ transform:translateY(0); }
 
  .btn-submits svg{
    width:14px; height:14px;
    transition:transform 0.3s ease;
  }
  .btn-submits:hover svg{ transform:translateX(3px); }
 
  .btn-submits.loading {
    pointer-events: none;
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submits .spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(20, 20, 20, 0.25);
    border-top-color: #141414;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    flex-shrink: 0;
}

.btn-submits.loading .spinner {
    display: inline-block;
}

.btn-submits.loading svg {
    display: none;
}



  /* ============================================
     STRIP CARD 
     ============================================ */   

 .cta-strip {
    position: relative;
    width: 1200px;
    height: 240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    /* not clipped so the building image can rise above the top edge */
    overflow: visible;
    margin-bottom: 50px;
    margin-top: 0px;
  }
 
  /* navy rounded background sits behind everything, clipped on its own */
  .strip-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0b1f3f 0%, #0e2a52 60%, #0b1f3f 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 31, 63, 0.0);
    z-index: 0;
  }
 
  /* subtle decorative wave lines like the reference */
  .strip-bg::before {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -60px;
    width: 500px;
    height: 300px;
    background:
      repeating-radial-gradient(circle at 30% 100%,
        rgba(212, 175, 55, 0.08) 0px,
        rgba(212, 175, 55, 0.08) 1px,
        transparent 1px,
        transparent 18px);
    pointer-events: none;
  }
 
  /* LEFT CONTENT */
  .cta-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 48px;
  }
 
  .text-block {
    display: flex;
    flex-direction: column;
  }
 
 .headline-line1 {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
}

.headline-line2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 42px;
  font-weight: 500;
  margin-top: 6px;
  color: #d4af37;
  font-family: 'Fraunces', serif;
}

.location-pin {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
 
  .cta-button {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    background: linear-gradient(180deg, #e8c974 0%, #d4af37 100%);
    color: #0b1f3f;
    font-family: 'Trebuchet MS', Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    padding: 16px 28px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
 
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(212, 175, 55, 0.0);
  }
 
  .cta-button svg {
    width: 16px;
    height: 16px;
  }
 
  /* RIGHT IMAGE — cutout building PNG, rises above the strip's top edge */
  .building-wrap {
    position: absolute;
    right: 24px;
    bottom: 0;
    height: 165%;
    width: 44%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
  }
 
  .building-img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.0));
  }
.building-img-mobile {
  display: none;
}


  /* ============================================
     FOOTER
     ============================================ */     
 :root{
    --gold:#d4af37;
    --text-light:#f2f2f2;
    --text-muted:#c9c9c9;
    --divider: rgba(255,255,255,0.15);
  }
 
  /* ===== FOOTER ===== */
  .site-footer,
  .site-footer *{
    box-sizing:border-box;
  }
 
  .site-footer h3,
  .site-footer p,
  .site-footer ul{
    margin:0;
    padding:0;
  }
 
  .site-footer{
    position:relative;
    width:100%;
    height:460px;
    font-family: 'Segoe UI', Arial, sans-serif;
    color:var(--text-light);
    /* Background image: stretched to full width, never cropped left/right.
       background-size:100% auto scales the image to exactly the
       container width and keeps its own aspect ratio for height,
       so nothing is ever cut off on the sides. */
    background-image:url('../images/footer-bg.jpg');
    background-repeat:no-repeat;
    background-position:top center;
    background-size:100% auto;
  }
 
  /* minimal overlay, just enough to keep text readable on top of the photo */
  .footer-overlay{
    width:100%;
    height:100%;
    background:rgba(10,10,10,0.45);
    padding:50px 24px 0;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
  }
 
  .footer-inner{
    max-width:1200px;
    width:100%;
    margin:0 auto;
    display:flex;
    flex-wrap:wrap;
    gap:40px;
  }
 
  /* ===== 3 COLUMNS / CONTAINERS ===== */
  .footer-col{
    flex:1 1 260px;
    min-width:240px;
  }
 
  /* ---- Column 1 : socials + logo ---- */
  .col-brand .social-icons{
    display:flex;
    gap:14px;
    margin-bottom:22px;
  }
 
  .social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    border-radius:50%;
    transition:transform .25s ease, filter .25s ease;
  }
 
  .social-icons a:hover{
    transform:translateY(-3px);
    filter:brightness(1.1);
  }
 
  /* original brand color as the circle background, white icon on top */
  .social-icons a.fb{
    background:#1877F2;
  }
 
  .social-icons a.insta{
    background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  }
 
  .social-icons svg{
    width:20px;
    height:20px;
    display:block;
    fill:#ffffff;
  }
 
  .logo-box{
    display:inline-block;
    /*background:#ffffff;     */
    padding:10px 16px;
    border-radius:6px;
    line-height:0;
    margin-bottom:16px;
  }
 
  .logo-box img{
    max-width:180px;
    height:70px;
    width:auto;
    display:block;
    margin-left: -15px;
  }
 
  .col-brand p{
    margin-top:18px;
    color:var(--text-muted);
    font-size:14px;
    line-height:1.6;
    max-width:280px;
  }
 
  /* ---- Column headings ---- */
  .footer-col h3{
    font-size:17px;
    letter-spacing:.5px;
    color:#fff;
    margin-bottom:20px;
    position:relative;
    padding-bottom:10px;
    font-family: 'DM Sans'. sans-serif;
  }
 
  .footer-col h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:36px;
    height:2px;
    background:var(--gold);
  }
 
  /* ---- Column 2 : quick links ---- */
  .quick-links{
    list-style:none;
  }
 
  .quick-links li{
    margin-bottom:12px;
  }
 
  .quick-links a{
    color:#FFFFFF;
    text-decoration:none;
    font-size:16px;
    font-family: 'DM Sans', sans-serif;
    transition:color .2s ease, padding-left .2s ease;
  }
 
  .quick-links a:hover{
    color:var(--gold);
    padding-left:4px;
  }
 
  /* ---- Column 3 : contact info ---- */
  .contact-info{
    list-style:none;
  }
 
  .contact-info li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
    font-size:16px;
    color:#FFFFFF;
    line-height:1.5;
    font-family: 'DM Sans', sans-serif;
  }
 
  .contact-info svg{
    width:22px;
    height:22px;
    flex-shrink:0;
    margin-top:2px;
    fill:var(--gold);
  }
 
  .contact-info a{
    color:#FFFFFF;
    text-decoration:none;
  }
 
  .contact-info a:hover{
    color:var(--gold);
  }
 
  /* ===== FOOTER BOTTOM ===== */
 .footer-bottom {
  text-align: center;
  padding: 20px 24px 22px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  color: #FFF;
  border-top: 1px solid var(--divider);
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom,
.footer-bottom p,
.footer-bottom span {
    color: #fff !important;
}

.footer-bottom a {
    color: var(--gold);
}

  /* ============================================
     FLOATING BUTTON
     ============================================ */   







.fab-stack {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
 
  .fab {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    box-shadow:
      0 10px 24px -8px rgba(0, 0, 0, 0.35),
      0 2px 6px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease, filter 0.28s ease;
    -webkit-tap-highlight-color: transparent;
  }
 
  .fab:hover {
    transform: translateY(-4px) scale(1.06);
    filter: brightness(1.06);
    box-shadow:
      0 16px 30px -10px rgba(0, 0, 0, 0.4),
      0 4px 10px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
 
  .fab:active {
    transform: translateY(-1px) scale(0.97);
  }
 
  /* tooltip */
  .fab::before {
    content: attr(aria-label);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: #1a1a1a;
    color: #fff;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 7px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  }
 
  .fab::after {
    content: "";
    position: absolute;
    right: calc(100% + 5px);
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1a1a1a;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
 
  .fab:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
 
  .fab:hover::after {
    opacity: 1;
  }
 
  /* WhatsApp — official brand green */
  .fab-whatsapp {
    background: radial-gradient(circle at 30% 25%, #3fdb6a, #25D366 55%, #1ebe5a 100%);
  }
 
  /* Phone — premium blue */
  .fab-call {
    background: radial-gradient(circle at 30% 25%, #4da3ff, #1a73e8 55%, #0f56b8 100%);
  }
 
  /* Go to top — matching premium blue, slightly deeper */
  .fab-top {
    width: 44px;
    height: 44px;
    background: radial-gradient(circle at 30% 25%, #3f8ff2, #0f56b8 55%, #0a3f8c 100%);
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
 
  /* subtle pulse ring to draw attention to WhatsApp */
  @keyframes fabPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }
 
  .fab-whatsapp {
    animation: fabPulse 2.6s ease-out infinite;
  }
  
  
 
  /* ============================================
     Popup
     ============================================ */   
  
  
  
  
 .overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  display: none;
}

.popup {
  position: relative;
  width: 380px;
  max-width: 90vw;
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 32px 36px;
  text-align: center;
  box-shadow: none;
  animation: pop 0.35s cubic-bezier(.34,1.56,.64,1);
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.close-btn {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 34px;
  height: 34px;
  background: #000000;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.close-btn:hover {
  background: #333333;
  transform: scale(1.08);
}

.icon-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  background: #000000;
  border-radius: 22px 22px 22px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transform: rotate(-4deg);
}

.icon-wrap svg {
  width: 42px;
  height: 42px;
  stroke: #ffffff;
}

h2 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 800;
  color: #000000;
  letter-spacing: 0.3px;
}

p {
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 1.5;
  color: #444444;
  padding: 0 8px;
}

.go-back-btn {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 13px 42px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.go-back-btn:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: none;
}

.go-back-btn:active {
  transform: translateY(0);
}