/* ============================================
   ARK Capital Solutions — Main Stylesheet v2
   Design: Warm Navy + Gold, Playfair + Outfit
   ============================================ */

:root {
  --navy:       #1B2D4F;
  --navy-deep:  #0E1D35;
  --navy-soft:  #243860;
  --gold:       #C4921A;
  --gold-lt:    #E8B84B;
  --gold-pale:  #FBF5E6;
  --gold-border:#E8D5A3;
  --white:      #FFFFFF;
  --off:        #F9F7F3;
  --gray-100:   #F2F0EB;
  --gray-300:   #D8D4CB;
  --gray-600:   #6B6560;
  --gray-800:   #2E2A25;
  --text:       #1A1714;
  --f-head:     'Playfair Display', Georgia, serif;
  --f-body:     'Outfit', sans-serif;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 4px 24px rgba(27,45,79,0.10);
  --shadow-lg:  0 12px 48px rgba(27,45,79,0.16);
  --gold-shadow:0 8px 28px rgba(196,146,26,0.30);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--f-body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.65; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--f-head); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(34px, 4vw, 58px); font-weight: 800; }
h2 { font-size: clamp(26px, 3vw, 42px); font-weight: 700; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }
p  { font-size: 15.5px; color: var(--gray-600); line-height: 1.75; }

/* ── Layout ── */
.wrap { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.sec  { padding: 80px 0; }
.sec--off   { background: var(--off); }
.sec--navy  { background: var(--navy-deep); }
.sec--gold  { background: linear-gradient(110deg, var(--gold) 0%, var(--gold-lt) 100%); }

/* ── Label / Eyebrow ── */
.label {
  display: inline-block;
  font-family: var(--f-body); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px; color: var(--gold);
  margin-bottom: 14px;
  padding: 4px 14px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
}
.label--light { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: var(--f-body); font-size: 14.5px; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.22s; letter-spacing: 0.2px;
  text-decoration: none;
}
.btn--gold  { background: var(--gold); color: white; }
.btn--gold:hover { background: #A87A14; transform: translateY(-2px); box-shadow: var(--gold-shadow); color: white; }
.btn--navy  { background: var(--navy); color: white; }
.btn--navy:hover { background: var(--navy-soft); transform: translateY(-2px); color: white; }
.btn--outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn--outline:hover { border-color: white; background: rgba(255,255,255,0.08); color: white; }
.btn--sm    { padding: 9px 20px; font-size: 13px; }
.btn--full  { width: 100%; justify-content: center; }

/* ── Section header ── */
.sh { margin-bottom: 52px; }
.sh--center { text-align: center; }
.sh--center p { max-width: 580px; margin: 12px auto 0; }
.sh h2 { margin-bottom: 10px; }
.sh p  { margin-top: 10px; }

/* ============================================
   TOPBAR
   ============================================ */
#topbar {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(196,146,26,0.2);
  padding: 8px 0;
}
.topbar-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.t-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.t-item:hover { color: var(--gold-lt); }
.t-icon { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }
.t-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.12); }

/* ============================================
   HEADER / NAV
   ============================================ */
#site-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-300);
  position: sticky; top: 0; z-index: 900;
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(27,45,79,0.12); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.site-logo { display: flex; align-items: center; gap: 11px; }
.ark-logo-img { height: 52px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--f-head); font-size: 15px; font-weight: 700; color: var(--navy); letter-spacing: 0.4px; line-height: 1.2; white-space: nowrap; }
.logo-tag  { font-family: var(--f-body); font-size: 9.5px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-top: 2px; }

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 2px; }
.primary-nav > li { position: relative; }
.primary-nav > li > a {
  font-size: 12.5px; font-weight: 500; color: var(--navy);
  padding: 8px 10px; border-radius: 7px; display: block;
  transition: all 0.18s; white-space: nowrap;
}
.primary-nav > li > a:hover,
.primary-nav > li.current-menu-item > a { color: var(--gold); background: var(--gold-pale); }
.nav-cta > a {
  background: var(--gold) !important;
  color: white !important; font-weight: 700 !important;
  padding: 9px 20px !important; border-radius: 8px !important;
}
.nav-cta > a:hover { background: #A87A14 !important; box-shadow: var(--gold-shadow) !important; }

/* Dropdown */
.has-children:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-300);
  padding: 8px; min-width: 230px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all 0.22s; z-index: 200;
}
.sub-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px; font-size: 13px;
  color: var(--gray-800); transition: all 0.15s;
}
.sub-menu li a:hover { background: var(--gold-pale); color: var(--navy); }
.sub-icon { width: 30px; height: 30px; background: var(--gold-pale); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 23px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }

/* ============================================
   HERO
   ============================================ */
#hero {
  background: var(--navy-deep);
  overflow: hidden; position: relative;
  min-height: 620px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 80% 50%, rgba(196,146,26,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at -10% 80%, rgba(196,146,26,0.07) 0%, transparent 65%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,146,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,146,26,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 60px; align-items: center; position: relative; z-index: 1;
  padding: 88px 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,146,26,0.12); border: 1px solid rgba(196,146,26,0.28);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 20px;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--gold-lt); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.35;transform:scale(1.5)} }
.hero-badge-text { font-size: 11.5px; font-weight: 600; color: var(--gold-lt); text-transform: uppercase; letter-spacing: 1.5px; }
.hero-title { font-family: var(--f-head); font-size: clamp(38px,4.2vw,62px); font-weight: 800; color: white; line-height: 1.1; margin-bottom: 20px; }
.hero-title em { color: var(--gold-lt); font-style: normal; }
.hero-sub { font-size: 16.5px; color: rgba(255,255,255,0.68); line-height: 1.75; margin-bottom: 34px; max-width: 500px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); overflow: hidden; }
.hstat { padding: 16px 14px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); }
.hstat:last-child { border-right: none; }
.hstat-n { font-family: var(--f-head); font-size: 24px; font-weight: 700; color: var(--gold-lt); display: block; line-height: 1; }
.hstat-l { font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; display: block; }

/* Hero Card */
.hero-card {
  background: white; border-radius: 20px; padding: 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.32);
  animation: fadeUp 0.6s ease 0.1s both;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.card-title { font-family: var(--f-head); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.card-sub   { font-size: 13px; color: var(--gray-600); margin-bottom: 20px; }
.field { margin-bottom: 13px; }
.field label { display: block; font-size: 11px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 13px; border: 1.5px solid var(--gray-300);
  border-radius: 8px; font-family: var(--f-body); font-size: 14px;
  color: var(--text); background: var(--gray-100); outline: none; transition: all 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); background: white; box-shadow: 0 0 0 3px rgba(196,146,26,0.1);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-note { font-size: 11px; color: var(--gray-600); text-align: center; margin-top: 9px; }

/* ============================================
   PARTNER STRIP
   ============================================ */
#partners { background: var(--off); border-bottom: 1px solid var(--gray-300); padding: 22px 0; }
.partners-wrap { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.p-label { font-size: 11px; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: 2px; white-space: nowrap; }
.p-sep { width: 1px; height: 16px; background: var(--gray-300); }
.p-list { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.p-tag { font-size: 12.5px; font-weight: 600; color: var(--gray-600); padding: 5px 14px; border: 1.5px solid var(--gray-300); border-radius: 6px; transition: all 0.18s; }
.p-tag:hover { color: var(--navy); border-color: var(--navy); background: var(--white); }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}
.svc-card {
  background: var(--white); border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-lg); padding: 28px 26px;
  transition: all 0.28s; position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0); transform-origin: left; transition: transform 0.28s;
}
.svc-card:hover { border-color: var(--gold-border); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 54px; height: 54px; background: var(--gold-pale); border: 1.5px solid var(--gold-border); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; transition: all 0.25s; }
.svc-card:hover .svc-icon { background: var(--gold); border-color: var(--gold); }
.svc-name { font-family: var(--f-head); font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
.svc-desc { font-size: 13.5px; color: var(--gray-600); line-height: 1.7; margin-bottom: 14px; }
.svc-tag  { font-size: 11.5px; font-weight: 700; color: var(--gold); background: var(--gold-pale); border: 1px solid var(--gold-border); padding: 3px 11px; border-radius: 100px; display: inline-block; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-items { display: flex; flex-direction: column; gap: 14px; }
.why-item { display: flex; gap: 14px; padding: 18px; border-radius: 12px; border: 1.5px solid transparent; transition: all 0.22s; }
.why-item:hover { background: var(--gold-pale); border-color: var(--gold-border); }
.why-ico { width: 46px; height: 46px; background: var(--navy); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0; transition: background 0.22s; }
.why-item:hover .why-ico { background: var(--gold); }
.why-txt h4 { font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.why-txt p  { font-size: 13px; }

/* Visual panel */
.why-panel {
  background: linear-gradient(150deg, var(--navy-deep), var(--navy-soft));
  border-radius: 22px; padding: 44px 38px; position: relative; overflow: hidden;
}
.why-panel::after {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  border: 48px solid rgba(196,146,26,0.08);
}
.panel-title { font-family: var(--f-head); font-size: 34px; font-weight: 800; color: white; line-height: 1.2; margin-bottom: 8px; }
.panel-title span { color: var(--gold-lt); }
.panel-sub { font-size: 14px; color: rgba(255,255,255,0.58); margin-bottom: 28px; line-height: 1.7; }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.panel-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09); border-radius: 12px; padding: 18px; text-align: center; }
.panel-num { font-family: var(--f-head); font-size: 30px; font-weight: 800; color: var(--gold-lt); display: block; line-height: 1; }
.panel-lbl { font-size: 10.5px; color: rgba(255,255,255,0.48); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; display: block; }

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--navy-soft)); z-index: 0; }
.proc-step { text-align: center; position: relative; z-index: 1; }
.proc-circle { width: 72px; height: 72px; background: white; border: 3px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 4px 16px rgba(196,146,26,0.18); transition: all 0.25s; }
.proc-circle:hover { background: var(--gold); transform: scale(1.06); }
.proc-n { font-family: var(--f-head); font-size: 22px; font-weight: 800; color: var(--gold); transition: color 0.25s; }
.proc-circle:hover .proc-n { color: white; }
.proc-title { font-family: var(--f-head); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.proc-desc  { font-size: 13px; }

/* ============================================
   STATS BAND
   ============================================ */
#stats { padding: 60px 0; background: linear-gradient(110deg, var(--gold) 0%, var(--gold-lt) 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
.stat { padding: 16px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat:last-child { border-right: none; }
.stat-n { font-family: var(--f-head); font-size: 50px; font-weight: 800; color: white; display: block; line-height: 1; margin-bottom: 6px; }
.stat-l { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1.2px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card { background: white; border: 1.5px solid var(--gray-300); border-radius: var(--radius-lg); padding: 28px; transition: all 0.25s; }
.testi-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-q { font-family: var(--f-head); font-size: 64px; color: var(--gold-border); line-height: 0.7; margin-bottom: 12px; display: block; }
.testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text { font-size: 13.5px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 11px; border-top: 1px solid var(--gray-300); padding-top: 14px; }
.testi-av { width: 40px; height: 40px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--f-head); font-size: 15px; font-weight: 700; color: var(--gold-lt); flex-shrink: 0; }
.testi-name { font-size: 13.5px; font-weight: 600; color: var(--navy); display: block; }
.testi-role { font-size: 12px; color: var(--gray-600); }

/* ============================================
   CTA BAND
   ============================================ */
#cta-band { background: linear-gradient(120deg, var(--navy-deep), var(--navy-soft)); padding: 76px 0; position: relative; overflow: hidden; }
#cta-band::after { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(196,146,26,0.14), transparent 70%); }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; z-index: 1; }
.cta-txt h2 { color: white; margin-bottom: 10px; }
.cta-txt p  { color: rgba(255,255,255,0.62); font-size: 16px; max-width: 520px; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; flex-shrink: 0; }
.cta-phone   { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); }
.cta-phone strong { color: var(--gold-lt); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.c-info-item { display: flex; gap: 14px; padding: 20px; background: white; border-radius: var(--radius-lg); border: 1.5px solid var(--gray-300); margin-bottom: 14px; transition: all 0.2s; text-decoration: none; color: inherit; }
.c-info-item:hover { border-color: var(--gold-border); box-shadow: var(--shadow); color: inherit; }
.c-ico { width: 44px; height: 44px; background: var(--gold-pale); border: 1.5px solid var(--gold-border); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.c-info-item h4 { font-size: 11.5px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.c-info-item p  { font-size: 14px; color: var(--gray-800); line-height: 1.55; }
.c-form-box { background: white; border-radius: 20px; padding: 38px; box-shadow: var(--shadow-lg); border: 1.5px solid var(--gray-300); }
.c-form-box h3 { margin-bottom: 22px; }

/* ============================================
   ABOUT PAGE — TEAM / STORY
   ============================================ */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.val-card { background: white; border: 1.5px solid var(--gray-300); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; transition: all 0.25s; }
.val-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: var(--shadow); }
.val-icon { font-size: 38px; margin-bottom: 14px; }
.val-card h4 { margin-bottom: 8px; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero { background: var(--navy-deep); padding: 72px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(196,146,26,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(196,146,26,0.04) 1px,transparent 1px); background-size: 50px 50px; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.68); font-size: 17px; max-width: 600px; }
.page-hero .btn { margin-top: 24px; }
.breadcrumb { font-size: 13px; color: var(--gray-600); padding: 12px 0; background: var(--off); border-bottom: 1px solid var(--gray-300); }
.breadcrumb a { color: var(--gold); }

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.svc-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: start; }
.svc-body h3 { margin: 28px 0 12px; }
.svc-body p  { margin-bottom: 16px; }
.feat-list { list-style: none; margin: 16px 0 24px; }
.feat-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-size: 14px; color: var(--gray-800); }
.feat-list li::before { content: '✓'; width: 20px; height: 20px; background: var(--gold); color: white; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.info-box { background: var(--off); border-radius: var(--radius-lg); padding: 28px; border-left: 4px solid var(--gold); position: sticky; top: 90px; }
.info-box h4 { margin-bottom: 18px; }
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-300); }
.info-row:last-child { border-bottom: none; }
.i-k { font-size: 11.5px; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; }
.i-v { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.i-v--gold { color: var(--gold); }

/* FAQ */
.faq { margin-top: 40px; }
.faq h3 { margin-bottom: 20px; }
.faq-item { border: 1.5px solid var(--gray-300); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-q { padding: 16px 20px; font-weight: 600; font-size: 14.5px; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; }
.faq-q:hover, .faq-q.open { background: var(--gold-pale); color: var(--gold); }
.faq-icon { font-size: 20px; color: var(--gold); transition: transform 0.25s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; font-size: 14px; color: var(--gray-600); line-height: 1.75; transition: all 0.3s; padding: 0 20px; }
.faq-a.open { max-height: 300px; padding: 14px 20px; }

/* ============================================
   FOOTER
   ============================================ */
#site-footer { background: var(--navy-deep); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 48px; margin-bottom: 48px; }
.fg-brand p { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.8; margin: 14px 0 22px; }
.f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.f-logo-img { height: 46px; width: auto; filter: brightness(1.1); }
.f-logo-name { font-family: var(--f-head); font-size: 15px; font-weight: 700; color: white; letter-spacing: 0.4px; }
.f-logo-tag  { font-size: 9.5px; font-weight: 600; color: var(--gold-lt); text-transform: uppercase; letter-spacing: 2px; }
.f-socials { display: flex; gap: 8px; }
.f-social { width: 34px; height: 34px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.55); transition: all 0.2s; }
.f-social:hover { background: var(--gold); border-color: var(--gold); color: white; }
.fg-col h5 { font-size: 11.5px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
.fg-col ul li { margin-bottom: 9px; }
.fg-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.48); transition: color 0.2s; display: flex; align-items: center; gap: 5px; }
.fg-col ul li a::before { content: '›'; color: var(--gold); font-size: 15px; }
.fg-col ul li a:hover { color: var(--gold-lt); }
.f-areas p { font-size: 12.5px; color: rgba(255,255,255,0.35); line-height: 1.85; }
.footer-seo-bar { background: rgba(196,146,26,0.06); border-top: 1px solid rgba(196,146,26,0.12); padding: 18px 0; }
.footer-seo-bar p { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; max-width: 1000px; margin: 0 auto; line-height: 1.75; }
.footer-seo-bar strong { color: rgba(255,255,255,0.5); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 16px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.28); margin-left: 18px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-lt); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
#wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wa-chip { background: var(--navy); color: white; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 100px; box-shadow: var(--shadow); white-space: nowrap; }
.wa-btn { width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 6px 24px rgba(37,211,102,0.45); animation: wabounce 3s ease infinite; }
.wa-btn:hover { transform: scale(1.1) !important; }
@keyframes wabounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.on { opacity: 1; transform: translateY(0); }
.d1{transition-delay:0.1s} .d2{transition-delay:0.2s} .d3{transition-delay:0.3s} .d4{transition-delay:0.4s} .d5{transition-delay:0.5s} .d6{transition-delay:0.6s}

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-inner  { grid-template-columns: 1fr; }
  .hero-card   { display: none; }
  .why-grid    { grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .svc-detail-layout { grid-template-columns: 1fr; }
  .info-box    { position: static; }
  .process-grid{ grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .testi-grid  { grid-template-columns: 1fr; }
  .cta-inner   { grid-template-columns: 1fr; }
  .cta-actions { align-items: flex-start; }
}
@media(max-width:768px) {
  .sec { padding: 54px 0; }
  .primary-nav { display: none; }
  .hamburger   { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .field-row   { grid-template-columns: 1fr; }
  .hero-stats  { grid-template-columns: 1fr 1fr; }
  .hstat:nth-child(2) { border-right: none; }
  .hstat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }
  .hstat:last-child   { border-top: 1px solid rgba(255,255,255,0.07); }
  .process-grid{ grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
}
