:root {
  --navy:       #0B2545;
  --navy2:      #1A3A6B;
  --gold:       #C09646;
  --gold2:      #D9B36A;
  --gold-pale:  #FBF4E6;
  --cream:      #FDFAF5;
  --cream2:     #F4EFE4;
  --charcoal:   #252422;
  --muted:      #6B6457;
  --white:      #FFFFFF;
  --border:     rgba(192,150,70,0.25);
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Nunito', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  font-size: 15px;
}
img{ max-width: 100%;}
/* ─── TYPOGRAPHY ─── */
.serif   { font-family: var(--serif); }
.eyebrow {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.sec-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700; color: var(--navy); line-height: 1.18;
}
.sec-sub {
  color: var(--muted); font-weight: 300;
  font-size: 15px; line-height: 1.8; max-width: 520px;
}

/* ─── CLIP-PATH ANIMATIONS ─── */
@keyframes morphShape1 {
  0%   { clip-path: polygon(0 0, 60% 0, 38% 100%, 0 100%); }
  50%  { clip-path: polygon(0 0, 65% 0, 42% 100%, 0 100%); }
  100% { clip-path: polygon(0 0, 60% 0, 38% 100%, 0 100%); }
}
@keyframes morphHex {
  0%   { clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
  33%  { clip-path: polygon(50% 5%, 95% 22%, 98% 78%, 50% 100%, 2% 78%, 5% 22%); }
  66%  { clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%, 0% 20%); }
  100% { clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
}
@keyframes morphDiamond {
  0%   { clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
  50%  { clip-path: polygon(50% 5%, 95% 50%, 50% 95%, 5% 50%); }
  100% { clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
}
@keyframes morphCut {
  0%   { clip-path: polygon(0 0, 100% 0, 100% 85%, 92% 100%, 0 100%); }
  50%  { clip-path: polygon(0 0, 100% 0, 100% 82%, 89% 100%, 0 100%); }
  100% { clip-path: polygon(0 0, 100% 0, 100% 85%, 92% 100%, 0 100%); }
}
@keyframes floatBob {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}
@keyframes floatBobSlow {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50%      { transform: translateY(-8px) rotate(3deg); }
}
@keyframes pulseGlow {
  0%,100% { opacity: .5; }
  50%      { opacity: .8; }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── BUTTONS ─── */
.btn-ac-primary {
  position: relative; overflow: hidden;
  background: var(--gold); color: var(--navy);
  border: 2px solid var(--gold); border-radius: 0;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 13px 32px; text-decoration: none;
  display: inline-block; cursor: pointer;
  transition: color .35s ease; z-index: 0;
}
.btn-ac-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--navy);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1); z-index: -1;
}
.btn-ac-primary:hover { color: var(--gold2); }
.btn-ac-primary:hover::before { transform: scaleX(1); }
.btn-ac-primary:active { transform: scale(.97); }

.btn-ac-outline {
  position: relative; overflow: hidden;
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy); border-radius: 0;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 13px 32px; text-decoration: none;
  display: inline-block; cursor: pointer;
  transition: color .35s ease; z-index: 0;
}
.btn-ac-outline::before {
  content: ''; position: absolute; inset: 0;
  background: var(--navy);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s cubic-bezier(.4,0,.2,1); z-index: -1;
}
.btn-ac-outline:hover { color: var(--white); }
.btn-ac-outline:hover::before { transform: scaleX(1); }

.btn-ac-ghost {
  position: relative; overflow: hidden;
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold); border-radius: 0;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 9px 22px; text-decoration: none;
  display: inline-block; cursor: pointer;
  transition: color .3s ease; z-index: 0;
}
.btn-ac-ghost::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateY(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1); z-index: -1;
}
.btn-ac-ghost:hover { color: var(--navy); }
.btn-ac-ghost:hover::before { transform: translateY(0); }

@keyframes pulse-gold {
  0%   { box-shadow: 0 0 0 0 rgba(192,150,70,.5); }
  70%  { box-shadow: 0 0 0 12px rgba(192,150,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,150,70,0); }
}
.btn-pulse { animation: pulse-gold .6s ease; }

/* ─── NAVBAR ─── */
#mainNav {
  position: fixed; top:0; left:0; right:0; z-index: 999;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); transition: box-shadow .3s;
}
#mainNav.scrolled { box-shadow: 0 4px 24px rgba(11,37,69,.09); }
.nav-brand-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--navy); line-height: 1; }
.nav-brand-tag  { font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.navbar-nav .nav-link {
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted) !important; padding: .5rem 1rem !important;
  position: relative; transition: color .2s;
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform .25s;
}
.navbar-nav .nav-link:hover { color: var(--navy) !important; }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }
.navbar-toggler { border: 1px solid var(--border); }

/* ─── TICKER ─── */
.ticker-wrap { background: var(--navy); padding: 9px 0; overflow: hidden; white-space: nowrap; margin-top: 68px; }
.ticker-inner { display: inline-flex; gap: 2.5rem; animation: ticker 30s linear infinite; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold2); font-weight: 600; }
.ticker-dot  { color: var(--gold); opacity:.5; }

/* ─── HERO ─── */
#hero {
  min-height: calc(100vh - 68px);
  background: linear-gradient(135deg, #EAF0FA 0%, var(--cream) 55%, var(--gold-pale) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

.hero-shape-1 {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(11,37,69,.07) 0%, transparent 55%);
  clip-path: polygon(0 0, 60% 0, 38% 100%, 0 100%);
  animation: morphShape1 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-shape-2 {
  position: absolute; top: -80px; right: -120px;
  width: 620px; height: 620px;
  background: linear-gradient(135deg, rgba(192,150,70,.13) 0%, rgba(192,150,70,.04) 60%, transparent 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: morphHex 10s ease-in-out infinite, floatBobSlow 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-shape-3 {
  position: absolute; bottom: -60px; left: 30%;
  width: 360px; height: 360px;
  background: rgba(11,37,69,.04);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation: morphHex 12s ease-in-out infinite reverse;
  pointer-events: none;
}

/* ── HERO CHARACTER SCENE ── */
.hero-scene {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Ground line */
.hero-ground {
  position: absolute;
  bottom: 60px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: .3;
}

/* Shadow under character */
.char-shadow {
  position: absolute;
  bottom: 54px;
  left: 50%; transform: translateX(-50%);
  width: 80px; height: 14px;
  background: radial-gradient(ellipse, rgba(11,37,69,.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: shadowPulse 2.8s ease-in-out infinite;
}
@keyframes shadowPulse {
  0%,100% { width: 80px; opacity: .7; }
  50%      { width: 60px; opacity: .4; }
}

/* The character — built purely in CSS/SVG */
.hero-char-wrap {
  position: absolute;
  bottom: 65px;
  left: 50%; transform: translateX(-50%);
  animation: characterApproach 1.4s cubic-bezier(.22,1,.36,1) forwards;
  opacity: 0;
}
@keyframes characterApproach {
  0%   { opacity: 0; transform: translateX(-50%) translateY(60px) scale(.5); filter: blur(4px); }
  60%  { opacity: 1; filter: blur(0); }
  80%  { transform: translateX(-50%) translateY(-8px) scale(1.02); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); filter: blur(0); }
}

/* Walking bob after approach */
.hero-char-wrap.arrived {
  animation: idleBob 3s ease-in-out infinite;
}
@keyframes idleBob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}

/* Floating badge cards around character */
.hero-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .06em;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(11,37,69,.12);
  opacity: 0;
  animation: badgeFloat 0.6s ease forwards;
}
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.hero-badge.b1 { top: 60px;  left: -60px;  animation-delay: 1.8s; animation: badgeFloat 0.6s 1.8s ease forwards, floatBob 4s 2.4s ease-in-out infinite; }
.hero-badge.b2 { top: 120px; right: -60px; animation-delay: 2.1s; animation: badgeFloat 0.6s 2.1s ease forwards, floatBob 4.5s 2.7s ease-in-out infinite; }
.hero-badge.b3 { top: 200px; left: -40px;  animation-delay: 2.4s; animation: badgeFloat 0.6s 2.4s ease forwards, floatBob 5s 3.0s ease-in-out infinite; }
.hero-badge.b4 { top: 170px; right: -40px; animation-delay: 2.7s; animation: badgeFloat 0.6s 2.7s ease forwards, floatBob 3.8s 3.3s ease-in-out infinite; }

@keyframes badgeFloat {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* The building/city silhouette in the background */
.hero-city {
  position: absolute;
  bottom: 62px; left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: cityReveal 1s 0.3s ease forwards;
}
@keyframes cityReveal {
  from { opacity: 0; transform: translateX(-50%) scale(.95); }
  to   { opacity: 1; transform: translateX(-50%) scale(1); }
}

/* Particle dots */
.hero-particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleDrift 6s ease-in-out infinite;
}
.hero-particle:nth-child(1)  { left: 10%; top: 20%; animation-delay: 0s;   animation-duration: 7s; }
.hero-particle:nth-child(2)  { left: 85%; top: 30%; animation-delay: 1.5s; animation-duration: 6s; }
.hero-particle:nth-child(3)  { left: 20%; top: 70%; animation-delay: 2.5s; animation-duration: 8s; }
.hero-particle:nth-child(4)  { left: 75%; top: 60%; animation-delay: 0.8s; animation-duration: 5s; }
.hero-particle:nth-child(5)  { left: 50%; top: 15%; animation-delay: 3.2s; animation-duration: 9s; }
@keyframes particleDrift {
  0%,100% { opacity: 0; transform: translateY(0) scale(1); }
  20%      { opacity: .7; }
  80%      { opacity: .4; }
  50%      { transform: translateY(-30px) scale(1.4); }
}

/* ── HERO LEFT CONTENT ── */
.hero-eyebrow {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  display: flex; align-items: center; gap: 10px; margin-bottom: 1.25rem;
}
.hero-eyebrow::before { content:''; display:block; width:28px; height:2px; background:var(--gold); }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700; color: var(--navy); line-height: 1.1; margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 15.5px; color: var(--muted); max-width: 420px; line-height: 1.8; margin-bottom: 2rem; font-weight: 300; }

/* Animated counter stats */
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.hero-stat-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1;
  display: inline-block;
}
.hero-stat-suffix { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--gold); }
.hero-stat-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-top: 3px; font-weight: 500; }

/* ─── ABOUT ─── */
#about { padding: 7rem 0; background: var(--white); position: relative; overflow: hidden; }
.about-shape {
  position: absolute; right: -80px; top: -80px;
  width: 420px; height: 420px;
  background: var(--gold-pale);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: morphHex 14s ease-in-out infinite, pulseGlow 5s ease-in-out infinite;
  opacity: .6; pointer-events: none;
}
.about-shape-2 {
  position: absolute; left: -60px; bottom: -60px;
  width: 260px; height: 260px;
  background: rgba(11,37,69,.04);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  pointer-events: none;
}
.about-feature {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--cream2); margin-bottom: .85rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  background: var(--white);
}
.about-feature:hover { border-color: var(--gold); box-shadow: 4px 4px 0 var(--gold-pale); transform: translateX(3px); }
.af-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}
.af-title { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--navy); }
.af-text  { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.65; }
.about-quote {
  margin-top: 1.75rem; padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--gold); background: var(--gold-pale);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 96% 100%, 0 100%);
  animation: morphCut 7s ease-in-out infinite;
}
.about-quote p { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--navy); line-height: 1.6; }

/* ─── SERVICES ─── */
#services { padding: 7rem 0; background: var(--cream); position: relative; overflow: hidden; }
.svc-bg-shape {
  position: absolute; left: -100px; top: 50%; transform: translateY(-50%);
  width: 350px; height: 350px; background: var(--gold-pale);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: morphDiamond 9s ease-in-out infinite;
  opacity: .5; pointer-events: none;
}
.service-card {
  background: var(--white); border: 1px solid var(--cream2);
  padding: 2rem 1.75rem 1.75rem; height: 100%;
  position: relative; overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
  animation: morphCut 11s ease-in-out infinite;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { box-shadow: 0 12px 32px rgba(11,37,69,.1); transform: translateY(-4px); border-color: var(--gold); }
.service-card:hover::after { transform: scaleX(1); }

/* SVG icon wrapper */
.sc-icon-wrap {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transition: background .3s, transform .3s;
}
.service-card:hover .sc-icon-wrap { background: var(--gold); }
.sc-icon-wrap svg, .sc-icon-wrap img{ width: 26px; height: 26px; flex-shrink: 0; transition: transform .3s; }
.service-card:hover .sc-icon-wrap svg { transform: rotate(-30deg);  stroke: #fff;}.service-card:hover .sc-icon-wrap img{ transform: rotate(-30deg);  stroke: #fff; filter:brightness(0) invert(1);} 

.sc-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.sc-text  { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: .9rem; }
.sc-tag   {
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-pale);
  border: 1px solid rgba(192,150,70,.3);
  padding: 3px 10px; display: inline-block; margin: 2px 2px 0 0; font-weight: 600;
}

/* ─── WHY US ─── */
#why { padding: 7rem 0; background: var(--white); position: relative; overflow: hidden; }
.why-bg-shape {
  position: absolute; right: -80px; bottom: -80px;
  width: 400px; height: 400px; background: var(--gold-pale);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: morphHex 12s ease-in-out infinite;
  opacity: .5; pointer-events: none;
}
.why-bg-shape2 {
  position: absolute; left: -60px; top: 30px;
  width: 200px; height: 200px; background: rgba(11,37,69,.04);
  clip-path: polygon(0 0, 100% 0, 50% 100%); pointer-events: none;
}
.why-card {
  padding: 2.25rem 2rem; border: 1px solid var(--cream2); background: var(--cream);
  height: 100%; position: relative; overflow: hidden;
  transition: box-shadow .25s, border-color .25s, transform .25s;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 88% 100%, 0 100%);
  animation: morphCut 13s ease-in-out infinite;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0; background: var(--gold); transition: height .3s ease;
}
.why-card:hover { box-shadow: 0 8px 28px rgba(11,37,69,.09); border-color: var(--gold); transform: translateY(-3px); }
.why-card:hover::before { height: 100%; }
.wc-num { font-family: var(--serif); font-size: 3rem; font-weight: 700; color: rgba(192,150,70,.18); line-height: 1; margin-bottom: .25rem; }
.wc-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.wc-text  { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.7; }

/* ─── STATISTICS COUNTER ─── */
#stats {
  padding: 5rem 0;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.stats-bg-shape {
  position: absolute; right: -60px; top: -60px;
  width: 320px; height: 320px;
  background: rgba(192,150,70,.08);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: morphHex 10s ease-in-out infinite;
  pointer-events: none;
}
.stats-bg-shape2 {
  position: absolute; left: -60px; bottom: -60px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,.03);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: morphDiamond 14s ease-in-out infinite;
  pointer-events: none;
}
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(192,150,70,.2);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
  animation: morphCut 9s ease-in-out infinite;
}
.stat-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.stat-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-icon {
  width: 48px; height: 48px; margin: 0 auto 1rem;
  background: rgba(192,150,70,.15);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-num-wrap { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: .5rem; }
.stat-counter {
  font-family: var(--serif); font-size: 3rem; font-weight: 700;
  color: var(--gold2); line-height: 1;
}
.stat-suffix { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.5); font-weight: 600; }

/* ─── PROCESS ─── */
#process { padding: 7rem 0; background: var(--cream2); position: relative; overflow: hidden; }
.process-shape {
  position: absolute; right: 5%; top: -60px;
  width: 300px; height: 300px; background: var(--white);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: morphHex 11s ease-in-out infinite;
  opacity: .7; pointer-events: none;
}
.process-step { text-align: center; padding: 0 1rem; }
.ps-num {
  width: 62px; height: 62px; background: var(--white);
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.3rem; color: var(--gold); font-weight: 700;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
  transition: background .3s, color .3s;
}
.process-step:hover .ps-num { background: var(--gold); color: var(--white); }
.ps-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.ps-text  { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.65; }
.process-connector {
  flex: 1; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 14px);
  opacity: .4; margin-top: -32px; align-self: flex-start; position: relative; top: 31px;
}

/* ─── FAQ ─── */
#faq { padding: 7rem 0; background: var(--white); position: relative; overflow: hidden; }
.faq-shape {
  position: absolute; left: -60px; top: 40px;
  width: 280px; height: 280px; background: var(--gold-pale);
  clip-path: polygon(25% 0%,75% 0%,100% 50%,75% 100%,25% 100%,0% 50%);
  animation: morphHex 13s ease-in-out infinite;
  opacity: .5; pointer-events: none;
}
.faq-shape2 {
  position: absolute; right: -50px; bottom: -50px;
  width: 220px; height: 220px; background: rgba(11,37,69,.04);
  clip-path: polygon(0 0, 100% 0, 100% 100%); pointer-events: none;
}

.faq-item {
  border: 1px solid var(--cream2);
  margin-bottom: .6rem;
  overflow: hidden;
  transition: border-color .25s;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.faq-item.open { border-color: var(--gold); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--navy);
  background: var(--white);
  transition: background .2s, color .2s;
  user-select: none;
  gap: 1rem;
}
.faq-question:hover { background: var(--gold-pale); color: var(--navy); }
.faq-item.open .faq-question { background: var(--gold-pale); color: var(--navy); }

.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--gold-pale); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transition: background .3s, transform .4s;}
.faq-icon:after{ display: none !important;}



.faq-item.open .faq-icon { background: var(--gold); transform: rotate(180deg); }
.faq-icon::after { content: ''; display: block; width: 10px; height: 2px; background: var(--navy); position: relative; }
.faq-icon-plus {
  position: relative; width: 12px; height: 12px;
}
.faq-icon-plus::before, .faq-icon-plus::after {
  content: '';
  position: absolute;
  background: var(--navy);
  transition: transform .3s ease, opacity .3s ease;
}
.faq-icon-plus::before { width: 12px; height: 2px; top: 5px; left: 0; }
.faq-icon-plus::after  { width: 2px; height: 12px; top: 0; left: 5px; }
.faq-item.open .faq-icon-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item.open .faq-icon .faq-icon-plus::before { background: var(--white); }
.faq-item.open .faq-icon .faq-icon-plus::after  { background: var(--white); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), padding .3s ease;
  padding: 0 1.5rem;
  font-size: 14px; color: var(--muted); line-height: 1.8; font-weight: 300;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 1.2rem 1.5rem; }

/* ─── CONTACT ─── */
#contact { padding: 7rem 0; background: var(--cream); position: relative; overflow: hidden; }
.contact-shape {
  position: absolute; right: -80px; top: -80px;
  width: 380px; height: 380px; background: var(--gold-pale);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  animation: morphShape1 9s ease-in-out infinite;
  opacity: .6; pointer-events: none;
}
.contact-shape2 {
  position: absolute; left: -60px; bottom: -60px;
  width: 280px; height: 280px; background: rgba(11,37,69,.04);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: morphHex 15s ease-in-out infinite;
  pointer-events: none;
}
.ci-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--border); background: var(--white);
  margin-bottom: .75rem;
  transition: border-color .2s, box-shadow .2s;
}
.ci-item:hover { border-color: var(--gold); box-shadow: 3px 3px 0 var(--gold-pale); }
.ci-icon  { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; padding-top: 2px; }
.ci-label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.ci-value { font-size: 14px; color: var(--charcoal); font-weight: 400; line-height: 1.5; }

.cf-label { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; display: block; margin-bottom: 5px; }
.cf-control {
  width: 100%; background: var(--white); border: 1px solid var(--border);
  color: var(--charcoal); font-family: var(--sans); font-size: 14px; font-weight: 400;
  padding: 11px 14px; border-radius: 0; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.cf-control:focus { border-color: var(--gold); box-shadow: 3px 3px 0 var(--gold-pale); }
.cf-control::placeholder { color: #bbb; }
textarea.cf-control { min-height: 110px; resize: vertical; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy); color: rgba(255,255,255,.45);
  padding: 1.75rem 5%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  border-top: 3px solid var(--gold);
}
.footer-brand { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--gold2); }
.footer-copy  { font-size: 11px; font-weight: 300; }
.footer-links a { color: rgba(255,255,255,.4); text-decoration: none; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; margin-left: 1.5rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold2); }

/* ─── SCROLL REVEAL ─── */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; }



.hero-scene{ height: auto;}
.hero-scene img{ max-width: 80%;}
.contact-form-wrap p{ margin: 0px; padding: 0px;}.contact-form-wrap br{ display: none;}ul.d-flex{ list-style: none;}



.srvBg{background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-attachment: fixed !important;}


/* ─── RESPONSIVE ─── */
@media (max-width:767px) {
  .hero-scene { height: 320px; }
  .process-connector { display: none; }
  .hero-badge { display: none; }
}
@media (max-width:991px) {
  .hero-scene { height: 380px; }
}



.disclaimer-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    padding: 20px;
}

.disclaimer-content {
    background: #fff;
    width: 100%;
    max-width: 750px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    border-radius: 8px;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    font-weight: 600;
}

#proceedBtn {
    width: 100%;
    margin-top: 20px;
    background: #000;
    color: #fff;
    border: none;
    padding: 15px;
    cursor: not-allowed;
    opacity: .5;
    transition: .3s;
}

#proceedBtn.active {
    cursor: pointer;
    opacity: 1;
}

body.modal-open {
    overflow: hidden;
}



.floating-contact{
    position:fixed;
    right:25px;
    bottom:30px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:99999;
}

.float-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:26px;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
    animation:pulse 2s infinite;
    transition:.3s;
}

.call-btn{
    background:#007bff;
}

.whatsapp-btn{
    background:#25D366;
}

.float-btn:hover{
    transform:scale(1.1);
}

@keyframes pulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

/* Different pulse color for Call */
.call-btn{
    animation:callPulse 2s infinite;
}

@keyframes callPulse{

    0%{
        box-shadow:0 0 0 0 rgba(0,123,255,.6);
    }

    70%{
        box-shadow:0 0 0 18px rgba(0,123,255,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(0,123,255,0);
    }

}

@media(max-width:767px){

    .floating-contact{
        right:15px;
        bottom:20px;
    }

    .float-btn{
        width:55px;
        height:55px;
        font-size:22px;
    }

}