/* ============================================================
   AK Global Financial Services — Main Stylesheet
   Icon font: Remix Icon (remixicon.com)
   ============================================================ */

/* ── RESET & TOKENS ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }

:root {
  /* Brand */
  --navy:        #0b1d3a;
  --navy-mid:    #112147;
  --navy-light:  #1a3060;
  --teal:        #00b4cc;
  --teal-dark:   #0097ae;
  --teal-light:  #e6f9fc;
  --orange:      #f97316;
  --orange-dark: #ea580c;
  --gold:        #f59e0b;

  /* Neutral */
  --white:       #ffffff;
  --off-white:   #f5f8ff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-800:    #1e293b;

  /* Typography */
  --font:        'Plus Jakarta Sans', 'Inter', sans-serif;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(11,29,58,.06);
  --shadow-md:   0 8px 28px rgba(11,29,58,.10);
  --shadow-lg:   0 20px 60px rgba(11,29,58,.16);
  --shadow-teal: 0 8px 28px rgba(0,180,204,.28);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }
input, select, textarea { font-family: inherit; }

/* ── UTILITY ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.section-pad  { padding: 100px 0; }
.section-pad-sm { padding: 72px 0; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.4px; border-radius: 100px; padding: 5px 14px;
}
.tag-teal  { background: var(--teal-light); color: var(--teal-dark); }
.tag-navy  { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.15); }
.tag-orange { background: #fff4ec; color: var(--orange-dark); }

.section-heading { margin-bottom: 56px; }
.section-heading.center { text-align: center; }
.section-heading.center .section-sub { margin: 0 auto; }

.section-title {
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 800; line-height: 1.15;
  color: var(--navy); margin: 12px 0 16px;
}
.section-title span { color: var(--teal); }
.section-title.light { color: var(--white); }
.section-title.light span { color: var(--gold); }

.section-sub {
  font-size: 16px; color: var(--gray-600);
  max-width: 560px; line-height: 1.75;
}
.section-sub.light { color: rgba(255,255,255,.65); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; transition: .22s;
}
.btn-primary {
  background: var(--teal); color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,180,204,.38); }

.btn-orange {
  background: var(--orange); color: var(--white);
  box-shadow: 0 8px 24px rgba(249,115,22,.32);
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 2px solid var(--gray-200);
}
.btn-outline-navy:hover { border-color: var(--teal); color: var(--teal); }

.btn-lg { padding: 16px 34px; font-size: 15px; border-radius: 10px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  display: flex; align-items: center;
  background: rgba(11,29,58,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.18);
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(11,29,58,.99);
  box-shadow: 0 4px 32px rgba(0,0,0,.25);
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 17px; color: var(--white);
  letter-spacing: -1px;
}
.nav-logo-text strong {
  display: block; color: var(--white); font-size: 15px; font-weight: 800; line-height: 1.2;
}
.nav-logo-text span {
  display: block; color: rgba(255,255,255,.5); font-size: 11px; font-weight: 400;
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: rgba(255,255,255,.75); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: .18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.08); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.75); font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  padding: 8px 14px; border-radius: 8px; transition: .18s;
}
.nav-phone:hover { color: var(--teal); border-color: var(--teal); }
.nav-phone i { color: var(--teal); font-size: 16px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  /* min-height: 100vh; */
  display: flex; align-items: center;
  padding: 0;
  position: relative; overflow: hidden;
  background: #060d1f;
}
.hero::before { display:none; }
.hero::after  { display:none; }
.hero-decor-circle { display:none; }

/* Full-bleed 2-col layout */
.hero-fullbleed {
  display: flex; flex-direction: row;
  grid-template-columns: 1fr 1fr;
  /* min-height: 100vh; */
  width: 100%;
}

/* Full-page background image hero */
.hero-bg { position: relative; }
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  transform: scale(1.03);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,13,31,.92) 0%, rgba(6,13,31,.72) 38%, rgba(6,13,31,.35) 70%, rgba(6,13,31,.5) 100%),
    linear-gradient(to top, rgba(6,13,31,.85) 0%, transparent 40%),
    radial-gradient(120% 80% at 85% 10%, rgba(0,180,204,.16), transparent 55%);
}
.hero-bg .hero-fullbleed { position: relative; z-index: 2; grid-template-columns: 1fr; }
.hero-bg .hero-panel-left { background: transparent; }
.hero-bg .hero-panel-left::after { display: none; }

/* Left text panel */
.hero-panel-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 7%;
  background: linear-gradient(135deg, #060d1f 0%, #0b1d3a 100%);
  position: relative; z-index: 2;
  max-width: 760px;
}
.hero-panel-left::after {
  content: '';
  position: absolute; top: 0; right: -1px; bottom: 0; width: 80px;
  background: linear-gradient(to right, #0b1d3a, transparent);
  z-index: 3;
}

/* Right city image panel */
.hero-panel-right {
  display: flex; align-items: center; justify-content: center; flex:1;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.1); }
}
/* subtle left-edge fade + brand tint on image panel */
.hero-panel-right::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, #0b1d3a 0%, rgba(6,13,31,.45) 22%, transparent 52%),
    linear-gradient(to top, rgba(6,13,31,.7) 0%, transparent 45%),
    radial-gradient(120% 90% at 80% 20%, rgba(0,180,204,.18), transparent 60%);
  z-index: 1; pointer-events: none;
}

/* Floating stats pills on image */
.hero-img-badge {
  z-index: 2;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
}
.hero-img-pill {
  background: rgba(6,13,31,.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,180,204,.3);
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
  border-radius: 100px; padding: 10px 20px;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
  animation: pillFloat 5s ease-in-out infinite;
}
.hero-img-pill:nth-child(2) { animation-delay: .8s; margin-left: 28px; }
.hero-img-pill:nth-child(3) { animation-delay: 1.6s; margin-left: 14px; }
@keyframes pillFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.hero-img-pill strong { font-size: 16px; font-weight: 800; color: #fff; }
.hero-img-pill span   { font-size: 11px; color: rgba(255,255,255,.6); }
.hero-img-pill i      { font-size: 20px; color: var(--teal); }

@media (max-width: 900px) {
  .hero-fullbleed { grid-template-columns: 1fr; }
  .hero-panel-right { min-height: 340px; }
  .hero-panel-left { padding: 120px 6% 60px; }
  .hero-panel-left::after { display: none; }
  .hero-img-badge { bottom: 20px; left: 20px; flex-direction: row; flex-wrap: wrap; }
  .hero-img-pill:nth-child(2),
  .hero-img-pill:nth-child(3) { margin-left: 0; }
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero-title {
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 900; line-height: 1.08;
  color: var(--white); margin-bottom: 22px;
}
.hero-title span { color: var(--teal); }
.hero-title em { font-style: normal; color: var(--gold); }
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,.68);
  line-height: 1.75; margin-bottom: 40px; max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-trust {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500;
}
.trust-item i { color: var(--teal); font-size: 18px; }

/* Hero visual */
.hero-visual {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; align-items: end;
}

/* Founder portrait */
.hero-portrait {
  position: relative;
}
.hero-portrait-img {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.12);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
}
.hero-portrait-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
}
/* Name badge pinned bottom of portrait */
.hero-portrait-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: 100px;
  padding: 8px 20px; white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  display: flex; align-items: center; gap: 10px;
}
.hero-portrait-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,.25);
}
.hero-portrait-badge strong { font-size: 13px; font-weight: 700; color: var(--navy); }
.hero-portrait-badge span   { font-size: 11px; color: var(--gray-400); display: block; }

.hero-visual-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-visual-top {
  padding: 28px 28px 20px;
  background: linear-gradient(135deg, rgba(0,180,204,.15), rgba(0,150,174,.08));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-visual-top h4 { color: rgba(255,255,255,.55); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.hero-rate { font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; }
.hero-rate sup { font-size: 22px; vertical-align: super; color: var(--teal); }
.hero-rate sub { font-size: 16px; vertical-align: baseline; color: rgba(255,255,255,.5); }
.hero-visual-body { padding: 20px 28px 28px; }
.loan-type-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pill {
  padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; gap: 5px;
  transition: .18s;
}
.pill.active, .pill:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.pill i { font-size: 13px; }

.hero-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); padding: 14px 16px;
}
.mini-stat .val { font-size: 22px; font-weight: 800; color: var(--white); }
.mini-stat .key { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; }

.hero-float-badge {
  position: absolute; top: -16px; right: 16px;
  background: var(--orange); color: var(--white);
  border-radius: 14px; padding: 12px 18px; text-align: center;
  box-shadow: 0 8px 24px rgba(249,115,22,.4);
  z-index: 10;
}
.hero-float-badge .big { font-size: 26px; font-weight: 900; line-height: 1; }
.hero-float-badge .small { font-size: 10px; font-weight: 600; opacity: .85; margin-top: 2px; }

/* ── TICKER ──────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--teal);
  padding: 11px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  font-size: 13px; font-weight: 600; color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.ticker-track span i { font-size: 15px; opacity: .75; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  margin: -40px auto 0;
  position: relative; z-index: 10;
  max-width: 900px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat-item {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid var(--gray-200);
  transition: background .2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--teal-light); }
.stat-num { font-size: 34px; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-num span { color: var(--teal); }
.stat-label { font-size: 13px; color: var(--gray-600); margin-top: 6px; font-weight: 500; }

/* ── SERVICES ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column;
  position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--teal); }

/* Photo header strip */
.service-card-img {
  height: 180px; position: relative; overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(11,29,58,.1) 0%, rgba(11,29,58,.55) 100%);
}

/* Icon circle pinned at bottom of photo strip */
.service-card-icon {
  position: absolute; bottom: 16px; left: 24px;
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.icon-teal   { background: var(--teal);    color: #fff; }
.icon-navy   { background: var(--navy);    color: #fff; }
.icon-orange { background: var(--orange);  color: #fff; }
.icon-green  { background: #059669;        color: #fff; }
.icon-purple { background: #7c3aed;        color: #fff; }
.icon-gold   { background: var(--gold);    color: #fff; }

/* Card body */
.service-card-body {
  padding: 24px 24px 28px;
  display: flex; flex-direction: column; flex: 1;
}

.roi-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e; border-radius: 100px;
  padding: 4px 12px; font-size: 12px; font-weight: 700;
  margin-bottom: 12px; align-self: flex-start;
}
.roi-chip i { font-size: 13px; }

.service-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.service-card p  { font-size: 13px; color: var(--gray-600); line-height: 1.7; margin-bottom: 18px; }

.service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; flex: 1; }
.service-features li {
  font-size: 13px; color: var(--gray-600);
  display: flex; align-items: center; gap: 8px;
}
.service-features li i { color: var(--teal); font-size: 15px; flex-shrink: 0; }

.service-card-footer {
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
  display: flex; align-items: center; justify-content: space-between;
}

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--teal);
  transition: gap .2s;
}
.card-link:hover { gap: 10px; }

/* legacy fallback for non-image icon usage */
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 28px;
}

/* ── ABOUT SPLIT ─────────────────────────────────────────── */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-img-inner {
  text-align: center; color: rgba(255,255,255,.15);
}
.about-img-inner i { font-size: 120px; }
.about-img-inner p { font-size: 13px; margin-top: 8px; }

/* overlay accent card */
.about-accent-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--teal); color: var(--white);
  border-radius: var(--radius); padding: 20px 24px;
  box-shadow: var(--shadow-teal); min-width: 180px;
}
.about-accent-card .big { font-size: 36px; font-weight: 900; line-height: 1; }
.about-accent-card .lbl { font-size: 12px; opacity: .8; margin-top: 4px; }

.about-accent-card2 {
  position: absolute; top: 28px; left: -28px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.about-accent-card2 .ic { font-size: 28px; color: var(--orange); }
.about-accent-card2 .txt strong { display: block; font-size: 18px; font-weight: 800; color: var(--navy); }
.about-accent-card2 .txt span   { font-size: 11px; color: var(--gray-400); }

.about-checks { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.about-check {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--gray-50); border-radius: var(--radius-sm);
  padding: 14px 16px; border: 1px solid var(--gray-200);
}
.check-ic {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.check-txt strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.check-txt span   { font-size: 13px; color: var(--gray-600); }

/* ── PROCESS ─────────────────────────────────────────────── */
.process-bg {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  position: relative;
}
.process-connector {
  position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  z-index: 0;
}
.process-step { padding: 0 20px; text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-size: 26px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 6px 24px rgba(0,180,204,.35);
  border: 3px solid rgba(255,255,255,.15);
}
.process-step h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.process-step p  { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── WHY US ──────────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: .25s;
  display: flex; flex-direction: column; gap: 16px;
}
.why-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); }
.why-card p  { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-bg { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-200);
  transition: .25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal); }
.stars { color: var(--gold); font-size: 15px; margin-bottom: 16px; display: flex; gap: 3px; }
.testimonial-card blockquote {
  font-size: 14px; color: var(--gray-600); line-height: 1.75;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--gray-200); padding-top: 18px;
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--white); font-weight: 700; flex-shrink: 0;
}
.author-avatar.orange { background: linear-gradient(135deg, var(--orange-dark), var(--gold)); }
.author-avatar.green  { background: linear-gradient(135deg, #059669, #34d399); }
.author-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.author-info span   { font-size: 12px; color: var(--gray-400); }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: var(--radius-xl); padding: 72px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -80px; left: 20%;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-banner-text { position: relative; z-index: 1; }
.cta-banner-text h2 { font-size: clamp(24px, 2.5vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cta-banner-text p  { font-size: 16px; color: rgba(255,255,255,.75); }
.cta-banner-btns { position: relative; z-index: 1; display: flex; gap: 14px; flex-shrink: 0; }
.btn-white { background: var(--white); color: var(--teal); font-weight: 700; }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }

.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px 22px;
  box-shadow: var(--shadow-sm); transition: .2s;
}
.contact-info-item:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.ci-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.ci-text h5 { font-size: 11px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.ci-text a, .ci-text p {
  font-size: 15px; font-weight: 600; color: var(--navy);
  line-height: 1.5; display: block;
}
.ci-text a:hover { color: var(--teal); }

.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 40px 36px;
  border: 1.5px solid var(--gray-200);
}
.form-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-card > p { font-size: 14px; color: var(--gray-600); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: .6px; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 14px; color: var(--navy);
  outline: none; transition: .2s; background: var(--gray-50);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,180,204,.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white); border: none; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700;
  transition: .22s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-teal); }
.form-success {
  display: none; text-align: center; padding: 20px;
  background: #e6faf5; border-radius: var(--radius-sm);
  color: #059669; font-weight: 700; font-size: 15px; margin-top: 12px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
}
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand p { font-size: 14px; line-height: 1.75; margin: 14px 0 24px; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: .18s;
}
.social-btn:hover { background: var(--teal); color: var(--white); }

.footer-col h5 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .18s; }
.footer-col ul a:hover { color: var(--teal); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: 13px; flex-wrap: wrap; gap: 10px;
}

/* ── FLOATING BUTTONS ────────────────────────────────────── */
.float-actions {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.22); transition: .22s;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.float-btn i { font-size: 17px; }

/* WhatsApp – brand green */
.float-whatsapp { background: #25d366; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,.35); }
.float-whatsapp:hover { background: #1ebe5d; box-shadow: 0 8px 28px rgba(37,211,102,.5); }

/* Call Now – teal (brand colour) */
.float-call { background: var(--teal); color: #fff; box-shadow: 0 4px 20px rgba(0,180,204,.35); }
.float-call:hover { background: var(--teal-dark); box-shadow: 0 8px 28px rgba(0,180,204,.5); }

/* Apply – navy (contrasts the teal) */
.float-apply { background: var(--navy); color: #fff; border: 2px solid rgba(255,255,255,.12); box-shadow: 0 4px 20px rgba(11,29,58,.4); }
.float-apply:hover { background: var(--navy-light); box-shadow: 0 8px 28px rgba(11,29,58,.55); }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(0,180,204,.12) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(34px, 4vw, 54px); font-weight: 900; color: var(--white); margin-bottom: 14px; }
.page-hero p  { font-size: 17px; color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ── SERVICES PAGE ───────────────────────────────────────── */
.service-detail-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  background: var(--white); border-radius: var(--radius-xl);
  padding: 48px 48px; box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-200); margin-bottom: 28px;
  transition: box-shadow .25s;
}
.service-detail-card:hover { box-shadow: var(--shadow-md); }
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }

.service-detail-visual {
  aspect-ratio: 1/1; border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  background: var(--gray-100);
}
.service-detail-visual img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.service-detail-card:hover .service-detail-visual img {
  transform: scale(1.04);
}
/* tinted overlay on each image for brand feel */
.service-detail-visual::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.visual-teal::after   { background: linear-gradient(145deg, rgba(0,180,204,.15), rgba(0,97,122,.1)); }
.visual-navy::after   { background: linear-gradient(145deg, rgba(17,33,71,.15), rgba(26,48,96,.1)); }
.visual-orange::after { background: linear-gradient(145deg, rgba(249,115,22,.12), rgba(234,88,12,.08)); }
.visual-green::after  { background: linear-gradient(145deg, rgba(5,150,105,.12), rgba(52,211,153,.08)); }
.visual-purple::after { background: linear-gradient(145deg, rgba(124,58,237,.12), rgba(167,139,250,.08)); }
.visual-gold::after   { background: linear-gradient(145deg, rgba(245,158,11,.12), rgba(251,191,36,.08)); }

/* badge pinned over image */
.visual-badge {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  background: rgba(11,29,58,.82); backdrop-filter: blur(8px);
  color: #fff; border-radius: 10px; padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.12);
}
.visual-badge i { font-size: 20px; color: var(--teal); }
.visual-badge strong { font-size: 14px; font-weight: 700; display: block; line-height: 1.2; }
.visual-badge span   { font-size: 11px; color: rgba(255,255,255,.55); }

.service-detail-body h2 { font-size: 26px; font-weight: 800; color: var(--navy); margin: 14px 0 12px; }
.service-detail-body p  { font-size: 14px; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--gray-600);
}
.feature-list li i { color: var(--teal); font-size: 16px; flex-shrink: 0; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  transition: .25s;
}
.team-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 800; color: var(--white);
}
.av1 { background: linear-gradient(135deg, var(--navy-light), var(--teal)); }
.av2 { background: linear-gradient(135deg, var(--orange-dark), var(--gold)); }
.av3 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.av4 { background: linear-gradient(135deg, #059669, #34d399); }
.team-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--gray-400); display: block; margin-bottom: 14px; }
.team-socials { display: flex; justify-content: center; gap: 8px; }
.team-social {
  width: 30px; height: 30px; border-radius: 6px;
  background: var(--gray-100); color: var(--gray-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: .18s;
}
.team-social:hover { background: var(--teal); color: var(--white); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px 28px; transition: .25s;
}
.value-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.value-num { font-size: 48px; font-weight: 900; color: var(--gray-200); line-height: 1; margin-bottom: 12px; }
.value-card h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p  { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ── MAP PLACEHOLDER ─────────────────────────────────────── */
.map-placeholder {
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
  border-radius: var(--radius-lg); height: 300px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 56px; overflow: hidden; position: relative;
}
.map-placeholder i { font-size: 60px; color: rgba(255,255,255,.12); }
.map-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.map-pin i { font-size: 40px; color: var(--teal); }
.map-pin span { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 600; background: rgba(0,0,0,.4); padding: 4px 10px; border-radius: 100px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid            { grid-template-columns: 1fr; }
  .hero-visual          { display: none; }
  .about-split          { grid-template-columns: 1fr; }
  .about-visual         { display: none; }
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .why-grid             { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-main          { grid-template-columns: 1fr 1fr; }
  .team-grid            { grid-template-columns: repeat(2, 1fr); }
  .service-detail-card  { grid-template-columns: 1fr; }
  .service-detail-card.reverse { direction: ltr; }
  .service-detail-visual { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .stats-bar   { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr 1fr; }
  .cta-banner  { flex-direction: column; text-align: center; padding: 48px 32px; }
  .cta-banner-btns { justify-content: center; }
  .footer-main { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .section-pad { padding: 72px 0; }
  .process-connector { display: none; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .stats-bar { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(11,29,58,.97); backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.8); font-size: 20px; font-weight: 600;
  padding: 12px 32px; border-radius: 10px; transition: .18s; width: 260px; text-align: center;
}
.mobile-nav a:hover { background: rgba(255,255,255,.1); color: var(--teal); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,.1); border: none; color: #fff;
  width: 42px; height: 42px; border-radius: 10px; font-size: 20px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
