/* ─────────────────────────────────────────────
   ASCC Homepage — White Theme — style.css
───────────────────────────────────────────── */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #FFFFFF;
  color: #1A1A2E;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }

/* ── TOKENS ── */
:root {
  --orange:    #E8520A;
  --orange-lt: #FFF4EE;
  --orange-mid:#FEE4D4;
  --blue:      #1E3A5F;
  --blue-lt:   #EEF4FF;
  --grey-bg:   #F8F9FB;
  --grey-line: #E8EAEE;
  --text-1:    #111827;
  --text-2:    #4B5563;
  --text-3:    #9CA3AF;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --trans:     0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── WRAP ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── SECTION ── */
.section { padding: 96px 0; }
.section--grey { background: var(--grey-bg); }

/* ── GRADIENT TEXT ── */
.h1-accent {
  background: linear-gradient(135deg, var(--orange), #F97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #F97316);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,82,10,0.30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,82,10,0.40); }

.btn-sec {
  background: #fff;
  color: var(--blue);
  border: 1.5px solid var(--grey-line);
  box-shadow: var(--shadow-sm);
}
.btn-sec:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange-lt); transform: translateY(-2px); }

/* ── SECTION HEADER ── */
.sec-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-lt);
  border: 1px solid var(--orange-mid);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.sec-head { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.sec-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-1);
  margin-bottom: 16px;
}
.sec-desc { color: var(--text-2); font-size: 1.03rem; max-width: 560px; margin: 0 auto; }

/* ═══════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════ */
.ann-bar {
  background: linear-gradient(90deg, #FFF4EE, #FFF8F4, #FFF4EE);
  border-bottom: 1px solid var(--orange-mid);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1000;
  font-size: 0.83rem;
  color: var(--text-2);
}
.ann-inner { display: flex; align-items: center; gap: 10px; }
.ann-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,82,10,0.2);
  flex-shrink: 0;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.5} }
.ann-link { color: var(--orange); font-weight: 700; white-space: nowrap; transition: var(--trans); }
.ann-link:hover { opacity: 0.8; }
.ann-close {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: var(--text-3); font-size: 1.1rem; width: 28px; height: 28px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.ann-close:hover { background: var(--orange-mid); color: var(--orange); }

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-line);
  transition: var(--trans);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 800; color: var(--text-1); }
.logo-sub  { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); font-weight: 600; }

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nl {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-2);
  transition: var(--trans);
}
.nl:hover { color: var(--orange); background: var(--orange-lt); }
.nl-cta {
  background: linear-gradient(135deg, var(--orange), #F97316);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 50px;
  margin-left: 8px;
  box-shadow: 0 4px 16px rgba(232,82,10,0.25);
}
.nl-cta:hover { transform: scale(1.03); box-shadow: 0 6px 24px rgba(232,82,10,0.35); background: var(--orange-lt) !important; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text-1); border-radius: 2px; transition: var(--trans); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 60px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

/* Hero Left */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-lt);
  border: 1px solid var(--orange-mid);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.5s infinite;
  flex-shrink: 0;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-1);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-p {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 500px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.trust-item { display: flex; align-items: center; }
.trust-av { width: 36px; height: 36px; border-radius: 50%; border: 2px solid white; }
.trust-copy { display: flex; flex-direction: column; }
.trust-stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 1px; }
.trust-label { font-size: 0.78rem; color: var(--text-2); font-weight: 500; }

/* Hero Right */
.hero-right { animation: fadeUp 0.7s 0.2s ease both; }
.hero-img-wrap { position: relative; }
.hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.hero-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  animation: floatCard 3s ease-in-out infinite;
}
.hc-1 { bottom: 40px; left: -28px; animation-delay: 0s; }
.hc-2 { top: 32px; right: -20px; animation-delay: 1.5s; }
.hc-icon { font-size: 1.4rem; }
.hc-val { font-weight: 800; font-size: 1.05rem; color: var(--text-1); }
.hc-lbl { font-size: 0.72rem; color: var(--text-3); }
@keyframes floatCard {
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-8px); }
}

.hero-badge-img {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

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

/* ═══════════════════════════════
   TRUST BAR
═══════════════════════════════ */
.trust-bar {
  background: var(--blue);
  padding: 18px 0;
}
.trust-bar-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.tb-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.tb-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.tb-zones span {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.tb-dot { color: rgba(255,255,255,0.3); font-size: 1.2rem; }

/* ═══════════════════════════════
   STATS
═══════════════════════════════ */
.stats-sec { padding: 72px 0; background: white; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grey-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat-box {
  background: white;
  padding: 40px 32px;
  text-align: center;
  transition: var(--trans);
}
.stat-box:hover { background: var(--orange-lt); }
.sb-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.sb-lbl { font-weight: 700; font-size: 0.95rem; color: var(--text-1); margin-bottom: 4px; }
.sb-sub { font-size: 0.78rem; color: var(--text-3); }

/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: white;
  border: 1.5px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #F97316);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--trans);
}
.svc-card:hover { border-color: var(--orange-mid); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card--accent {
  background: linear-gradient(135deg, #FFF4EE, #FFF8F4);
  border-color: var(--orange-mid);
}
.svc-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
  opacity: 0.6;
}
.svc-icon { font-size: 2rem; }
.svc-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--text-1); }
.svc-card p  { font-size: 0.86rem; color: var(--text-2); flex: 1; line-height: 1.6; }
.svc-arrow {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-block;
  transition: var(--trans);
}
.svc-card:hover .svc-arrow { transform: translateX(5px); }

/* ═══════════════════════════════
   PROPERTY CARDS
═══════════════════════════════ */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pcard {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--grey-line);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.pcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--orange-mid); }

.pcard-img-wrap { position: relative; overflow: hidden; }
.pcard-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.pcard:hover .pcard-img { transform: scale(1.06); }

.pcard-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.sale     { background: var(--orange); color: white; }
.lease    { background: #2563EB; color: white; }
.takeover { background: #7C3AED; color: white; }

.pcard-fav {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--text-3);
  cursor: pointer;
  transition: var(--trans);
  border: 1px solid white;
}
.pcard-fav:hover { background: white; color: #EF4444; transform: scale(1.1); }

.pcard-body { padding: 20px 22px 22px; }
.pcard-loc  { font-size: 0.76rem; color: var(--text-3); margin-bottom: 6px; font-weight: 500; }
.pcard-name { font-size: 1rem; font-weight: 700; color: var(--text-1); margin-bottom: 14px; line-height: 1.3; }
.pcard-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.pcard-specs span {
  font-size: 0.73rem;
  background: var(--grey-bg);
  border: 1px solid var(--grey-line);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--text-2);
}
.pcard-specs strong { color: var(--text-1); }
.pcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--grey-line);
}
.pcard-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
}
.pcard-btn {
  background: var(--orange-lt);
  color: var(--orange);
  border: 1.5px solid var(--orange-mid);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--trans);
  display: inline-block;
}
.pcard-btn:hover { background: var(--orange); color: white; }

/* ═══════════════════════════════
   WHY ASCC
═══════════════════════════════ */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.why-img-stack { position: relative; }
.wi-top {
  width: 100%; border-radius: 20px; box-shadow: var(--shadow-md);
  height: 300px; object-fit: cover;
}
.wi-bot {
  width: 65%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
  position: absolute;
  bottom: -40px;
  right: -30px;
  height: 200px;
  object-fit: cover;
}
.wi-badge {
  position: absolute;
  top: -20px; left: -20px;
  background: var(--orange);
  color: white;
  padding: 18px 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232,82,10,0.35);
}
.wi-b-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}
.wi-b-lbl { font-size: 0.7rem; font-weight: 600; opacity: 0.85; }

.why-content { padding-bottom: 40px; }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.why-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 1.5px solid var(--grey-line);
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.why-item:hover { border-color: var(--orange-mid); background: var(--orange-lt); transform: translateX(4px); }
.wi-icon {
  width: 32px; height: 32px;
  background: var(--orange);
  color: white;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.why-item p      { font-size: 0.84rem; color: var(--text-2); }

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.testi-wrap { position: relative; }
.testi-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.tcard {
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  background: white;
  border: 1.5px solid var(--grey-line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.tcard:hover { box-shadow: var(--shadow-md); border-color: var(--orange-mid); transform: translateY(-4px); }
.tcard-stars { color: #F59E0B; letter-spacing: 2px; font-size: 1rem; }
.tcard blockquote { font-size: 0.92rem; color: var(--text-2); line-height: 1.75; font-style: italic; flex: 1; }
.tcard-author { display: flex; align-items: center; gap: 14px; }
.tca-img { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.tcard-author strong { display: block; font-size: 0.9rem; color: var(--text-1); }
.tcard-author span   { font-size: 0.75rem; color: var(--text-3); }

.testi-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: white;
  border: 1.5px solid var(--grey-line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--text-2);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  z-index: 2;
}
.testi-arrow:hover { background: var(--orange); color: white; border-color: var(--orange); }
.ta-prev { left: -22px; }
.ta-next { right: -22px; }

.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.tdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grey-line);
  border: none;
  cursor: pointer;
  transition: var(--trans);
}
.tdot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════
   NEWS + CTA
═══════════════════════════════ */
.nc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.news-col .sec-tag { margin-bottom: 12px; }

.news-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.ncard {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: white;
  border: 1.5px solid var(--grey-line);
  border-radius: var(--radius-sm);
  transition: var(--trans);
  cursor: pointer;
}
.ncard:hover { border-color: var(--orange-mid); background: var(--orange-lt); padding-left: 28px; }
.ncard-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.ncard-date { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 4px; }
.ncard strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--text-1); margin-bottom: 6px; }
.ncard p { font-size: 0.82rem; color: var(--text-2); line-height: 1.6; }

/* CTA BOX */
.cta-box {
  background: white;
  border: 1.5px solid var(--grey-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-box-head {
  background: linear-gradient(135deg, var(--blue), #163354);
  color: white;
  padding: 32px 32px 28px;
}
.cta-box-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FBA26E;
  background: rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.cta-box-head h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.cta-box-head p  { font-size: 0.87rem; opacity: 0.8; line-height: 1.6; }

.cta-form { padding: 28px 32px; display: flex; flex-direction: column; gap: 16px; }
.cf-group { display: flex; flex-direction: column; gap: 5px; }
.cf-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-2); }
.cf-group input,
.cf-group select {
  background: var(--grey-bg);
  border: 1.5px solid var(--grey-line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-1);
  font-size: 0.9rem;
  transition: var(--trans);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.cf-group input::placeholder { color: var(--text-3); }
.cf-group input:focus,
.cf-group select:focus { border-color: var(--orange); background: #FFFBF8; }
.cf-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.cf-submit { width: 100%; justify-content: center; padding: 15px; font-size: 0.95rem; border-radius: var(--radius-sm); }
.cf-privacy { font-size: 0.72rem; color: var(--text-3); text-align: center; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer { background: var(--blue); color: rgba(255,255,255,0.85); padding-top: 72px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ft-brand .logo-name { color: white; }
.ft-brand .logo-sub  { color: #FBA26E; }
.ft-brand p { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 16px 0; max-width: 400px; }
.ft-reg {
  display: flex; flex-direction: column; gap: 3px;
  font-size: 0.72rem; font-family: monospace;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.ft-social { display: flex; gap: 10px; flex-wrap: wrap; }
.ft-soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: var(--trans);
}
.ft-soc-btn:hover { background: rgba(255,255,255,0.15); color: white; }

.ft-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ftl-col { display: flex; flex-direction: column; gap: 10px; }
.ftl-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.ftl-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
  transition: var(--trans);
}
.ftl-col a:hover { color: #FBA26E; padding-left: 4px; }

.footer-bot { padding: 20px 0; }
.footer-bot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ═══════════════════════════════
   TOAST
═══════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: #10B981;
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 9999;
  opacity: 0; transform: translateY(80px);
  transition: var(--trans);
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast-icon { font-size: 1rem; }

/* ═══════════════════════════════
   SCROLL REVEAL
═══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ═══════════════════════════════
   ACTIVE NAV
═══════════════════════════════ */
.nl.active { color: var(--orange); background: var(--orange-lt); }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
  .hero { padding: 60px 40px; gap: 40px; }
  .svc-grid  { grid-template-columns: repeat(2,1fr); }
  .prop-grid { grid-template-columns: repeat(2,1fr); }
  .why-wrap  { grid-template-columns: 1fr; gap: 48px; }
  .wi-bot    { right: -10px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .nc-wrap { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    min-height: unset;
    gap: 40px;
  }
  .hero-right { order: -1; }
  .hero-img { height: 280px; }
  .hc-1 { left: 10px; }
  .hc-2 { right: 10px; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 280px;
    background: white;
    border-left: 1px solid var(--grey-line);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 32px;
    gap: 4px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 998;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  }
  .nav-links.open { right: 0; }
  .nl { width: 100%; padding: 12px 16px; font-size: 1rem; border-radius: 10px; }
  .nl-cta { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; }
  .burger { display: flex; z-index: 999; }

  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .svc-grid   { grid-template-columns: 1fr; }
  .prop-grid  { grid-template-columns: 1fr; }
  .tcard      { min-width: 100%; }
  .testi-arrow { display: none; }
  .ft-links   { grid-template-columns: repeat(2,1fr); }
  .footer-bot-inner { flex-direction: column; text-align: center; }
  .trust-bar-wrap { justify-content: center; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .ft-links { grid-template-columns: 1fr; }
}
