/* ============================================================
   ESTATECMS — Public site stylesheet
   ============================================================ */

:root{
  --navy:      #0E1B2E;
  --blue:      #2A5C99;
  --blue-dark: #1C4470;
  --blue-pale: #EAF1FA;
  --sky:       #6E8FB8;
  --ink:       #16212F;
  --grey-700:  #4B5563;
  --grey-500:  #8891A0;
  --grey-300:  #D7DDE5;
  --grey-100:  #F4F6F9;
  --white:     #FFFFFF;
  --success:   #2E7D4F;
  --warning:   #B4872C;

  --display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1200px;
  --radius: 4px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; font-family:var(--sans); color:var(--ink); background:var(--white);
  -webkit-font-smoothing:antialiased; line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--display); font-weight:700; margin:0; letter-spacing:-.01em; line-height:1.2; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:var(--sans); cursor:pointer; }

.wrap{ max-width:var(--container); margin:0 auto; padding:0 28px; }
.section{ padding:72px 0; }
@media (max-width:767px){ .section{ padding:44px 0; } }
.section--alt{ background:var(--grey-100); }
.section--dark{ background:var(--navy); color:rgba(255,255,255,.9); }
.section--dark h2, .section--dark h3{ color:#fff; }
.eyebrow{
  display:inline-flex; align-items:center; gap:10px; font-weight:700; font-size:11.5px;
  letter-spacing:.14em; text-transform:uppercase; color:var(--blue);
}
.eyebrow::before{ content:""; width:20px; height:1px; background:var(--blue); }
.section-head{ max-width:640px; margin-bottom:36px; }
.section-head h2{ font-size:clamp(24px,2.8vw,34px); margin-top:10px; }
.section-head p{ color:var(--grey-700); margin-top:10px; font-size:15.5px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 26px; border-radius:var(--radius); font-weight:700; font-size:13.5px;
  border:1px solid transparent; transition:all .2s ease; white-space:nowrap; cursor:pointer;
}
.btn--primary{ background:var(--blue); color:#fff; }
.btn--primary:hover{ background:var(--blue-dark); }
.btn--outline{ border-color:var(--grey-300); color:var(--ink); background:#fff; }
.btn--outline:hover{ border-color:var(--blue); color:var(--blue); }
.btn--outline-light{ border-color:rgba(255,255,255,.4); color:#fff; }
.btn--outline-light:hover{ border-color:#fff; background:rgba(255,255,255,.08); }
.btn--full{ width:100%; }
.btn--sm{ padding:9px 16px; font-size:12.5px; }

.badge{ display:inline-flex; align-items:center; padding:5px 10px; font-size:10.5px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; border-radius:3px; }
.badge--ongoing{ background:var(--blue-pale); color:var(--blue-dark); }
.badge--ready{ background:#EAF6EE; color:var(--success); }
.badge--upcoming{ background:#FBF3E4; color:var(--warning); }

/* ---------------- Wordmark (matches homepage) ---------------- */
.wordmark{
  display:inline-flex; align-items:baseline; gap:1px;
  font-family: var(--display); font-weight:800; font-size:21px;
  letter-spacing:.01em; white-space:nowrap;
}
.wordmark .w1{ color: var(--ink); }
.wordmark .w2{ color: var(--blue); }
.wordmark--light .w1{ color:#fff; }
.wordmark--light .w2{ color: var(--sky); }
.wordmark-tag{
  display:block; font-family: var(--sans); font-weight:700; font-size:10.5px;
  letter-spacing:.18em; text-transform:uppercase; color: rgba(255,255,255,.5); margin-top:6px;
}

/* Subtle blueprint dot-grid pattern, matching the homepage */
.section, .p-hero{
  background-color: var(--white);
  background-image: radial-gradient(var(--grey-300) 1px, transparent 1px);
  background-size: 26px 26px;
}
.section--alt{ background-color: var(--grey-100); }
.section--dark{
  background-color: var(--navy);
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
}

/* Survey-corner signature frame, matching the homepage */
.survey-frame{ position:relative; }
.survey-frame::before, .survey-frame::after,
.survey-frame > .tick-br, .survey-frame > .tick-bl{
  content:""; position:absolute; width:15px; height:15px;
  border: 1.5px solid var(--blue); opacity:.8;
}
.survey-frame::before{ top:-1px; left:-1px; border-right:none; border-bottom:none; }
.survey-frame::after{ top:-1px; right:-1px; border-left:none; border-bottom:none; }
.survey-frame .tick-bl{ bottom:-1px; left:-1px; border-right:none; border-top:none; }
.survey-frame .tick-br{ bottom:-1px; right:-1px; border-left:none; border-top:none; }

/* ---------------- Header ---------------- */
.site-header{ position:sticky; top:0; z-index:100; background:rgba(255,255,255,.94); backdrop-filter:blur(10px); border-bottom:1px solid var(--grey-300); }
.nav{ display:flex; align-items:center; justify-content:space-between; padding:15px 0; gap:16px; position:relative; z-index:101; }
.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{ font-size:14px; font-weight:600; color:var(--ink); position:relative; padding:4px 0; }
.nav-links a::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:1.5px; background:var(--blue); transition:width .25s ease; }
.nav-links a:hover::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:14px; flex:none; }
.nav-cta a[href^="tel"]{ font-size:13.5px; font-weight:700; color:var(--blue); }

.nav-toggle{
  display:none; background:none; border:none; width:34px; height:26px;
  position:relative; flex-direction:column; justify-content:space-between; flex:none; padding:0; z-index:101;
}
.nav-toggle span{ display:block; height:2px; width:100%; background:var(--ink); border-radius:2px; transition:transform .25s ease, opacity .2s ease; transform-origin:center; }
.nav-toggle.is-active span:nth-child(1){ transform:translateY(12px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity:0; }
.nav-toggle.is-active span:nth-child(3){ transform:translateY(-12px) rotate(-45deg); }

.nav-backdrop{ position:fixed; inset:0; background:rgba(14,27,46,.42); z-index:98; opacity:0; visibility:hidden; transition:opacity .25s ease; }
.nav-backdrop.is-open{ opacity:1; visibility:visible; }
body.no-scroll{ overflow:hidden; }

@media (max-width:920px){
  .nav-links{
    position:fixed; top:0; right:0; left:auto; bottom:0; height:100vh; height:100dvh;
    width:min(320px,82vw); background:var(--white); z-index:99;
    flex-direction:column; align-items:flex-start;
    padding:calc(var(--header-h,70px) + 24px) 28px 30px;
    gap:22px; transform:translateX(100%); opacity:1; pointer-events:none;
    transition:transform .3s ease; border-left:1px solid var(--grey-300);
    box-shadow:-18px 0 40px -20px rgba(14,27,46,.25); overflow-y:auto; -webkit-overflow-scrolling:touch;
  }
  .nav-links.is-open{ transform:translateX(0); pointer-events:auto; }
  .nav-links a{ font-size:19px; width:100%; padding:6px 0; flex:none; }
  .nav-cta{ display:none; }
  .nav-toggle{ display:flex; }
}
@media (max-width:400px){ .wordmark{ font-size:17px; } }

/* Simplified header (project detail page): logo + menu only, at every width */
body.force-drawer-nav .nav-cta{ display:none; }
body.force-drawer-nav .nav-toggle{ display:flex; }
body.force-drawer-nav .nav-links{
  position:fixed; top:0; right:0; left:auto; bottom:0; height:100vh; height:100dvh;
  width:min(320px,82vw); background:var(--white); z-index:99;
  flex-direction:column; align-items:flex-start;
  padding:calc(var(--header-h,70px) + 24px) 28px 30px;
  gap:22px; transform:translateX(100%); opacity:1; pointer-events:none;
  transition:transform .3s ease; border-left:1px solid var(--grey-300);
  box-shadow:-18px 0 40px -20px rgba(14,27,46,.25); overflow-y:auto; -webkit-overflow-scrolling:touch;
}
body.force-drawer-nav .nav-links.is-open{ transform:translateX(0); pointer-events:auto; }
body.force-drawer-nav .nav-links a{ font-size:19px; width:100%; padding:6px 0; flex:none; }

/* ---------------- Hero (home) ---------------- */
.home-hero{ padding:80px 0 60px; background:linear-gradient(180deg,var(--grey-100),#fff); }
.home-hero h1{ font-size:clamp(32px,4.5vw,52px); max-width:720px; }
.home-hero p{ color:var(--grey-700); font-size:17px; max-width:560px; margin-top:18px; }
.home-hero .btn{ margin-top:28px; }

/* ---------------- Project cards (listing) ---------------- */
.project-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
@media (max-width:980px){ .project-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .project-grid{ grid-template-columns:1fr; } }

.project-card{ background:#fff; border:1px solid var(--grey-300); overflow:hidden; transition:box-shadow .2s ease, transform .2s ease; }
.project-card:hover{ box-shadow:0 24px 40px -26px rgba(14,27,46,.35); transform:translateY(-3px); }
.project-card__img{ height:190px; background:var(--grey-100) center/cover no-repeat; position:relative; }
.project-card__img .badge{ position:absolute; top:12px; left:12px; }
.project-card__body{ padding:20px; }
.project-card__loc{ font-size:12.5px; color:var(--grey-500); }
.project-card__name{ font-size:19px; margin-top:4px; }
.project-card__meta{ display:flex; justify-content:space-between; margin-top:14px; padding-top:14px; border-top:1px solid var(--grey-300); font-size:13px; color:var(--grey-700); }
.project-card__meta b{ color:var(--ink); display:block; font-size:14.5px; }

/* ---------------- Filter bar ---------------- */
.filter-bar{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:32px; }
.filter-bar select, .filter-bar input{
  padding:11px 14px; border:1px solid var(--grey-300); border-radius:var(--radius);
  font-family:var(--sans); font-size:13.5px; background:#fff; color:var(--ink);
}

/* ---------------- Project detail: sticky sub-nav ---------------- */
.subnav{ position:sticky; top:65px; z-index:90; background:#fff; border-bottom:1px solid var(--grey-300); overflow-x:auto; }
.subnav__inner{ display:flex; gap:26px; padding:14px 28px; max-width:var(--container); margin:0 auto; white-space:nowrap; }
.subnav a{ font-size:13.5px; font-weight:600; color:var(--grey-700); padding:4px 0; border-bottom:2px solid transparent; }
.subnav a.active, .subnav a:hover{ color:var(--blue); border-color:var(--blue); }

/* ---------------- Project hero ---------------- */
.p-hero{ background:var(--grey-100); padding:0; }
.p-hero__media{
  position:relative; height:min(64vh,520px); min-height:340px;
  background:var(--grey-300) center/cover no-repeat;
  display:flex; align-items:flex-end;
}
.p-hero__scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(14,27,46,0) 25%, rgba(14,27,46,.55) 70%, rgba(14,27,46,.88) 100%);
}
.p-hero__overlay{ position:relative; z-index:1; padding:32px 28px 36px; width:100%; }
.p-hero__overlay .p-hero__loc{ font-size:13px; color:rgba(255,255,255,.78); }
.p-hero h1{ font-size:clamp(28px,4vw,42px); margin-top:6px; color:#fff; }
.p-hero__overlay .p-hero__dev{ font-size:14px; color:rgba(255,255,255,.82); margin-top:8px; }
.p-hero__cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:22px; }
@media (max-width:640px){ .p-hero__media{ height:min(72vh,440px); } .p-hero__overlay{ padding:24px 20px 28px; } }
.p-strip{ display:flex; flex-wrap:wrap; gap:0; background:#fff; border:1px solid var(--grey-300); margin-top:-1px; }
.p-strip__item{ flex:1; min-width:140px; padding:18px 22px; border-right:1px solid var(--grey-300); }
.p-strip__item span{ display:block; font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--grey-500); }
.p-strip__item b{ display:block; font-size:15.5px; margin-top:5px; }
.p-rera{ font-size:11.5px; color:var(--grey-500); padding:10px 0 18px; }

/* ---------------- Highlights ---------------- */
.highlight-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--grey-300); border:1px solid var(--grey-300); }
@media (max-width:860px){ .highlight-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .highlight-grid{ grid-template-columns:1fr; } }
.highlight-card{ background:#fff; padding:20px 22px; display:flex; align-items:center; gap:16px; }
.highlight-card__icon{ width:44px; height:44px; border-radius:50%; background:var(--blue-pale); display:flex; align-items:center; justify-content:center; color:var(--blue); flex:none; }
.highlight-card__text{ min-width:0; }
.highlight-card h3{ font-size:15.5px; }
.highlight-card p{ font-size:13px; color:var(--grey-700); margin-top:4px; }

/* ---------------- Amenities ---------------- */
.amenity-cat + .amenity-cat{ margin-top:28px; }
.amenity-cat h4{ font-size:14px; text-transform:uppercase; letter-spacing:.05em; color:var(--blue); }
.amenity-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.amenity-list span{ font-size:13.5px; padding:9px 14px; border:1px solid var(--grey-300); border-radius:20px; }

@media (max-width:767px){
  .amenity-container{ position:relative; max-height:380px; overflow:hidden; transition:max-height .3s ease; }
  .amenity-container.is-expanded{ max-height:none; }
  .amenity-container.is-clipped::after{
    content:""; position:absolute; left:0; right:0; bottom:0; height:70px;
    background:linear-gradient(to bottom, transparent, var(--grey-100));
    pointer-events:none;
  }
}

/* ---------------- Configurations ---------------- */
.config-table{ width:100%; border-collapse:collapse; }
.config-table th, .config-table td{ text-align:left; padding:14px 16px; border-bottom:1px solid var(--grey-300); font-size:13.5px; }
.config-table th{ font-size:11px; text-transform:uppercase; letter-spacing:.05em; color:var(--grey-500); }
.config-table tr:hover td{ background:var(--grey-100); }
.config-cta-btn{
  display:inline-flex; align-items:center; gap:6px; padding:7px 14px; border-radius:20px;
  border:1px solid var(--blue); color:var(--blue); font-size:12px; font-weight:700; white-space:nowrap;
  background:var(--blue-pale); transition:all .2s ease;
}
.config-cta-btn:hover{ background:var(--blue); color:#fff; }

/* ---------------- Brochure / Site Visit lead sections ---------------- */
.lead-panel{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  background:#fff; border:1px solid var(--grey-300); padding:32px;
}
.lead-panel__text{ max-width:520px; }
.lead-panel__text h2{ font-size:clamp(20px,2.2vw,26px); }
.lead-panel__text p{ color:var(--grey-700); margin-top:8px; font-size:14.5px; }
.lead-panel--dark{ background:var(--navy); border-color:var(--navy); }
.lead-panel--dark h2, .lead-panel--dark p{ color:#fff; }
.lead-panel--dark p{ color:rgba(255,255,255,.65); }

/* ---------------- Gallery ---------------- */
.gallery-tabs{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:20px; }
.gallery-tabs button{ padding:8px 16px; border:1px solid var(--grey-300); background:#fff; border-radius:20px; font-size:12.5px; font-weight:600; }
.gallery-tabs button.active{ background:var(--blue); color:#fff; border-color:var(--blue); }
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
@media (max-width:860px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } }
.gallery-grid img{ width:100%; height:160px; object-fit:cover; cursor:pointer; border-radius:var(--radius); }
.lightbox{ position:fixed; inset:0; background:rgba(14,27,46,.92); z-index:1000; display:none; align-items:center; justify-content:center; padding:20px; }
.lightbox.is-open{ display:flex; }
.lightbox img{ max-width:92vw; max-height:82vh; object-fit:contain; }
.lightbox__close, .lightbox__prev, .lightbox__next{ position:fixed; background:rgba(255,255,255,.12); color:#fff; border:none; width:44px; height:44px; border-radius:50%; font-size:18px; }
.lightbox__close{ top:20px; right:20px; }
.lightbox__prev{ left:20px; top:50%; transform:translateY(-50%); }
.lightbox__next{ right:20px; top:50%; transform:translateY(-50%); }

/* ---------------- Video Gallery ---------------- */
.video-gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
@media (max-width:860px){ .video-gallery-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .video-gallery-grid{ grid-template-columns:1fr; } }
.video-card{
  position:relative; display:block; width:100%; padding:0; border:1px solid var(--grey-300);
  background:#000; border-radius:var(--radius); overflow:hidden; cursor:pointer; text-align:left;
}
.video-card img{ width:100%; height:180px; object-fit:cover; display:block; opacity:.88; }
.video-card__play{
  position:absolute; top:0; left:0; right:0; bottom:0; display:flex; align-items:center; justify-content:center;
  background:rgba(14,27,46,.25); transition:background .2s ease;
}
.video-card__play svg{ width:52px; height:52px; filter:drop-shadow(0 4px 10px rgba(0,0,0,.4)); }
.video-card:hover .video-card__play{ background:rgba(14,27,46,.4); }
.video-card__title{
  position:absolute; left:0; right:0; bottom:0; padding:10px 12px; font-size:13px; font-weight:600; color:#fff;
  background:linear-gradient(to top, rgba(0,0,0,.75), transparent);
}
.video-card--file{ background:var(--grey-100); cursor:default; }
.video-card--file video{ width:100%; height:180px; object-fit:cover; display:block; background:#000; }
.video-card--file .video-card__title{ position:static; background:none; color:var(--ink); padding:8px 4px 0; }

.video-lightbox{
  position:fixed; inset:0; background:rgba(14,27,46,.92); z-index:1000;
  display:none; align-items:center; justify-content:center; padding:20px;
}
.video-lightbox.is-open{ display:flex; }
.video-lightbox__frame{ width:100%; max-width:960px; aspect-ratio:16/9; background:#000; }
.video-lightbox__frame iframe{ width:100%; height:100%; border:0; }

/* ---------------- Specifications ---------------- */
.spec-cat{ border:1px solid var(--grey-300); margin-bottom:12px; }
.spec-cat__head{ padding:16px 20px; font-weight:700; background:var(--grey-100); cursor:pointer; display:flex; justify-content:space-between; }
.spec-cat__body{ display:none; padding:6px 20px 16px; }
.spec-cat.open .spec-cat__body{ display:block; }
.spec-row{ display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--grey-300); font-size:13.5px; }
.spec-row:last-child{ border-bottom:none; }
.spec-row span:first-child{ color:var(--grey-700); }
.spec-row span:last-child{ font-weight:600; text-align:right; }

/* ---------------- Location ---------------- */
.location-grid{ display:grid; grid-template-columns:1fr 1fr; gap:36px; }
@media (max-width:860px){ .location-grid{ grid-template-columns:1fr; } }
.location-list li{ display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--grey-300); font-size:13.5px; }
.location-list li b{ color:var(--blue); }
.map-frame{ width:100%; height:340px; border:1px solid var(--grey-300); background:var(--grey-100); }
.map-frame iframe{ width:100%; height:100%; border:0; }

/* ---------------- Section-closing CTA (Amenities, Plans, etc.) ---------------- */
.section-cta{ margin-top:36px; padding-top:24px; border-top:1px solid var(--grey-300); }

/* ---------------- Enquiry form ---------------- */
.enquiry-box{ background:#fff; border:1px solid var(--grey-300); padding:28px; max-width:440px; }
.form-row{ margin-top:16px; }
.form-row label{ display:block; font-size:12.5px; font-weight:700; margin-bottom:6px; }
.form-row input, .form-row select, .form-row textarea{
  width:100%; padding:11px 13px; border:1px solid var(--grey-300); border-radius:var(--radius);
  font-family:var(--sans); font-size:14px; background:var(--grey-100);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{ outline:2px solid var(--blue); background:#fff; }
.form-msg{ margin-top:14px; padding:11px 13px; font-size:13px; border-left:3px solid; }
.form-msg--success{ background:#EAF6EE; border-color:var(--success); color:#1E5C36; }
.form-msg--error{ background:#FBEBEA; border-color:#B4432E; color:#8C3323; }
.hp-field{ position:absolute; left:-9999px; }

/* ---------------- Enquiry modal (popup) ---------------- */
.modal-overlay{
  position:fixed; inset:0; background:rgba(14,27,46,.55);
  display:flex; align-items:center; justify-content:center; padding:20px;
  z-index:1000; opacity:0; visibility:hidden; transition:opacity .25s ease;
}
.modal-overlay.is-open{ opacity:1; visibility:visible; }
.modal-box{
  background:var(--white); width:100%; max-width:420px; padding:34px;
  position:relative; transform:translateY(14px) scale(.98); transition:transform .25s ease;
  box-shadow:0 40px 80px -30px rgba(14,27,46,.4); max-height:90vh; overflow-y:auto;
}
.modal-overlay.is-open .modal-box{ transform:none; }
.modal-close{
  position:absolute; top:14px; right:14px; width:32px; height:32px;
  border:1px solid var(--grey-300); background:none; border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:16px; color:var(--grey-500);
  transition:all .2s ease;
}
.modal-close:hover{ border-color:var(--blue); color:var(--blue); }
.modal-box h3{ font-size:20px; }
.modal-box p.sub{ color:var(--grey-700); font-size:14px; margin-top:6px; }

/* ---------------- WhatsApp float ---------------- */
.whatsapp-float{
  position:fixed; right:20px; bottom:24px; z-index:95;
  width:56px; height:56px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 28px -12px rgba(37,211,102,.65); transition:transform .2s ease;
}
.whatsapp-float:hover{ transform:translateY(-2px) scale(1.05); }
.whatsapp-float svg{ width:28px; height:28px; }

/* ---------------- Sticky bottom bar: MOBILE (Call Now + Enquire Now) ---------------- */
.mobile-cta{ display:none; }
@media (max-width:767px){
  .mobile-cta{
    display:flex; position:fixed; left:0; right:0; bottom:0; z-index:96;
    background:#fff; border-top:1px solid var(--grey-300); padding:10px 14px calc(10px + env(safe-area-inset-bottom));
    gap:10px; box-shadow:0 -8px 20px -14px rgba(14,27,46,.3);
  }
  .mobile-cta a{ flex:1; text-align:center; }
  body.has-mobile-cta{ padding-bottom:72px; }
  body.has-mobile-cta .whatsapp-float{ bottom:88px; }
}

/* ---------------- Sticky bottom bar: DESKTOP (inline Name/Phone/Email/Submit form) ---------------- */
.sticky-enquire-form{ display:none; }
@media (min-width:768px){
  .sticky-enquire-form{
    display:block; position:fixed; left:0; right:0; bottom:0; z-index:96;
    background:var(--navy); border-top:1px solid rgba(255,255,255,.12);
    padding:14px 0; box-shadow:0 -10px 28px -16px rgba(14,27,46,.4);
  }
  .sticky-enquire-form__inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
  .sticky-enquire-form__label{ color:#fff; flex:none; min-width:0; }
  .sticky-enquire-form__label .name{ display:block; font-family:var(--display); font-weight:700; font-size:15px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:260px; }
  .sticky-enquire-form__label .price{ font-size:12.5px; color:rgba(255,255,255,.6); }
  .sticky-enquire-form__fields{ display:flex; gap:10px; flex:1; max-width:640px; }
  .sticky-enquire-form__fields input{
    flex:1; min-width:0; padding:10px 12px; border:1px solid rgba(255,255,255,.2); border-radius:var(--radius);
    background:rgba(255,255,255,.08); color:#fff; font-family:var(--sans); font-size:13.5px;
  }
  .sticky-enquire-form__fields input::placeholder{ color:rgba(255,255,255,.5); }
  .sticky-enquire-form__fields input:focus{ outline:none; border-color:var(--sky); background:rgba(255,255,255,.14); }
  .sticky-enquire-form__fields button{ flex:none; }
  body.has-sticky-enquire{ padding-bottom:84px; }
  body.has-sticky-enquire .whatsapp-float{ bottom:100px; }
}
@media (min-width:768px) and (max-width:1080px){
  .sticky-enquire-form__label .price{ display:none; }
}

/* ---------------- Footer ---------------- */
.site-footer{ background:var(--navy); color:rgba(255,255,255,.55); padding:48px 0 26px; }
.site-footer a:hover{ color:#fff; }
.footer-top{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:30px; padding-bottom:26px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-cols{ display:flex; gap:50px; flex-wrap:wrap; }
.footer-cols h5{ font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:#fff; }
.footer-cols ul{ margin-top:12px; display:flex; flex-direction:column; gap:8px; font-size:13.5px; }
.footer-bottom{ padding-top:18px; font-size:12px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }

/* ---------------- 404 ---------------- */
.state-404{ min-height:50vh; display:flex; align-items:center; text-align:center; }
.state-404 .wrap{ max-width:480px; }
.state-404 h1{ font-size:64px; color:var(--blue); }

/* ---------------- Thank You page (project enquiries) ---------------- */
.thankyou{ min-height:56vh; display:flex; align-items:center; }
.thankyou-box{ max-width:560px; margin:0 auto; text-align:center; }
.thankyou-icon{
  width:72px; height:72px; border-radius:50%; background:var(--blue-pale);
  border:1.5px solid var(--blue); display:flex; align-items:center; justify-content:center; margin:0 auto 26px;
}
.thankyou-icon svg{ width:30px; height:30px; stroke:var(--blue); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.thankyou h1{ font-size:clamp(26px,3.6vw,36px); }
.thankyou p{ color:var(--grey-700); font-size:15.5px; margin-top:14px; }
.thankyou-actions{ margin-top:30px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------------- Utility ---------------- */
.skeleton{ background:linear-gradient(90deg,var(--grey-100) 25%,#eef1f5 37%,var(--grey-100) 63%); background-size:400% 100%; animation:shimmer 1.4s ease infinite; }
@keyframes shimmer{ 0%{background-position:100% 0;} 100%{background-position:0 0;} }
:focus-visible{ outline:2px solid var(--blue); outline-offset:2px; }
@media (prefers-reduced-motion: reduce){ *{ animation:none !important; transition:none !important; } html{ scroll-behavior:auto; } }
