/* =========================================================================
   NestPro Property Management
   Stylesheet — Global tokens + Header / Navigation
   No inline CSS anywhere. All styling lives in this file.
   ========================================================================= */

/* ------------------------------ Design tokens --------------------------- */
:root {
  /* Brand palette */
  --blue:        #0B3C91;
  --blue-deep:   #0a2f73;
  --blue-ink:    #12245e;
  --gold:        #C9A13B;
  --gold-deep:   #b8912f;
  --white:       #FFFFFF;
  --dark:        #111111;
  --gray:        #F5F7FA;
  --border:      #E8E8E8;
  --muted:       #5b616e;
  --wa:          #25D366;
  --wa-deep:     #1eb457;

  /* Typography */
  --font-head: "Manrope", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;

  /* Layout */
  --nav-h: 88px;
  --nav-h-sm: 72px;
  --radius: 20px;
  --pill: 999px;

  /* Effects */
  --shadow-nav: 0 12px 40px rgba(11, 60, 145, .10);
  --shadow-blue: 0 10px 24px rgba(11, 60, 145, .30);
  --shadow-gold: 0 12px 30px rgba(201, 161, 59, .40);
  --shadow-wa:  0 10px 24px rgba(37, 211, 102, .32);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --t: .4s var(--ease);
}

/* ------------------------------ Base ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a   { text-decoration: none; color: inherit; }
ul  { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

/* Accessibility: skip link */
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 2000;
  padding: .7rem 1.1rem;
  background: var(--blue);
  color: #fff;
  border-radius: 0 0 12px 12px;
  font-family: var(--font-body);
  font-weight: 600;
  transition: top var(--t);
}
.skip-link:focus { top: 0; outline: 3px solid var(--gold); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* ========================================================================
   NAVBAR SHELL
   ======================================================================== */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: height var(--t), background var(--t),
              box-shadow var(--t), border-color var(--t);
}

/* Scrolled state — turns white */
.site-nav.scrolled {
  height: var(--nav-h-sm);
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
          backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-nav);
}

/* Premium full-width container with responsive side padding
   (Bootstrap .container caps at 1140px on laptops → too much side gap) */
.nav-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 3rem);
}

.nav-inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

/* Right cluster keeps the CTAs + hamburger together on the right at every size */
.nav-right {
  display: flex;
  align-items: center;
  gap: .6rem;
}

/* ------------------------------ Brand / Logo ---------------------------- */
.brand { display: inline-flex; align-items: center; gap: .7rem; }

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-ink));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14), var(--shadow-blue);
}
/* Gold accent dot */
.brand-mark::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 161, 59, .22);
}

.brand-text { display: flex; flex-direction: column; line-height: 1; }

.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -.02em;
  color: #fff;
  transition: color var(--t);
}
.brand-name b { color: var(--gold); font-weight: 800; }

.brand-sub {
  margin-top: 5px;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .13em;
  white-space: nowrap;
  color: rgba(255, 255, 255, .72);
  transition: color var(--t);
}

/* Brand colours once navbar is white */
.site-nav.scrolled .brand-name { color: var(--dark); }
.site-nav.scrolled .brand-sub  { color: var(--blue); }

/* Dark brand variant (used inside offcanvas over white) */
.brand--dark .brand-name { color: var(--dark); }
.brand--dark .brand-sub  { color: var(--blue); }

/* Image logo (used in the header) — sized to fill the nav height */
.brand-logo {
  display: block;
  height: 68px;
  width: auto;
  border-radius: 10px;
  transition: height var(--t);
}
.site-nav.scrolled .brand-logo { height: 56px; }
.mobile-menu .brand-logo { height: 52px; }
@media (max-width: 575.98px) {
  .brand-logo { height: 56px; }
  .site-nav.scrolled .brand-logo { height: 50px; }
}

/* ------------------------------ Center menu ----------------------------- */
.nav-menu {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: .35rem 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  color: rgba(255, 255, 255, .88);
  transition: color var(--t);
}
/* Underline reveal (grows from centre) */
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: translateX(-50%);
  transition: width .38s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: #fff; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* White navbar link colours */
.site-nav.scrolled .nav-link { color: var(--muted); }
.site-nav.scrolled .nav-link:hover,
.site-nav.scrolled .nav-link.active { color: var(--dark); }

/* ------------------------------ Right actions --------------------------- */
.nav-actions { display: inline-flex; align-items: center; gap: .65rem; }

.btn-nav {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .58rem 1.15rem;
  border: 0;
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .88rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.btn-nav i { font-size: 1rem; }
.btn-nav:hover { transform: translateY(-2px); }

/* WhatsApp */
.btn-wa { background: var(--wa); color: #fff; box-shadow: var(--shadow-wa); }
.btn-wa:hover { background: var(--wa-deep); box-shadow: 0 14px 30px rgba(37, 211, 102, .45); }

/* Call — blue base, gold gradient reveal on hover */
.btn-call { color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-deep)); box-shadow: var(--shadow-blue); }
.btn-call::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  transition: opacity var(--t);
}
.btn-call:hover { box-shadow: var(--shadow-gold); }
.btn-call:hover::before { opacity: 1; }

/* ------------------------------ Hamburger ------------------------------- */
.nav-toggler {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.nav-toggler span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: background var(--t), transform var(--t), opacity var(--t);
}
.nav-toggler span:nth-child(1) { top: 17px; }
.nav-toggler span:nth-child(2) { top: 23px; }
.nav-toggler span:nth-child(3) { top: 29px; }
.site-nav.scrolled .nav-toggler span { background: var(--dark); }
.nav-toggler:hover span { background: var(--gold); }

/* ========================================================================
   OFFCANVAS — mobile menu
   ======================================================================== */
.mobile-menu {
  /* Set width via Bootstrap's own variable so it always wins */
  --bs-offcanvas-width: min(90vw, 380px);
  border-left: 1px solid var(--border);
  background: var(--white);
}
.mobile-menu .offcanvas-header {
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
/* Let the brand shrink instead of sliding under the close button */
.mobile-menu .offcanvas-header .brand { min-width: 0; }
.mobile-menu .brand-mark { flex: 0 0 auto; width: 40px; height: 40px; font-size: 1.05rem; }
.mobile-menu .brand-text { min-width: 0; }
.mobile-menu .brand-name { font-size: 1.14rem; }
.mobile-menu .brand-sub {
  letter-spacing: .08em;
  font-size: .54rem;
  white-space: normal;   /* wrap so full "& MAINTENANCE" stays visible in the narrow panel */
  line-height: 1.3;
}

.menu-close {
  flex: 0 0 auto;
  margin-left: auto;   /* push the close button to the far right */
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--gray);
  color: var(--dark);
  font-size: 1rem;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.menu-close:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.mobile-menu .offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.3rem 1.6rem;
}

.mobile-nav { display: flex; flex-direction: column; }
.mobile-link {
  position: relative;
  display: block;
  padding: .95rem .2rem .95rem 1rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: color var(--t), padding-left var(--t);
}
/* Keep the active item a touch stronger without looking bold */
.mobile-link.active { font-weight: 600; }
.mobile-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold), var(--blue));
  transform: translateY(-50%);
  transition: height var(--t);
}
.mobile-link:hover,
.mobile-link.active { color: var(--blue); padding-left: 1.3rem; }
.mobile-link:hover::before,
.mobile-link.active::before { height: 60%; }

/* Offcanvas CTAs (full width, labels visible) */
.mobile-cta { display: grid; gap: .7rem; margin-top: 1.5rem; }
.mobile-cta .btn-nav { width: 100%; justify-content: center; padding: .95rem 1rem; font-size: .95rem; }

.mobile-contact {
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .8rem;
  font-size: .92rem;
  color: var(--muted);
}
.mobile-contact a { display: inline-flex; align-items: center; gap: .6rem; font-weight: 500; transition: color var(--t); }
.mobile-contact a:hover { color: var(--blue); }
.mobile-contact i { color: var(--gold); font-size: 1.05rem; }
.mobile-areas { display: inline-flex; align-items: center; gap: .6rem; margin: 0; }

/* Dim the page behind the offcanvas a touch nicer */
.offcanvas-backdrop.show { opacity: .55; }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */

/* Large desktop tightening (992–1199) so the centred menu never collides */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-menu { gap: 1.5rem; }
  .btn-label { display: none; }
  .nav-actions .btn-nav { width: 46px; height: 46px; padding: 0; justify-content: center; }
  /* Long subtitle would collide with the centred menu here — show wordmark only.
     Full "& Maintenance" tagline still shows on wider screens + the mobile menu. */
  .site-nav .brand-sub { display: none; }
}

/* Tablet & below — hamburger + offcanvas */
@media (max-width: 991.98px) {
  .nav-menu { display: none; }
  .nav-toggler { display: inline-block; }
  /* Keep the two CTAs as icon-only on tablet for quick enquiries */
  .btn-label { display: none; }
  .nav-actions .btn-nav { width: 46px; height: 46px; padding: 0; justify-content: center; }
}

/* Phones — CTAs move into the offcanvas, keep header airy */
@media (max-width: 575.98px) {
  :root { --nav-h: 76px; --nav-h-sm: 66px; }
  .nav-actions { display: none; }
  .brand-mark { width: 42px; height: 42px; font-size: 1.15rem; }
  .brand-name { font-size: 1.2rem; }
  .brand-sub { letter-spacing: .05em; font-size: .54rem; }
}

/* Reveal full CTA labels again inside the offcanvas regardless of breakpoint */
.mobile-cta .btn-label { display: inline; }

/* ========================================================================
   Reduced motion
   ======================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .nav-link::after, .btn-nav, .mobile-link { transition: none; }
}

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: calc(var(--nav-h) + 3.5rem) 0 5rem;
  background:
    radial-gradient(1000px 640px at 80% 6%, rgba(201, 161, 59, .22), transparent 55%),
    radial-gradient(760px 620px at 6% 96%, rgba(201, 161, 59, .08), transparent 55%),
    linear-gradient(158deg, #0a1f4d 0%, var(--blue) 52%, #081a44 100%);
}

/* --------------------------- Background layers -------------------------- */
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.hero-glow--gold { top: -120px; right: -60px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(201, 161, 59, .55), transparent 68%); }
.hero-glow--blue { bottom: -160px; left: -100px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(37, 99, 235, .40), transparent 68%); opacity: .45; }

.hero-shape { position: absolute; }
.hero-shape--ring   { top: 14%;  right: 8%;  width: 190px; height: 190px; border: 1.5px solid rgba(201, 161, 59, .35); border-radius: 50%; }
.hero-shape--square { bottom: 16%; right: 40%; width: 120px; height: 120px; border: 1.5px solid rgba(255, 255, 255, .12); border-radius: 22px; transform: rotate(18deg); }

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(1000px 600px at 50% 0%, #000 20%, transparent 72%);
          mask-image: radial-gradient(1000px 600px at 50% 0%, #000 20%, transparent 72%);
  opacity: .6;
}

.hero-container { position: relative; z-index: 2; }

/* ------------------------------- Left ---------------------------------- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  margin-bottom: 1.4rem;
  border-radius: var(--pill);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #f4e6c2;
  background: rgba(201, 161, 59, .12);
  border: 1px solid rgba(201, 161, 59, .38);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.hero-badge i { color: var(--gold); }

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.35rem, 4.6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.025em;
  margin: 0 0 1.5rem;
}
.hero-title .hero-line { display: block; }
.hero-title-accent {
  background: linear-gradient(100deg, var(--gold) 0%, #eBCB78 45%, var(--gold) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

.hero-areas { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.5rem; }
.hero-area {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .42rem .85rem;
  border-radius: var(--pill);
  font-size: .84rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
}
.hero-area i { color: var(--gold); font-size: .9rem; }

.hero-text {
  max-width: 33rem;
  margin: 0 0 2rem;
  font-size: 1.06rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
}
.hero-text strong { color: #fff; font-weight: 600; }

/* Buttons */
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.6rem; }
.btn-hero {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), color var(--t);
}
.btn-hero i { font-size: 1.1rem; }
.btn-hero:hover { transform: translateY(-3px); }

.btn-hero--primary { color: #1a1300; background: linear-gradient(135deg, #E7C878, var(--gold)); box-shadow: 0 14px 34px rgba(201, 161, 59, .40); }
.btn-hero--primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: linear-gradient(135deg, #fff, #F0DDA6); transition: opacity var(--t);
}
.btn-hero--primary:hover { box-shadow: 0 18px 40px rgba(201, 161, 59, .52); }
.btn-hero--primary:hover::before { opacity: 1; }

.btn-hero--wa {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .28);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.btn-hero--wa i { color: var(--wa); font-size: 1.2rem; transition: color var(--t); }
.btn-hero--wa:hover { background: var(--wa); border-color: var(--wa); box-shadow: 0 14px 30px rgba(37, 211, 102, .40); }
.btn-hero--wa:hover i { color: #fff; }

/* Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.4rem;
  padding-top: 1.9rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  color: #fff;
}
.hero-stat-num::after { content: ""; }
.hero-stat-label {
  margin-top: .45rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .62);
}

/* ------------------------------- Right --------------------------------- */
.hero-visual { position: relative; padding: 1.5rem; }

.hero-image {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(4, 12, 40, .55);
  border: 1px solid rgba(255, 255, 255, .12);
  will-change: transform;
}
.hero-image img { width: 100%; height: clamp(360px, 42vw, 540px); object-fit: cover; display: block; }
.hero-image-glow {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 20, 55, .55) 100%);
}

/* Floating cards */
.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 44px rgba(4, 12, 40, .30);
  border: 1px solid rgba(255, 255, 255, .7);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  will-change: transform;
}
.hero-card-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  font-size: 1.15rem;
  color: #fff;
}
.hero-card-icon--gold  { background: linear-gradient(135deg, #E7C878, var(--gold)); }
.hero-card-icon--blue  { background: linear-gradient(135deg, #2c62c9, var(--blue)); }
.hero-card-icon--green { background: linear-gradient(135deg, #34d97b, var(--wa)); }
.hero-card-body { display: flex; flex-direction: column; line-height: 1.2; }
.hero-card-body strong { font-family: var(--font-head); font-size: .92rem; font-weight: 700; color: var(--dark); }
.hero-card-body small { font-size: .74rem; color: var(--muted); }

.hero-card--verified   { top: 6%;  left: -2%; }
.hero-card--inspection { top: 46%; right: -5%; }
.hero-card--tenant     { bottom: 7%; left: 4%; }

/* Reveal starting state (only when JS/GSAP will animate) */
.js-reveal #home [data-reveal] { opacity: 0; transform: translateY(26px); }

/* ------------------------------- Responsive ---------------------------- */
@media (max-width: 991.98px) {
  .hero { padding: calc(var(--nav-h) + 2.5rem) 0 4rem; text-align: left; }
  .hero-right { margin-top: 1rem; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .hero-image img { height: clamp(320px, 60vw, 460px); }
}

@media (max-width: 575.98px) {
  .hero-visual { padding: .5rem; }
  .hero-image img { height: 300px; }
  .hero-card { padding: .6rem .75rem; gap: .55rem; border-radius: 14px; }
  .hero-card-icon { width: 34px; height: 34px; font-size: 1rem; }
  .hero-card-body strong { font-size: .82rem; }
  .hero-card-body small { font-size: .68rem; }
  .hero-card--verified   { top: 2%;  left: 0; }
  .hero-card--inspection { top: auto; bottom: 40%; right: -2%; }
  .hero-card--tenant     { bottom: 2%; left: 2%; }
  .hero-stats { gap: 1.1rem 1.6rem; }
  .btn-hero { flex: 1 1 auto; justify-content: center; }
}

/* Respect reduced-motion: show everything, no float/reveal offset */
@media (prefers-reduced-motion: reduce) {
  .js-reveal #home [data-reveal] { opacity: 1; transform: none; }
}

/* ========================================================================
   SECTION SHELL (shared)
   ======================================================================== */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  margin-bottom: .9rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--dark);
}
.text-gold { color: var(--gold); }
.section-title .text-gold { color: var(--gold); }
.section-sub {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ========================================================================
   ABOUT
   ======================================================================== */
.about { background: var(--gray); }

.about-visual { position: relative; padding: 1.5rem; }
.about-image {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px rgba(4, 12, 40, .28);
}
.about-image img { width: 100%; height: clamp(360px, 42vw, 520px); object-fit: cover; display: block; }

.about-badge {
  position: absolute;
  left: 0;
  bottom: 6%;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .85rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 18px 44px rgba(4, 12, 40, .22);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.about-badge-icon {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  color: #fff; font-size: 1.2rem;
  background: linear-gradient(135deg, var(--blue), var(--gold));
}
.about-badge-text { display: flex; flex-direction: column; line-height: 1.25; }
.about-badge-text strong { font-family: var(--font-head); font-size: .92rem; color: var(--dark); }
.about-badge-text small { font-size: .74rem; color: var(--muted); }

.about-chip {
  position: absolute;
  top: 7%; right: 0;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .9rem;
  border-radius: var(--pill);
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 14px 32px rgba(4, 12, 40, .2);
}
.about-chip i { color: var(--gold); }

.about-title { margin-bottom: 1.3rem; }
.about-text { margin: 0 0 1.1rem; font-size: 1.02rem; line-height: 1.75; color: var(--muted); }
.about-text strong { color: var(--dark); font-weight: 600; }

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem 1.2rem;
  margin: 1.6rem 0 2rem;
}
.about-points li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
}
.about-points i { flex: 0 0 auto; color: var(--gold); font-size: 1.1rem; }

.about-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.about-founder { display: flex; align-items: center; gap: .8rem; }
.about-founder-avatar {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 8px 20px rgba(11, 60, 145, .3);
}
.about-founder-info { display: flex; flex-direction: column; line-height: 1.3; }
.about-founder-info strong { font-family: var(--font-head); font-weight: 700; font-size: .98rem; color: var(--dark); }
.about-founder-info small { font-size: .8rem; color: var(--muted); }

@media (max-width: 991.98px) {
  .about-visual { max-width: 560px; margin: 0 auto; }
}
@media (max-width: 575.98px) {
  .about-visual { padding: .5rem; }
  .about-image img { height: 300px; }
  .about-points { grid-template-columns: 1fr; }
  .about-actions .btn-hero { flex: 1 1 auto; justify-content: center; }
}

/* ========================================================================
   TRANSPARENCY band
   ======================================================================== */
.transparency { background: #fff; padding: clamp(2.5rem, 5vw, 4rem) 0; }

.transparency-band {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 2.2rem 2.6rem;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(520px 320px at 90% -30%, rgba(201, 161, 59, .38), transparent 62%),
    linear-gradient(135deg, var(--blue) 0%, #0a2f73 100%);
  box-shadow: 0 26px 60px rgba(11, 60, 145, .28);
}
.transparency-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 1.9rem;
  color: #1a1300;
  background: linear-gradient(135deg, #E7C878, var(--gold));
  box-shadow: 0 10px 26px rgba(201, 161, 59, .4);
}
.transparency-title {
  margin: 0 0 .45rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  line-height: 1.35;
  color: #fff;
}
.transparency-title .text-gold { color: var(--gold); }
.transparency-sub { margin: 0; font-size: .95rem; color: rgba(255, 255, 255, .78); }

@media (max-width: 575.98px) {
  .transparency-band { flex-direction: column; text-align: center; gap: 1.1rem; padding: 2rem 1.5rem; }
}

/* ========================================================================
   NRI
   ======================================================================== */
.nri {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(760px 520px at 88% 20%, rgba(201, 161, 59, .18), transparent 58%),
    linear-gradient(150deg, #0a1f4d 0%, #0b1e42 55%, #071634 100%);
}
.nri-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.nri-glow {
  position: absolute;
  top: 10%; right: -80px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 59, .30), transparent 68%);
  filter: blur(60px);
}
.nri-shape {
  position: absolute;
  bottom: -120px; left: -80px;
  width: 320px; height: 320px;
  border: 1.5px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
}
.nri-container { position: relative; z-index: 2; }

/* Left column */
.nri-eyebrow { color: var(--gold); }
.nri-title {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -.02em;
}
.nri-sub {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .8);
}

.nri-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.4rem;
  margin: 0 0 2.4rem;
  max-width: 34rem;
}
.nri-benefit {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .98rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .92);
}
.nri-benefit-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 11px;
  font-size: 1rem;
  color: var(--gold);
  background: rgba(201, 161, 59, .14);
  border: 1px solid rgba(201, 161, 59, .28);
}

.nri-cta { display: flex; flex-wrap: wrap; gap: .9rem; }

/* Right column — map + floating cards */
.nri-visual { position: relative; padding: 1rem; }
.nri-map {
  position: relative;
  border-radius: 24px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.nri-map-svg { width: 100%; height: auto; display: block; overflow: visible; }

/* Flowing connection arcs */
.nri-arc { stroke-dasharray: 5 11; animation: nriFlow 1.1s linear infinite; opacity: .9; }
.nri-arc:nth-child(2) { animation-delay: .25s; }
.nri-arc:nth-child(3) { animation-delay: .5s; }
.nri-arc:nth-child(4) { animation-delay: .75s; }
@keyframes nriFlow { to { stroke-dashoffset: -16; } }

/* Pulsing India hub */
.nri-hub-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: nriPulse 2.6s ease-out infinite;
}
.nri-hub-ring--2 { animation-delay: 1.3s; }
@keyframes nriPulse {
  0%   { transform: scale(1);   opacity: .85; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* Floating property card */
.nri-float {
  position: absolute;
  left: -6px;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: .8rem;
  width: 240px;
  padding: .7rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 20px 46px rgba(4, 12, 40, .4);
  animation: nriFloatCard 4.5s ease-in-out infinite;
}
.nri-float-img { flex: 0 0 auto; width: 62px; height: 62px; border-radius: 12px; overflow: hidden; }
.nri-float-img img { width: 100%; height: 100%; object-fit: cover; }
.nri-float-info { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.nri-float-status {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .68rem; font-weight: 700; color: var(--wa); margin-bottom: 2px;
}
.nri-float-info strong { font-family: var(--font-head); font-size: .82rem; color: var(--dark); }
.nri-float-info small { font-size: .68rem; color: var(--muted); display: inline-flex; align-items: center; gap: .3rem; }
.nri-float-info small i { color: var(--gold); }

.nri-chip {
  position: absolute;
  top: 10%; right: -4px;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem .9rem;
  border-radius: var(--pill);
  font-size: .82rem; font-weight: 600; color: var(--dark);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 14px 32px rgba(4, 12, 40, .34);
  animation: nriFloatCard 5.2s ease-in-out infinite reverse;
}
.nri-chip i { color: var(--gold); }

@keyframes nriFloatCard {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Responsive */
@media (max-width: 991.98px) {
  .nri-visual { max-width: 560px; margin: 2rem auto 0; }
}
@media (max-width: 575.98px) {
  .nri-benefits { grid-template-columns: 1fr; gap: .8rem; }
  .nri-float { width: 200px; left: 0; }
  .nri-float-img { width: 52px; height: 52px; }
  .btn-hero { flex: 1 1 auto; justify-content: center; }
}

/* Reduced motion: stop the ambient loops */
@media (prefers-reduced-motion: reduce) {
  .nri-arc, .nri-hub-ring, .nri-float, .nri-chip { animation: none; }
}

/* ========================================================================
   MAINTENANCE SERVICES
   ======================================================================== */
.maintenance { background: var(--gray); }

.maint-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  height: 100%;
  padding: 1.7rem 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(17, 24, 39, .05);
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.maint-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 22px 44px rgba(11, 60, 145, .14);
}
.maint-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  font-size: 1.5rem;
  color: var(--blue);
  background: rgba(11, 60, 145, .08);
  transition: background .35s var(--ease), color .35s var(--ease), transform .4s var(--ease);
}
.maint-card:hover .maint-icon {
  background: linear-gradient(135deg, var(--blue), var(--gold));
  color: #fff;
  transform: rotate(-6deg) scale(1.06);
}
.maint-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  color: var(--dark);
}
.maintenance-cta { text-align: center; margin-top: 2.6rem; }

/* ========================================================================
   HOW WE WORK — timeline
   ======================================================================== */
.how { background: var(--gray); }

.how-timeline { position: relative; max-width: 1080px; margin: 0 auto; }

/* Connecting track + animated fill */
.how-track {
  position: absolute;
  z-index: 0;
  background: rgba(11, 60, 145, .12);
  border-radius: 4px;
}
.how-track-fill {
  --p: 1;                     /* fallback: filled when no JS animates it */
  position: absolute;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.how-steps { display: flex; }
.how-step { flex: 1 1 0; padding: 0 .9rem; text-align: center; }

.how-node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  color: var(--blue);
  font-size: 1.6rem;
  box-shadow: 0 10px 26px rgba(11, 60, 145, .08);
  transition: transform .45s var(--ease), background .45s var(--ease),
              color .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.how-node i { transition: transform .5s var(--ease); }
.how-num {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 4px 12px rgba(11, 60, 145, .3);
}
.how-title {
  margin: 0 0 .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.24rem;
  color: var(--dark);
}
.how-desc {
  margin: 0 auto;
  max-width: 15rem;
  font-size: .93rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Hover animation */
.how-step:hover .how-node {
  transform: translateY(-6px) scale(1.06);
  background: linear-gradient(135deg, var(--blue), var(--gold));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 20px 42px rgba(11, 60, 145, .28);
}
.how-step:hover .how-node i { transform: rotate(-8deg) scale(1.12); }

/* Horizontal (desktop) */
@media (min-width: 992px) {
  .how-track { top: 36px; left: 12.5%; right: 12.5%; height: 4px; }
  .how-track-fill { top: 0; left: 0; height: 100%; width: calc(var(--p) * 100%); }
}

/* Vertical (tablet + mobile) */
@media (max-width: 991.98px) {
  .how-steps { flex-direction: column; }
  .how-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1.4rem;
    text-align: left;
    padding: 0 0 2.6rem 0;
  }
  .how-step:last-child { padding-bottom: 0; }
  .how-node { margin: 0; }
  .how-body { padding-top: .5rem; }
  .how-desc { margin: 0; max-width: none; }
  .how-track { top: 36px; bottom: 36px; left: 34px; width: 4px; }
  .how-track-fill { top: 0; left: 0; width: 100%; height: calc(var(--p) * 100%); }
}

/* ========================================================================
   FEATURED PROPERTIES — carousel
   ======================================================================== */
.props { background: #fff; }

/* Filter chips (properties listing page) */
.prop-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.6rem;
}
.prop-filter {
  padding: .55rem 1.3rem;
  border-radius: var(--pill);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.prop-filter:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.prop-filter.is-active {
  background: linear-gradient(135deg, var(--blue), var(--gold));
  color: #fff;
  border-color: transparent;
}
.props-empty { text-align: center; color: var(--muted); font-size: 1rem; margin: 1rem 0 0; }
.props-empty a { color: var(--blue); font-weight: 600; }

/* Card */
.prop-card {
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 24, 39, .05);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.prop-card:hover {                    /* hover lift + shadow */
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(11, 60, 145, .18);
}

.prop-media { position: relative; overflow: hidden; aspect-ratio: 16 / 11; }
.prop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}
.prop-card:hover .prop-img { transform: scale(1.08); }   /* image zoom */

.prop-status {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: .38rem .85rem;
  border-radius: var(--pill);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  box-shadow: 0 6px 16px rgba(4, 12, 40, .25);
}
.prop-status--rent    { background: linear-gradient(135deg, #1e56c9, var(--blue)); }
.prop-status--sale    { background: linear-gradient(135deg, #E7C878, var(--gold)); color: #1a1300; }
.prop-status--managed { background: linear-gradient(135deg, #34d97b, var(--wa)); }

.prop-body { padding: 1.4rem 1.4rem 1.5rem; }
.prop-location {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .5rem;
  font-size: .85rem;
  color: var(--muted);
}
.prop-location i { color: var(--gold); }
.prop-name {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--dark);
}
.prop-type {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .8rem;
  border-radius: var(--pill);
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(11, 60, 145, .07);
}
.prop-type i { font-size: .95rem; }
.prop-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  color: var(--blue);
  transition: color .4s var(--ease);
}
.prop-btn i { margin-left: auto; transition: transform .4s var(--ease); }
.prop-card:hover .prop-btn { color: var(--gold); }
.prop-card:hover .prop-btn i { transform: translateX(6px); }

/* ========================================================================
   GALLERY
   ======================================================================== */
.gallery { background: var(--gray); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 1rem;
}

.gal-item {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(17, 24, 39, .06);
}
.gal-item--big  { grid-column: span 2; grid-row: span 2; }
.gal-item--wide { grid-column: span 2; }

.gal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.gal-item:hover .gal-img { transform: scale(1.1); }   /* hover zoom */

/* Overlay */
.gal-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(to top, rgba(8, 20, 55, .85) 0%, rgba(8, 20, 55, .12) 46%, transparent 72%);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-icon {
  position: absolute;
  top: 50%; left: 50%;
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .45);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.6);
  transition: opacity .45s var(--ease), transform .45s var(--ease), background .3s var(--ease);
}
.gal-item:hover .gal-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.gal-icon:hover { background: var(--gold); border-color: transparent; }
.gal-caption {
  position: relative;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  transform: translateY(10px);
  transition: transform .45s var(--ease);
}
.gal-item:hover .gal-caption { transform: translateY(0); }

/* Responsive */
@media (max-width: 991.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 175px; }
  .gal-item--big { grid-column: span 2; grid-row: span 2; }
  .gal-item--wide { grid-column: span 2; }
}
@media (max-width: 575.98px) {
  .gallery-grid { grid-auto-rows: 140px; gap: .65rem; }
}

/* ---------------------------- Lightbox --------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  background: rgba(6, 14, 35, .93);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox-stage { margin: 0; max-width: 1000px; text-align: center; }
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}
.lightbox-caption { margin-top: 1.1rem; color: #fff; font-size: .96rem; font-weight: 500; }
.lightbox-count { position: absolute; top: 26px; left: 28px; color: rgba(255, 255, 255, .8); font-weight: 600; font-size: .9rem; }

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold);
  border-color: transparent;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.06); }

@media (max-width: 575.98px) {
  .lightbox-prev  { left: 12px; }
  .lightbox-next  { right: 12px; }
  .lightbox-close, .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 1.1rem; }
}

/* ========================================================================
   TESTIMONIALS
   ======================================================================== */
.testimonials {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(680px 480px at 14% 12%, rgba(201, 161, 59, .16), transparent 55%),
    linear-gradient(160deg, #0a1f4d 0%, #0b1e42 55%, #071634 100%);
}
.testi-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.testi-glow {
  position: absolute;
  bottom: -140px; right: -100px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 59, .22), transparent 68%);
  filter: blur(60px);
}
.testi-container { position: relative; z-index: 2; }

/* Section head is on a dark background here */
.testimonials .section-title { color: #fff; }
.testimonials .section-sub { color: rgba(255, 255, 255, .8); }

.testi-carousel { position: relative; }

.testi-slide { max-width: 780px; margin: 0 auto; padding: 1rem; }

.testi-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 2.8rem 3rem 2.4rem;
  text-align: center;
  box-shadow: 0 34px 74px rgba(4, 12, 40, .4);
}
.testi-quote {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  font-size: 1.85rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 12px 28px rgba(11, 60, 145, .3);
}
.testi-rating { color: var(--gold); font-size: 1.05rem; letter-spacing: .18rem; margin-bottom: 1.4rem; }
.testi-review {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.08rem, 1.9vw, 1.38rem);
  line-height: 1.62;
  letter-spacing: -.01em;
  color: var(--dark);
  margin: 0 0 2rem;
}
.testi-client { display: inline-flex; align-items: center; gap: 1rem; text-align: left; }
.testi-photo {
  flex: 0 0 auto;
  width: 62px; height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 6px 18px rgba(4, 12, 40, .22), 0 0 0 1px var(--border);
}
.testi-meta { display: flex; flex-direction: column; line-height: 1.3; }
.testi-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--dark); }
.testi-country { font-size: .85rem; color: var(--muted); }
.testi-location { display: inline-flex; align-items: center; gap: .3rem; margin-top: 2px; font-size: .8rem; font-weight: 600; color: var(--blue); }
.testi-location i { color: var(--gold); }

/* Controls + dots row */
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.testi-ctrl {
  position: static;               /* override Bootstrap absolute positioning */
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 1.25rem;
  opacity: 1;
  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.testi-ctrl:hover { background: var(--gold); border-color: transparent; transform: translateY(-2px); }

/* Round gold indicators (override Bootstrap bar style) */
.testi-dots {
  position: static;
  margin: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.testi-dots [data-bs-target] {
  box-sizing: border-box;
  width: 10px; height: 10px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  opacity: 1;
  text-indent: 0;
  transition: width .35s var(--ease), background .35s var(--ease);
}
.testi-dots [data-bs-target].active { width: 28px; border-radius: 6px; background: var(--gold); }

@media (max-width: 575.98px) {
  .testi-card { padding: 2.4rem 1.5rem 2rem; }
  .testi-client { flex-direction: column; text-align: center; gap: .7rem; }
  .testi-meta { align-items: center; }
  .testi-ctrl { width: 46px; height: 46px; }
}

/* ========================================================================
   CTA — free consultation banner
   ======================================================================== */
.cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(720px 420px at 50% 0%, rgba(201, 161, 59, .20), transparent 62%),
    linear-gradient(150deg, #0a1f4d 0%, var(--blue) 50%, #081a44 100%);
}
.cta-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cta-glow {
  position: absolute;
  bottom: -160px; left: 50%;
  transform: translateX(-50%);
  width: 520px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 59, .22), transparent 68%);
  filter: blur(60px);
}
.cta-ring {
  position: absolute;
  top: 12%; right: 6%;
  width: 180px; height: 180px;
  border: 1.5px solid rgba(201, 161, 59, .28);
  border-radius: 50%;
}
.cta-container { position: relative; z-index: 2; }
.cta-inner { max-width: 720px; margin: 0 auto; }

.cta-title {
  margin: 1rem 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: #fff;
}
.cta-title .text-gold { color: var(--gold); }
.cta-sub {
  max-width: 560px;
  margin: 0 auto 2.2rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
}
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

@media (max-width: 575.98px) {
  .cta-actions .btn-hero { flex: 1 1 auto; justify-content: center; }
}

/* ========================================================================
   CONTACT
   ======================================================================== */
.contact { background: var(--gray); }

/* --- Form card --- */
.contact-form-card {
  height: 100%;
  padding: 2.4rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(17, 24, 39, .06);
}
.contact-form-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--dark);
}
.contact-form-card .form-label {
  margin-bottom: .4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  color: var(--dark);
}
.contact-form-card .form-control {
  padding: .85rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--gray);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.contact-form-card .form-control::placeholder { color: #9aa1ad; }
.contact-form-card .form-control:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(11, 60, 145, .1);
}
.contact-form-card textarea.form-control { resize: vertical; min-height: 120px; }

.form-submit {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: var(--pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: var(--shadow-blue);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.form-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  transition: opacity .35s var(--ease);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.form-submit:hover::before { opacity: 1; }
.form-submit i { font-size: 1.05rem; }

.form-note {
  margin: 1rem 0 0;
  font-size: .9rem;
  font-weight: 600;
  color: var(--wa-deep);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.form-note.is-visible { opacity: 1; transform: translateY(0); }

/* --- Info cards --- */
.contact-info { display: flex; flex-direction: column; gap: 1rem; height: 100%; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(17, 24, 39, .05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
a.contact-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(11, 60, 145, .15);
}
.contact-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  color: #fff;
  font-size: 1.25rem;
}
.contact-icon--blue  { background: linear-gradient(135deg, #2c62c9, var(--blue)); }
.contact-icon--green { background: linear-gradient(135deg, #34d97b, var(--wa)); }
.contact-icon--gold  { background: linear-gradient(135deg, #E7C878, var(--gold)); }
.contact-card-body { display: flex; flex-direction: column; min-width: 0; }
.contact-label { font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.contact-value { font-family: var(--font-head); font-weight: 600; font-size: .98rem; color: var(--dark); word-break: break-word; }
.contact-arrow {
  margin-left: auto;
  color: var(--border);
  font-size: 1.1rem;
  transition: color .35s var(--ease), transform .35s var(--ease);
}
a.contact-card:hover .contact-arrow { color: var(--gold); transform: translate(2px, -2px); }

/* --- Map --- */
.contact-map {
  margin-top: 2rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(17, 24, 39, .08);
  line-height: 0;
}
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(.2) contrast(1.05);
}

@media (max-width: 575.98px) {
  .contact-form-card { padding: 1.8rem 1.4rem; }
  .contact-map iframe { height: 320px; }
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, .72);
  background: linear-gradient(180deg, #0a1f4d 0%, #071634 100%);
}
.footer-glow {
  position: absolute;
  top: -140px; left: 50%;
  transform: translateX(-50%);
  width: 640px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 59, .14), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.footer-inner { position: relative; z-index: 1; padding-top: 4.5rem; }

.footer-tagline {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #fff;
}
.footer-tagline span { color: var(--gold); }
.footer-desc {
  margin: 0 0 1.6rem;
  max-width: 22rem;
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .6);
}

.footer-social { display: flex; gap: .7rem; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 1.05rem;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.footer-social a:hover { background: var(--gold); border-color: transparent; color: #1a1300; transform: translateY(-3px); }

.footer-title {
  margin: 0 0 1.3rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.footer-links { display: flex; flex-direction: column; gap: .8rem; }
.footer-links li { display: flex; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .93rem;
  color: rgba(255, 255, 255, .68);
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.footer-links a:hover { color: var(--gold); transform: translateX(3px); }
.footer-areas li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .93rem;
  color: rgba(255, 255, 255, .68);
}
.footer-areas li i { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: .95rem; }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .93rem;
  color: rgba(255, 255, 255, .74);
  word-break: break-word;
  transition: color .3s var(--ease);
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact a i { flex: 0 0 auto; color: var(--gold); font-size: 1rem; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 3.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer-copy, .footer-credit { margin: 0; font-size: .85rem; color: rgba(255, 255, 255, .55); }
.footer-credit strong { color: var(--gold); font-weight: 600; }
.footer-design { color: rgba(255, 255, 255, .78); font-weight: 600; transition: color .3s var(--ease); }
.footer-design:hover { color: var(--gold); }

@media (max-width: 575.98px) {
  .footer-inner { padding-top: 3.5rem; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------------------------- Back to top ------------------------------ */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 12px 30px rgba(11, 60, 145, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .4s var(--ease), visibility .4s var(--ease), transform .4s var(--ease), box-shadow .3s var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(201, 161, 59, .5); }

@media (max-width: 575.98px) {
  .back-to-top { right: 16px; bottom: 16px; width: 46px; height: 46px; }
}

/* ---------------------------- Floating WhatsApp ------------------------ */
.wa-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 1001;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: waFloatIn .5s .5s var(--ease) both;
}
@keyframes waFloatIn { from { opacity: 0; } to { opacity: 1; } }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 40px rgba(37, 211, 102, .6); }
.wa-float i { line-height: 0; }

/* Emanating pulse ring (sits behind the button) */
.wa-float-pulse {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: var(--wa);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Hover tooltip */
.wa-float-label {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  white-space: nowrap;
  padding: .55rem .95rem;
  border-radius: 12px;
  background: #fff;
  color: var(--dark);
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(4, 12, 40, .2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s var(--ease);
}
.wa-float-label::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #fff;
}
.wa-float:hover .wa-float-label { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }

@media (max-width: 575.98px) {
  .wa-float { left: 16px; bottom: 16px; width: 52px; height: 52px; font-size: 1.5rem; }
  .wa-float-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float, .wa-float-pulse { animation: none; }
}

/* ========================================================================
   SUB-PAGE HERO (Maintenance Request, etc.)
   ======================================================================== */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(2.6rem, 5vw, 4rem) 0;
  background:
    radial-gradient(700px 420px at 82% -12%, rgba(201, 161, 59, .20), transparent 55%),
    linear-gradient(150deg, #0a1f4d 0%, var(--blue) 55%, #081a44 100%);
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.page-hero-glow {
  position: absolute;
  top: -110px; right: -60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 59, .28), transparent 68%);
  filter: blur(60px);
}
.page-hero-inner { position: relative; z-index: 2; }
/* Separate breadcrumb bar (sits right under the fixed nav) */
.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding-top: var(--nav-h-sm);   /* clear the fixed solid navbar */
}
.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: .86rem;
  color: var(--muted);
}
.breadcrumb-bar a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .3s var(--ease);
}
.breadcrumb-bar a:hover { color: var(--blue); }
.breadcrumb-bar a i { color: var(--gold); font-size: .9rem; }
.breadcrumb-sep { font-size: .7rem; color: var(--border); }
.breadcrumb-bar span { color: var(--dark); font-weight: 600; }
.page-hero-title {
  margin: 1rem 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.page-hero-title .text-gold { color: var(--gold); }
.page-hero-sub {
  max-width: 40rem;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
}

/* ========================================================================
   MAINTENANCE REQUEST page
   ======================================================================== */
.maint-request { background: var(--gray); }

/* Selects match the existing form-control styling */
.contact-form-card .form-select {
  padding: .85rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background-color: var(--gray);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.contact-form-card .form-select:focus {
  outline: none;
  border-color: var(--blue);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(11, 60, 145, .1);
}

/* Sidebar */
.maint-aside { display: flex; flex-direction: column; gap: 1.2rem; height: 100%; }
.maint-aside-card {
  padding: 1.6rem 1.5rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(17, 24, 39, .05);
}
.maint-aside-title {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}
.maint-tags { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.maint-tags li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--dark);
}
.maint-tags i { flex: 0 0 auto; color: var(--gold); }

.maint-emergency {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0a2f73);
}
.maint-emergency-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  font-size: 1.3rem;
  color: #1a1300;
  background: linear-gradient(135deg, #E7C878, var(--gold));
}
.maint-emergency strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.maint-emergency p { margin: .2rem 0 .45rem; font-size: .85rem; color: rgba(255, 255, 255, .8); }
.maint-emergency-num { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--gold); }

.maint-hours { display: flex; align-items: flex-start; gap: .6rem; margin: 0; font-size: .95rem; color: var(--muted); }
.maint-hours i { color: var(--gold); margin-top: 3px; }
.maint-hours small { color: var(--muted); font-size: .82rem; }

@media (max-width: 991.98px) {
  .maint-aside { margin-top: .5rem; }
}
@media (max-width: 359.98px) {
  .maint-tags { grid-template-columns: 1fr; }
}

/* ========================================================================
   ABOUT PAGE — stats band + value cards
   ======================================================================== */
.about-stats {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background:
    radial-gradient(600px 300px at 85% -30%, rgba(201, 161, 59, .22), transparent 60%),
    linear-gradient(135deg, var(--blue) 0%, #0a2f73 100%);
}
.about-stats .container { position: relative; z-index: 1; }
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.about-stat { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.about-stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--gold);
}
.about-stat-label { font-size: .9rem; font-weight: 500; color: rgba(255, 255, 255, .78); }

.about-values { background: #fff; }
.value-card {
  height: 100%;
  padding: 2rem 1.8rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(17, 24, 39, .05);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.value-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 26px 52px rgba(11, 60, 145, .16);
}
.value-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.3rem;
  border-radius: 16px;
  font-size: 1.55rem;
  color: var(--blue);
  background: rgba(11, 60, 145, .08);
  transition: background .4s var(--ease), color .4s var(--ease), transform .5s var(--ease);
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--blue), var(--gold));
  color: #fff;
  transform: rotate(-6deg) scale(1.06);
}
.value-title {
  margin: 0 0 .55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
}
.value-desc { margin: 0; font-size: .95rem; line-height: 1.6; color: var(--muted); }

@media (max-width: 767.98px) {
  .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; }
}

/* ========================================================================
   COMING SOON page
   ======================================================================== */
.coming-soon {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 3rem 1.25rem 4.5rem;
  background:
    radial-gradient(900px 520px at 80% 6%, rgba(201, 161, 59, .20), transparent 55%),
    radial-gradient(720px 520px at 8% 96%, rgba(201, 161, 59, .10), transparent 55%),
    linear-gradient(160deg, #0a1f4d 0%, var(--blue) 50%, #081a44 100%);
}
.cs-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.cs-glow {
  position: absolute;
  top: -120px; right: -60px;
  width: 480px; height: 480px;
  border-radius: 50%;
  filter: blur(70px);
  background: radial-gradient(circle, rgba(201, 161, 59, .40), transparent 68%);
  opacity: .55;
}
.cs-ring {
  position: absolute;
  bottom: 8%; left: 6%;
  width: 200px; height: 200px;
  border: 1.5px solid rgba(201, 161, 59, .30);
  border-radius: 50%;
}
.cs-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(900px 600px at 50% 40%, #000 20%, transparent 72%);
          mask-image: radial-gradient(900px 600px at 50% 40%, #000 20%, transparent 72%);
  opacity: .5;
}

.cs-inner { position: relative; z-index: 2; max-width: 680px; }
.cs-logo { display: block; height: 84px; width: auto; margin: 0 auto 2.2rem; border-radius: 14px; }

.cs-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}
.cs-title {
  margin: 0 0 1.1rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}
.cs-title .text-gold { color: var(--gold); }
.cs-sub {
  max-width: 30rem;
  margin: 0 auto 2.4rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .78);
}

/* Countdown */
.cs-countdown { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 2.6rem; }
.cs-box {
  min-width: 82px;
  padding: 1rem .8rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.cs-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1;
  color: #fff;
}
.cs-unit {
  display: block;
  margin-top: .4rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.cs-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 2.4rem; }

.cs-social { display: flex; justify-content: center; gap: .7rem; }
.cs-social a {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 1.05rem;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.cs-social a:hover { background: var(--gold); border-color: transparent; color: #1a1300; transform: translateY(-3px); }

.cs-copy {
  position: absolute;
  z-index: 2;
  bottom: 1.4rem;
  left: 0; right: 0;
  margin: 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}

@media (max-width: 575.98px) {
  .cs-countdown { gap: .8rem; max-width: 300px; margin-inline: auto; margin-bottom: 2.6rem; }
  .cs-box { flex: 0 0 calc(50% - .4rem); min-width: 0; padding: .85rem .6rem; }
  .cs-actions .btn-hero { flex: 1 1 auto; justify-content: center; }
}
