/* ==========================================================================
   NCCL AUDITORS — styles.css
   Mobile-first · Complete website stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  /* Primary */
  --navy:       #0D1F3C;
  --navy-deep:  #060F1F;
  --gold:       #C4962A;
  --gold-light: #D4AC4A;
  --gold-gradient: linear-gradient(135deg, #C4962A 0%, #D4AC4A 100%);

  /* Neutrals */
  --white:      #FFFFFF;
  --off-white:  #FAFAF8;
  --cream:      #F5F0E8;
  --border:     #E8E4DC;

  /* Text */
  --text:       #1A1A2E;
  --text-body:  #4A4A5A;
  --text-muted: #8A8A96;

  /* Semantic */
  --success:    #16A34A;
  --error:      #DC2626;

  /* Fonts */
  --ff-head:    'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', -apple-system, sans-serif;

  /* Spacing & Radius */
  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  16px;
  --radius-section: 3rem;

  /* Shadows */
  --shadow-sm:  0 2px 8px  rgba(13,31,60,.06);
  --shadow:     0 4px 24px rgba(13,31,60,.08);
  --shadow-lg:  0 12px 40px rgba(13,31,60,.12);

  /* Transition */
  --transition: all .3s cubic-bezier(.4,0,.2,1);

  /* Aliases for backwards compat in existing HTML inline styles */
  --navy-mid:   #0D1F3C;
  --navy-light: #0D1F3C;
  --navy-dark:  #060F1F;
  --gold-pale:  rgba(196,150,42,0.1);
  --muted:      #4A4A5A;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--ff-body); font-size: 16px; color: var(--text-body); background: var(--white); overflow-x: hidden; line-height: 1.6; }
a    { text-decoration: none; color: inherit; }
img  { max-width: 100%; display: block; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 16px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--ff-head); line-height: 1.1; color: var(--navy); }
h1 { font-size: clamp(42px, 5vw + 1rem, 72px); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 4vw + 0.5rem, 52px); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(18px, 3vw, 22px); font-weight: 600; }
p  { line-height: 1.75; }

/* ── Layout ── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* ── Section labels ── */
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold);
  border-left: 3px solid var(--gold); padding-left: 10px;
  margin-bottom: 14px;
}
.section-label--center { border: none; padding: 0; display: block; text-align: center; }
.section-title  { color: var(--navy); margin-bottom: 16px; }
.section-title--white { color: var(--white); }
.section-sub    { font-size: 16px; color: var(--text-body); line-height: 1.75; max-width: 620px; }
.section-sub--white { color: rgba(255,255,255,.65); }
.text-center    { text-align: center; }
.text-center .section-sub { max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── Gold divider ── */
.gold-divider { width: 52px; height: 3px; background: var(--gold); border-radius: 2px; margin: 12px 0; }
.gold-divider--center { margin: 12px auto; }

/* ── Buttons (mobile-first) ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: var(--transition); border: 1.5px solid transparent;
  line-height: 1; white-space: nowrap; width: 100%;
}
.btn i { font-size: 13px; transition: transform .2s; flex-shrink: 0; }
.btn:hover i { transform: translateX(3px); }
.btn-primary   { background: var(--gold-gradient); color: var(--navy); box-shadow: 0 4px 20px rgba(196,150,42,.3); }
.btn-primary:hover { background: linear-gradient(135deg, #d4a230 0%, #e2be50 100%); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,150,42,.45); }
.btn-navy      { background: var(--navy); color: var(--white); }
.btn-navy:hover{ background: #162d50; transform: translateY(-2px); }
.btn-outline   { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); transform: translateY(-1px); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: rgba(13,31,60,.25); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-inline { width: auto; }

/* ── Reveal animations ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity .65s ease, transform .65s ease;
}
.reveal       { transform: translateY(24px); }
.reveal-left  { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }
.reveal-delay-6 { transition-delay: .48s; }

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar { display: none; } /* hidden on mobile */
.topbar-left  { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.topbar-right { display: flex; gap: 8px; align-items: center; }
.topbar a     { color: rgba(255,255,255,.7); transition: color .2s; }
.topbar a:hover { color: var(--gold); }
.topbar-item  { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.7); }
.topbar-item i { color: var(--gold); font-size: 11px; }
.social-icon  { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,.7); transition: var(--transition); }
.social-icon:hover { background: var(--gold); color: var(--navy); }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  background: var(--white); border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(13,31,60,.12); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.nav-logo { display: flex; align-items: center; gap: 0; }
.nav-logo-img { height: 52px; width: auto; object-fit: contain; }

/* Mobile menu */
.nav-links {
  display: none;
  position: absolute; top: 68px; left: 0; right: 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 12px 20px 20px;
  box-shadow: 0 8px 24px rgba(13,31,60,.1);
  z-index: 999;
}
.nav-links.open { display: flex; }
.nav-link { font-size: 15px; font-weight: 500; color: var(--text); padding: 12px 0; border-bottom: 1px solid var(--border); display: block; transition: color .2s; }
.nav-link:last-of-type { border-bottom: none; }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-cta {
  display: block; margin-top: 12px; background: var(--gold-gradient); color: var(--navy);
  padding: 12px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 600; text-align: center; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(196,150,42,.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,150,42,.45); }

/* Hamburger */
.nav-toggle { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ==========================================================================
   NAV DROPDOWN / SUBMENU (mobile-first accordion → desktop hover panel)
   ========================================================================== */
.has-submenu { position: relative; display: flex; flex-wrap: wrap; align-items: center; border-bottom: 1px solid var(--border); }
.has-submenu > .nav-link { flex: 1; border-bottom: none; }
.has-submenu > .nav-link .submenu-caret { display: none; }

.submenu-toggle {
  background: none; border: none; cursor: pointer; padding: 12px 8px;
  color: var(--text-muted); font-size: 14px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .2s, transform .25s cubic-bezier(.4,0,.2,1);
}
.submenu-toggle:hover { color: var(--gold); }
.submenu-toggle .submenu-caret { transition: transform .25s cubic-bezier(.4,0,.2,1); display: inline-block; }
.has-submenu.submenu-open > .submenu-toggle .submenu-caret { transform: rotate(180deg); }

.nav-submenu {
  list-style: none; margin: 0; padding: 0;
  flex-basis: 100%;
  max-height: 0; overflow: hidden;
  transition: max-height .3s cubic-bezier(.4,0,.2,1);
}
.has-submenu.submenu-open > .nav-submenu { max-height: 400px; }
.nav-submenu li { display: block; }
.nav-sublink {
  display: block; padding: 10px 16px; font-size: 14px; font-weight: 500;
  color: var(--text-body); border-left: 3px solid transparent;
  transition: color .2s, background .2s, border-color .2s;
}
.nav-sublink:hover, .nav-sublink:focus { color: var(--gold); background: var(--cream); border-left-color: var(--gold); }

/* ==========================================================================
   HERO — Clean, photo-based (Ran Segall "Quiet Confidence")
   ========================================================================== */
.hero { background: var(--navy); position: relative; overflow: hidden; padding: 80px 0 100px; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }

/* Single subtle gold glow — the only decorative element */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::before {
  content: ''; position: absolute; top: 15%; right: 20%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,150,42,.08) 0%, transparent 70%);
}
/* Hide all other decorative elements — we don't need them */
.hero-grid-lines, .hero-accent-line, .hero-shape { display: none; }

.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600;
  color: var(--gold); letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 24px; animation: fadeInUp .8s ease both;
  /* No background, no border — just clean text */
  background: none; border: none; padding: 0;
}
.hero-badge i { font-size: 10px; }
.hero-title { font-family: var(--ff-head); color: var(--white); margin-bottom: 20px; animation: fadeInUp .8s .1s ease both; }
.hero-title em {color: var(--gold-light); display: block; }
.amp { font-family: var(--ff-body); font-style: normal; color: var(--white); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 36px; max-width: 520px; animation: fadeInUp .8s .2s ease both; }

/* Quote — still available but simplified */
.hero-quote { display: none; } /* Hidden on homepage — keep simple */
.hero-quote p    { font-size: 14px; font-style: italic; color: rgba(255,255,255,.8); line-height: 1.6; }
.hero-quote cite { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--gold-light); margin-top: 10px; font-style: normal; font-weight: 600; }
.hero-quote-avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--gold); overflow: hidden; flex-shrink: 0; }
.hero-quote-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.hero-btns  { display: flex; flex-direction: column; gap: 14px; animation: fadeInUp .8s .3s ease both; }
.hero-trust { display: none; } /* Trust badges moved to stats section — cleaner hero */

/* Hero Photo (replaces floating cards on desktop) */
.hero-visual { display: none; } /* hidden mobile */
.hero-photo-wrap {
  display: none; /* hidden mobile, shown desktop */
  position: relative;
}
.hero-photo-wrap img {
  width: 100%; height: 520px; object-fit: cover; object-position: top center;
  border-radius: 24px; border-left: 3px solid var(--gold);
}

/* Keep hero cards for desktop but restyle as clean glass */
.hero-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px 20px; transition: var(--transition); }
.hero-card:hover { background: rgba(255,255,255,.09); border-color: rgba(196,150,42,.25); transform: translateX(4px); }
.hero-card-featured { background: var(--gold); border-color: var(--gold); }
.hero-card-featured:hover { background: var(--gold-light); border-color: var(--gold-light); }
.hc-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.hc-icon { width: 38px; height: 38px; background: rgba(196,150,42,.2); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 15px; flex-shrink: 0; }
.hero-card-featured .hc-icon { background: rgba(13,31,60,.2); color: var(--navy); }
.hc-title { font-size: 13px; font-weight: 600; color: var(--white); }
.hero-card-featured .hc-title { color: var(--navy); }
.hc-text  { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.5; }
.hero-card-featured .hc-text { color: rgba(13,31,60,.7); }

@keyframes fadeInUp   { from { opacity:0; transform: translateY(20px);  } to { opacity:1; transform: translateY(0); } }

/* ==========================================================================
   STATS — Cream background, plain numbers (trust in simplicity)
   ========================================================================== */
.stats { background: var(--cream); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.stat-item { text-align: center; padding: 28px 16px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item:nth-child(2), .stat-item:nth-child(4) { border-right: none; }
.stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
.stat-number { font-family: var(--ff-head); font-size: clamp(36px, 7vw, 48px); font-weight: 700; line-height: 1; margin-bottom: 8px; color: var(--navy); }
.stat-label  { font-size: 14px; color: var(--text-muted); font-weight: 400; line-height: 1.4; }

/* ==========================================================================
   SERVICES — MINIMAL GRID CARDS (based on user reference design)
   Clean cards: icon top-left, title, short text. 3-col grid.
   ========================================================================== */
.services { padding: 80px 0 100px; background: var(--cream); }

/* Card grid */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Each card */
.svc-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-decoration: none;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.svc-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(13,31,60,.06);
}

/* Icon circle — top left */
.svc-card-icon {
  width: 48px; height: 48px;
  background: rgba(13,31,60,.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 20px;
  transition: background .3s ease;
}
.svc-card:hover .svc-card-icon {
  background: rgba(196,150,42,.12);
  color: var(--gold);
}

/* Title */
.svc-card-title {
  font-family: var(--ff-head);
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 8px;
}

/* Description */
.svc-card-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}


.svc-card:hover { gap: 10px; }

/* Services page variant (cream bg section) */
.sv-section { padding: 80px 0; background: var(--cream); }

/* ==========================================================================
   WHY US
   ========================================================================== */
.why-us { padding: 80px 0 100px; background: var(--navy); position: relative; overflow: hidden; border-radius: var(--radius-section) var(--radius-section) 0 0; }
.why-us::before { content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(196,150,42,.06) 0%, transparent 70%); pointer-events: none; }
.why-left { margin-bottom: 48px; }
.why-left .section-title { color: var(--white); }
.why-left .section-sub   { color: rgba(255,255,255,.65); }
.why-anna { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.anna-avatar { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--gold); overflow: hidden; flex-shrink: 0; }
.anna-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.anna-info strong { font-size: 14px; color: var(--white); display: block; margin-bottom: 2px; }
.anna-info p      { font-size: 12px; color: rgba(255,255,255,.6); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 22px 18px; transition: var(--transition); }
.why-card:hover { background: rgba(255,255,255,.1); border-color: rgba(196,150,42,.3); transform: translateY(-3px); }
.wc-icon  { width: 40px; height: 40px; background: rgba(196,150,42,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 16px; margin-bottom: 12px; }
.wc-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 5px; }
.wc-text  { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ==========================================================================
   CLIENTS LOGO STRIP
   ========================================================================== */
.clients { padding: 72px 0; background: var(--cream); overflow: hidden; }
.clients .container { text-align: center; margin-bottom: 44px; }
.logos-track-wrap { position: relative; overflow: hidden; width: 100%; }
.logos-track-wrap::before,
.logos-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.logos-track-wrap::before { left:  0; background: linear-gradient(to right, var(--cream), transparent); }
.logos-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--cream), transparent); }
.logos-track { display: flex; align-items: center; gap: 24px; width: max-content; padding: 10px 0; animation: logoScroll 42s linear infinite; }
.logos-track:hover { animation-play-state: paused; }
@keyframes logoScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.logo-item { width: 200px; height: 120px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; padding: 10px 14px; transition: var(--transition); flex-shrink: 0; overflow: hidden; }
.logo-item:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 6px 20px rgba(13,31,60,.1); }
.logo-item img { max-width: 100%; max-height: 100%; object-fit:contain; }

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.process { padding: 80px 0; background: var(--cream); position: relative; overflow: hidden; }
.steps-row { display: flex; justify-content: center; align-items: flex-start; gap: 0; position: relative; max-width: 900px; margin: 0 auto; }
.steps-lines { position: absolute; top: 50px; left: 0; width: 100%; height: 60px; pointer-events: none; display: none; }
.steps-lines path { fill: none; stroke: var(--gold); stroke-width: 2; stroke-dasharray: 8 6; opacity: .4; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.step-circle-wrap { position: relative; margin-bottom: 20px; }
.step-circle { width: 100px; height: 100px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; border: 2px dashed var(--border); transition: var(--transition); }
.step-circle--solid { border: none; box-shadow: 0 8px 24px rgba(13,31,60,.1); }
.step-circle i { font-size: 28px; color: var(--navy); }
.step:hover .step-circle { border-color: transparent; box-shadow: 0 8px 24px rgba(13,31,60,.1); }
.step-num { position: absolute; top: -4px; left: -4px; width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: var(--ff-head); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(196,150,42,.3); z-index: 2; }
.step-title { font-family: var(--ff-head); font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.step-text { font-size: 13px; color: var(--text-muted); line-height: 1.65; max-width: 200px; }

/* ==========================================================================
   INDUSTRIES
   ========================================================================== */
.industries { padding: 72px 0; background: var(--white); }
.ind-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.ind-tag { background: var(--cream); border: 1px solid var(--border); border-radius: 100px; padding: 8px 16px; font-size: 13px; color: var(--navy); font-weight: 500; transition: var(--transition); }
.ind-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { padding: 100px 0; background: var(--cream); position: relative; overflow: hidden; }
.testimonials::before { content: '\201C'; font-family: var(--ff-head); font-size: 160px; line-height: 1; color: rgba(196,150,42,.08); position: absolute; top: 30px; left: 50%; transform: translateX(-50%); pointer-events: none; z-index: 0; }
.testi-slider  { position: relative; overflow: hidden; margin-top: 44px; z-index: 1; }
.testi-track   { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testi-card    { min-width: 100%; padding: 0 8px; }
.testi-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px; max-width: 700px; margin: 0 auto;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.testi-stars  { color: var(--gold); font-size: 16px; margin-bottom: 18px; letter-spacing: 3px; }
.testi-quote  { font-size: 18px; font-family: var(--ff-head); font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 28px; position: relative; z-index: 1; }
.testi-name   { font-weight: 600; font-size: 15px; color: var(--navy); }
.testi-role   { font-size: 13px; color: var(--text-muted); margin-top: 3px; }
.testi-service-tag { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 600; background: rgba(196,150,42,.1); color: var(--gold); padding: 4px 12px; border-radius: 100px; }
.testi-nav    { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 32px; }
.testi-btn    { width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--navy); cursor: pointer; transition: var(--transition); }
.testi-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.testi-dots   { display: flex; gap: 8px; align-items: center; }
.testi-dot    { width: 24px; height: 3px; border-radius: 2px; background: var(--border); cursor: pointer; transition: var(--transition); }
.testi-dot.active { background: var(--gold); width: 32px; }

/* ==========================================================================
   PAGE HERO BANNER (inner pages)
   ========================================================================== */
.page-hero { background: var(--navy); padding: 56px 0 48px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(196,150,42,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(196,150,42,.04) 1px, transparent 1px); background-size: 56px 56px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-label { font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.page-hero-title { color: var(--white); margin-bottom: 10px; }
.page-hero-sub   { color: rgba(255,255,255,.65); font-size: 15px; }
.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(255,255,255,.45); margin-top: 18px; flex-wrap: wrap; }
.breadcrumb a    { color: rgba(255,255,255,.45); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i    { font-size: 9px; }
.breadcrumb .current { color: var(--gold); }

/* ==========================================================================
   ABOUT - OUR STORY
   ========================================================================== */
.about-story { padding: 80px 0; background: var(--white); }
.story-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.story-text p:last-child { margin-bottom: 0; }
.story-anna-quote { margin-top: 28px; display: flex; gap: 16px; align-items: flex-start; background: var(--cream); border-radius: var(--radius); padding: 18px; border: 1px solid var(--border); }
.saq-avatar { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--gold); overflow: hidden; flex-shrink: 0; }
.saq-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.saq-text blockquote { font-size: 14px; font-style: italic; color: var(--text); line-height: 1.65; margin-bottom: 6px; }
.saq-text cite { font-size: 12px; color: var(--gold); font-weight: 600; font-style: normal; }
.story-image { margin-top: 36px; }
.story-image img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ==========================================================================
   ABOUT - MISSION VISION VALUES
   ========================================================================== */
.about-mvv { padding: 72px 0; background: var(--cream); }
.mvv-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
.mvv-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: var(--transition); }
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.mvv-icon  { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.mvv-title { font-family: var(--ff-head); font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.mvv-text  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ==========================================================================
   ABOUT - TEAM
   ========================================================================== */
.about-team { padding: 80px 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 44px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.tc-image { width: 100%; height: 280px; overflow: hidden; background: var(--cream); }
.tc-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.tc-body { padding: 18px 20px; text-align: center; }
.tc-name { font-family: var(--ff-head); font-size: 18px; color: var(--navy); margin-bottom: 4px; }
.tc-role { font-size: 12px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.team-card.featured { border-top: 3px solid var(--gold); }

/* ==========================================================================
   TEAM MEMBER PROFILE (team-member.php)
   ========================================================================== */
.member-profile { padding: 80px 0; background: var(--white); }
.mp-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.mp-sidebar { }
.mp-photo { border-radius: var(--radius-lg); overflow: hidden; background: var(--cream); }
.mp-photo img { width: 100%; height: auto; display: block; object-fit: cover; }
.mp-credentials { margin-top: 24px; padding: 24px; background: var(--cream); border-radius: var(--radius-lg); }
.mp-sidebar-title { font-family: var(--ff-head); font-size: 16px; color: var(--navy); margin-bottom: 14px; }
.mp-cred-list { list-style: none; padding: 0; margin: 0; }
.mp-cred-list li { font-size: 14px; color: var(--text-body); padding: 6px 0; display: flex; align-items: center; gap: 10px; }
.mp-cred-list li i { color: var(--gold); font-size: 12px; flex-shrink: 0; }
.mp-section { margin-bottom: 32px; }
.mp-heading { font-family: var(--ff-head); font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.mp-bio { font-size: 15px; color: var(--text-body); line-height: 1.75; }
.mp-detail-list { list-style: none; padding: 0; margin: 0; }
.mp-detail-list li { font-size: 14px; color: var(--text-body); padding: 8px 0; display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.mp-detail-list li i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.mp-text { font-size: 15px; color: var(--text-body); line-height: 1.75; }
.mp-expertise-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.mp-expertise-tag { font-size: 13px; font-weight: 500; padding: 8px 16px; border-radius: 100px; background: var(--cream); color: var(--navy); border: 1px solid var(--border); }
.mp-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner { border-radius:0 0 var(--radius-section) var(--radius-section); padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; text-align: center;}
.cta-banner::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 300px; border-radius: 50%; background: radial-gradient(ellipse, rgba(196,150,42,.06) 0%, transparent 70%); }
.cta-banner .container { position: relative; z-index: 1;}
.cta-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.cii-icon  { width: 46px; height: 46px; flex-shrink: 0; background: var(--gold-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); }
.cii-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 3px; }
.cii-value { font-size: 14px; color: var(--navy); font-weight: 500; line-height: 1.5; }
.cii-value a { color: var(--navy); transition: color .2s; }
.cii-value a:hover { color: var(--gold); }
.contact-hours { background: var(--cream); border-radius: var(--radius); padding: 18px 20px; border: 1px solid var(--border); margin-top: 24px; }
.contact-hours h4 { font-family: var(--ff-head); font-size: 15px; color: var(--navy); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.contact-hours h4 i { color: var(--gold); }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day   { color: var(--muted); }
.hours-row .hours { font-weight: 600; color: var(--navy); }
.hours-row .closed { color: var(--muted); font-style: italic; }
.contact-form-wrap { margin-top: 48px; background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-title { font-family: var(--ff-head); font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.form-sub   { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 15px; color: var(--text); font-family: var(--ff-body); background: var(--white); transition: var(--transition); outline: none; }
.form-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,31,60,.06); }
.form-input::placeholder { color: var(--muted); opacity: .65; }
textarea.form-input { resize: vertical; min-height: 110px; }
.form-success, .form-error { display: none; padding: 12px 14px; border-radius: var(--radius-sm); font-size: 13px; margin-top: 10px; align-items: center; gap: 8px; }
.form-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: var(--success); }
.form-error   { background: #fef2f2; border: 1px solid #fecaca; color: var(--error); }
.form-success.show, .form-error.show { display: flex; }

/* Map */
.map-section { padding: 0 0 72px; background: var(--white); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 300px; border: none; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--white); color: var(--text-body); padding: 80px 0 0; border-radius: var(--radius-section) var(--radius-section) 0 0; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 20%; right: 20%; height: 2px; background: var(--gold-gradient); border-radius: 2px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-logo-img { height: 52px; width: auto; object-fit: contain; margin-bottom: 12px; }
.footer-tagline  { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-about    { font-size: 13px; line-height: 1.7; margin-bottom: 22px; max-width: 300px; }
.footer-socials  { display: flex; gap: 8px; }
.footer-social   { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-social:hover { background: var(--gold); color: var(--navy); }
.footer-col-title { font-size: 12px; font-weight: 600; color: var(--text-body); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 9px; position: relative; }
.footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.footer-links    { display: flex; flex-direction: column; gap: 9px; }
.footer-link     { font-size: 13px; color: var(--text-body); display: flex; align-items: center; gap: 7px; transition: var(--transition); }
.footer-link:hover { color: var(--gold); padding-left: 4px; }
.footer-link i   { font-size: 9px; color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.fci-icon  { width: 30px; height: 30px; border-radius: 7px; background: rgba(196,150,42,.15); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 12px; flex-shrink: 0; }
.fci-text  { font-size: 13px; line-height: 1.5; }
.fci-text a { color: var(--text-body); transition: color .2s; }
.fci-text a:hover { color: var(--gold); }
.footer-bottom { padding: 18px 0; display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
.footer-copy   { font-size: 12px; }
.footer-legal  { display: flex; gap: 18px; }
.footer-legal a { font-size: 12px; color: var(--text-body); transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float { position: fixed; bottom: 24px; right: 20px; z-index: 999; }
.wa-btn { display: flex; align-items: center; gap: 9px; background: #25D366; color: var(--white); border-radius: 100px; padding: 11px 18px 11px 13px; font-size: 13px; font-weight: 600; box-shadow: 0 6px 24px rgba(37,211,102,.4); transition: var(--transition); }
.wa-btn i { font-size: 20px; }
.wa-btn:hover { background: #20BA5A; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,.5); }
.wa-pulse { position: absolute; top: -3px; right: -3px; width: 13px; height: 13px; background: #FF4444; border-radius: 50%; border: 2px solid var(--white); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: .8; } }

/* ==========================================================================
   TABLET (min-width: 640px)
   ========================================================================== */
@media (min-width: 640px) {
  .btn { width: auto; }
  .hero-btns { flex-direction: row; }
  /* Services: 2-col grid on tablet */
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .mvv-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .cta-btns { flex-direction: row; justify-content: center; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .map-wrap iframe { height: 380px; }
}

/* ==========================================================================
   DESKTOP (min-width: 1024px)
   ========================================================================== */
@media (min-width: 1024px) {
  /* Topbar visible */
  .topbar { display: block; background: var(--navy); padding: 8px 0; }
  .topbar .container { display: flex; justify-content: space-between; align-items: center; }

  /* Navbar */
  .navbar .container { height: 72px; }
  .nav-links { display: flex !important; position: static; background: none; border: none; flex-direction: row; padding: 0; box-shadow: none; align-items: center; gap: 4px; }
  .nav-link { padding: 8px 13px; border-bottom: none; font-size: 14px; position: relative; }
  .nav-link::after { content: ''; position: absolute; bottom: 3px; left: 13px; right: 13px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
  .nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
  .nav-link:hover, .nav-link.active { color: var(--navy); background: var(--cream); }
  .nav-cta { display: inline-block; width: auto; margin-top: 0; margin-left: 8px; padding: 10px 22px; border-radius: 50px; }
  .nav-toggle { display: none; }

  /* Dropdown — desktop hover panel */
  .has-submenu { display: block; border-bottom: none; position: relative; }
  .has-submenu > .nav-link { display: inline-flex; align-items: center; gap: 4px; }
  .has-submenu > .nav-link .submenu-caret { display: inline-block; font-size: 10px; color: var(--text-muted); transition: transform .25s; }
  .has-submenu:hover > .nav-link .submenu-caret,
  .has-submenu:focus-within > .nav-link .submenu-caret { transform: rotate(180deg); color: var(--gold); }
  .submenu-toggle { display: none; }
  .is-mobile-only { display: none; }

  .nav-submenu {
    position: absolute; top: calc(100% + 4px); left: 0;
    min-width: 220px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: 8px 0; max-height: none; overflow: visible;
    flex-basis: auto;
    opacity: 0; transform: translateY(-4px); pointer-events: none;
    transition: opacity .25s cubic-bezier(.4,0,.2,1), transform .25s cubic-bezier(.4,0,.2,1);
    z-index: 1000;
  }
  .has-submenu:hover > .nav-submenu,
  .has-submenu:focus-within > .nav-submenu { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-sublink { padding: 10px 18px; white-space: nowrap; font-size: 14px; }
  .nav-sublink:hover, .nav-sublink:focus { background: var(--cream); color: var(--navy); border-left-color: var(--gold); }

  /* Hero */
  .hero { padding: 0; }
  .hero .container { display: grid; grid-template-columns: 55fr 45fr; gap: 60px; align-items: center; }
  .hero-photo-wrap { display: block; }
  .hero-visual { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-item { border-bottom: none !important; border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:last-child { border-right: none; }

  /* Services */
  .services { padding: 100px 0; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  /* Why us */
  .why-us { padding: 100px 0; }
  .why-us .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .why-left { margin-bottom: 0; }

  /* Process */
  .steps-lines { display: block; }

  /* About */
  .about-story .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .story-image { margin-top: 0; }
  .story-image img { height: 420px; }

  /* Team */
  .team-grid { grid-template-columns: repeat(4, 1fr); }

  /* Team member profile */
  .mp-grid { grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
  .mp-sidebar { position: sticky; top: 100px; }

  /* Contact */
  .contact-section .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
  .contact-form-wrap { margin-top: 0; }

  /* CTA */
  .cta-banner { padding: 100px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; }

  /* Map */
  .map-wrap iframe { height: 420px; }

  /* Logo strip wider */
  .logos-track-wrap::before,
  .logos-track-wrap::after { width: 140px; }

  /* Page hero */
  .page-hero { padding: 72px 0 60px; }
}

/* Contact section desktop grid */
@media (min-width: 1024px) {
  .contact-section .container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: start;
  }
  .contact-form-wrap { margin-top: 0; }
}


/* Process steps mobile: stack */
@media (max-width: 767px) {
  .steps-row { flex-direction: column; align-items: center; gap: 36px; }
  .steps-lines { display: none !important; }
}

/* MVV grid mobile */
@media (max-width: 639px) {
  .mvv-grid { grid-template-columns: 1fr; }
}

/* Creds grid 1 col on smallest screens */
@media (max-width: 400px) {
  .why-grid   { grid-template-columns: 1fr; }
}

/* ==========================================================================
   READING PROGRESS BAR
   ========================================================================== */
#readProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--gold-gradient);
  z-index: 9999; transition: width .1s linear;
  will-change: width;
}

/* ==========================================================================
   ADDITIONAL DESKTOP OVERRIDES
   ========================================================================== */
@media (min-width: 1024px) {
  .services { padding: 120px 0; }
  .svc-grid { gap: 24px; }

  .why-us .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .why-left { margin-bottom: 0; }
  .why-us { padding: 120px 0; }

  .testimonials { padding: 120px 0; }
  .cta-banner { padding: 120px 0; }
}

/* ==========================================================================
   PAGE HERO — subtle gold line at bottom
   ========================================================================== */
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 20%; right: 20%;
  height: 2px; background: var(--gold-gradient); opacity: .4;
}

/* ==========================================================================
   MOBILE — smaller curves on small screens
   ========================================================================== */
@media (max-width: 639px) {
  .why-us     { border-radius: 2rem 2rem 0 0; }
  .footer     { border-radius: 2rem 2rem 0 0; }
  .hero       { min-height: 100svh; padding: 80px 0 60px; }
}
