/* ================================================================
   SAARATHI ACCOUNTANTS — Stylesheet
   Multi-page · Corporate professional theme · Preston, Melbourne
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette */
  --navy:        #1a3058;
  --navy-dark:   #0c1a2e;
  --navy-deep:   #07101e;
  --navy-mid:    #142444;
  --navy-light:  #204070;
  --gold:        #b8963e;
  --gold-light:  #d4af62;
  --gold-pale:   #fdf6e7;
  --gold-bright: #e0b855;
  --white:       #ffffff;
  --bg:          #f4f6fc;
  --bg-warm:     #f9f7f2;
  --ink:         #0d1b2e;
  --ink-2:       #1f2d45;
  --ink-3:       #3d4f66;
  --ink-4:       #6b7e96;
  --line:        #dde3f0;
  --line-2:      #c8d2e4;
  /* Radius */
  --r-sm: 5px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px;
  /* Shadow */
  --sh-sm: 0 1px 4px rgba(0,0,0,.08);
  --sh-md: 0 4px 20px rgba(0,0,0,.10);
  --sh-lg: 0 12px 48px rgba(0,0,0,.14);
  /* Fonts — three-tier typography system */
  --font:      'Inter', system-ui, sans-serif;          /* body, paragraphs */
  --serif:     'Merriweather', Georgia, serif;           /* h1, h2 — corporate headings */
  --font-ui:   'DM Sans', 'Inter', system-ui, sans-serif; /* nav, buttons, labels, eyebrows */
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--white); line-height: 1.68; -webkit-font-smoothing: antialiased; font-size: 15px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.mt-16 { margin-top: 16px; display: inline-block; }

/* ---- Typography — Corporate three-font system ---- */
h1 { font-family: var(--serif); font-size: clamp(30px, 4vw, 52px); line-height: 1.18; font-weight: 900; letter-spacing: -0.02em; color: var(--ink); }
h2 { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 38px); line-height: 1.28; font-weight: 700; letter-spacing: -0.015em; color: var(--ink); }
h3 { font-family: var(--font-ui); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
h4 { font-family: var(--font-ui); font-size: 14px; font-weight: 600; letter-spacing: 0; color: var(--ink); }
h5 { font-family: var(--font-ui); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4); }
p  { font-family: var(--font); color: var(--ink-3); line-height: 1.78; font-size: 15px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.eyebrow svg { opacity: .85; }
.eyebrow-gold { color: var(--gold-light); }
.gold-em { color: var(--gold); font-style: italic; }
.text-white { color: var(--white) !important; }
.text-muted  { color: rgba(255,255,255,.52) !important; }

/* Gold animated bar */
.gold-bar { width: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin-bottom: 18px; transition: width .9s cubic-bezier(.2,.8,.2,1) .3s; }
.sr.visible .gold-bar, .sr-anim.visible { width: 44px; }

/* ---- Scroll reveal ---- */
.sr { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.sr.sr-right { transform: translateX(32px); }
.sr.visible  { opacity: 1; transform: none; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--r-sm); font-family: var(--font-ui); font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; border: none; letter-spacing: .01em; }
.btn svg { transition: transform .2s; flex-shrink: 0; }
.btn:hover svg { transform: translate(2px,-2px); }
.btn-navy   { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn-gold   { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(184,150,62,.3); }
.btn-glass  { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(6px); }
.btn-glass:hover { background: rgba(255,255,255,.15); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); font-family: var(--font-ui); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); transform: translateY(-1px); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; padding: 14px; }

/* Pulse dot */
.pulse-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #4caf50; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.9)} }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 24px; }
.brand { display: flex; align-items: center; }
.brand-img { height: 42px; width: auto; object-fit: contain; display: block; }
.brand-img.wh { filter: brightness(0) invert(1); }
.brand-fallback { display: flex; align-items: center; gap: 8px; }
.brand-icon { width: 34px; height: 34px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.brand-icon span { color: var(--gold); font-weight: 900; font-size: 15px; font-family: var(--serif); }
.brand-word { font-family: var(--font-ui); font-size: 15px; font-weight: 600; color: var(--navy); letter-spacing: .04em; }
.brand-word em { color: var(--gold); font-style: normal; }
.brand-word.wh { color: var(--white); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nl { font-family: var(--font-ui); font-size: 14px; font-weight: 500; color: var(--ink-3); padding: 8px 14px; border-radius: var(--r-sm); transition: all .15s; display: flex; align-items: center; gap: 4px; }
.nl:hover, .nl.active { color: var(--navy); background: rgba(29,52,97,.06); }

/* Dropdown */
.nl-drop { position: relative; }
.drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 8px;
  box-shadow: var(--sh-lg); min-width: 260px;
  display: flex; flex-direction: column; gap: 2px;
}
.drop-menu a { font-family: var(--font-ui); font-size: 13px; font-weight: 500; color: var(--ink-3); padding: 9px 14px; border-radius: var(--r-sm); transition: all .15s; }
.drop-menu a:hover { color: var(--navy); background: var(--bg); }
.drop-all { font-size: 11px !important; font-weight: 700 !important; letter-spacing: .08em; text-transform: uppercase; color: var(--gold) !important; border-bottom: 1px solid var(--line) !important; border-radius: 0 !important; margin-bottom: 4px; padding-bottom: 12px !important; }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-pill { font-family: var(--font-ui); font-size: 12px; font-weight: 500; background: var(--gold-pale); color: var(--gold); border: 1px solid #e8d5a0; padding: 4px 10px; border-radius: 20px; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; display: block; }

/* Mobile overlay */
.mob-overlay { position: fixed; inset: 0; z-index: 300; background: var(--navy-dark); display: flex; flex-direction: column; padding: 24px; overflow-y: auto; }
.mob-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mob-close { background: none; border: none; color: rgba(255,255,255,.6); font-size: 22px; cursor: pointer; }
.mob-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mob-nav a { font-family: var(--font-ui); font-size: 18px; font-weight: 600; color: rgba(255,255,255,.85); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); transition: color .15s; }
.mob-nav a:hover { color: var(--gold); }
.mob-group > span { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); padding: 16px 0 8px; display: block; }
.mob-sub { font-size: 15px !important; padding: 10px 16px !important; color: rgba(255,255,255,.6) !important; border-bottom-color: rgba(255,255,255,.04) !important; }
.mob-btn { margin-top: 32px; justify-content: center; font-size: 16px; padding: 16px; }

/* ---- Hero background (orbs + grid) ---- */
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .7; }
.orb-a { width: 600px; height: 600px; background: radial-gradient(circle at center, #1d3461 0%, transparent 70%); top: -180px; left: -120px; animation: orbDrift 22s ease-in-out infinite alternate; }
.orb-b { width: 400px; height: 400px; background: radial-gradient(circle at center, rgba(184,150,62,.18) 0%, transparent 70%); bottom: -60px; right: 80px; animation: orbDrift 28s ease-in-out infinite alternate-reverse; }
.orb-c { width: 280px; height: 280px; background: radial-gradient(circle at center, rgba(10,28,55,.7) 0%, transparent 70%); top: 35%; left: 52%; animation: orbDrift 19s ease-in-out 4s infinite alternate; }
@keyframes orbDrift { from{transform:translate(0,0) scale(1)} to{transform:translate(55px,35px) scale(1.07)} }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ---- Section backgrounds ---- */
.bg-white { background: var(--white); }
.bg-dots {
  background-color: var(--bg);
  background-image: radial-gradient(rgba(29,52,97,.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.bg-navy-tex {
  background-color: var(--navy-dark);
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  position: relative;
}

/* ---- Section head ---- */
.section-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; margin-bottom: 64px; }
.section-head-light h2 { color: var(--white) !important; }
.section-head p { font-size: 15px; padding-top: 6px; }
.section-head-light p { color: rgba(255,255,255,.52) !important; font-size: 15px; }

/* ---- HOME HERO ---- */
.home-hero {
  position: relative; overflow: hidden;
  background: var(--navy-dark);
  padding: 108px 0 90px;
}
.home-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.hero-text h1 { color: var(--white); margin-bottom: 20px; }
.hero-text p  { font-size: 16px; color: rgba(255,255,255,.58); max-width: 44ch; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-panel { display: flex; flex-direction: column; gap: 16px; }
.hp-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-xl); overflow: hidden; backdrop-filter: blur(8px); }
.hp-card-head { background: rgba(184,150,62,.12); border-bottom: 1px solid rgba(184,150,62,.2); padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; }
.hp-card-head span:first-child { font-family: var(--font-ui); font-size: 11px; font-weight: 600; color: rgba(255,255,255,.65); letter-spacing: .08em; text-transform: uppercase; }
.hp-badge { font-family: var(--font-ui); font-size: 11px; font-weight: 600; background: rgba(76,175,80,.15); color: #81c784; border: 1px solid rgba(76,175,80,.3); padding: 3px 10px; border-radius: 20px; }
.hp-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 24px; border-bottom: 1px solid rgba(255,255,255,.06); font-family: var(--font-ui); font-size: 13px; color: rgba(255,255,255,.5); }
.hp-row:last-child { border-bottom: none; }
.hp-val { font-weight: 600; }
.hp-g { color: #81c784; }
.hp-a { color: var(--gold-light); }
.hp-footer { padding: 14px 24px; font-family: var(--font); font-size: 12px; color: rgba(255,255,255,.38); text-align: center; font-style: italic; border-top: 1px solid rgba(255,255,255,.06); }
.hp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.08); border-radius: var(--r-md); overflow: hidden; }
.hp-stat { background: rgba(255,255,255,.03); padding: 18px; text-align: center; backdrop-filter: blur(4px); }
.hs-n { display: block; font-size: 24px; font-weight: 900; font-family: var(--serif); color: var(--gold); }
.hs-l { font-family: var(--font-ui); font-size: 11px; color: rgba(255,255,255,.4); }

/* ---- Ticker — 20% taller, bordered, with icons ---- */
.ticker {
  background: var(--navy);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.ticker-track { display: flex; animation: tickerScroll 36s linear infinite; width: max-content; }
.ticker-track:hover { animation-play-state: paused; }
.t-item {
  white-space: nowrap; padding: 0 32px;
  font-family: var(--font-ui); font-size: 14px;
  color: rgba(255,255,255,.62);
  display: flex; align-items: center; gap: 8px;
}
.t-icon { color: var(--gold-light); display: flex; align-items: center; opacity: .9; flex-shrink: 0; }
.t-item strong { color: var(--gold-light); font-weight: 600; }
.t-sep { color: rgba(255,255,255,.3); font-weight: 300; }
.t-sub { color: rgba(255,255,255,.45); font-size: 13px; }
.t-dot { width: 4px; height: 4px; background: rgba(184,150,62,.5); border-radius: 50%; margin-left: 28px; flex-shrink: 0; }
@keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ---- Services grid (home) ---- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  position: relative; display: block;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 28px 24px; background: var(--white);
  transition: all .25s; overflow: hidden; cursor: pointer;
}
.svc-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-lg);
  background: linear-gradient(135deg, transparent 60%, rgba(184,150,62,.06));
  opacity: 0; transition: opacity .3s;
}
.svc-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(184,150,62,.15); transform: translateY(-3px); }
.svc-card:hover::after { opacity: 1; }
.svc-card:hover .svc-arrow { color: var(--gold); }
.svc-featured { background: var(--navy); border-color: var(--navy); }
.svc-featured h3 { color: var(--white); }
.svc-featured p { color: rgba(255,255,255,.58); }
.svc-featured .svc-icon { background: rgba(184,150,62,.15); color: var(--gold-light); }
.svc-featured:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(184,150,62,.25); }
.svc-featured .svc-arrow { color: var(--gold-light); }
.svc-icon { width: 44px; height: 44px; background: var(--gold-pale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--gold); }
.svc-card h3 { font-size: 15px; margin-bottom: 9px; line-height: 1.38; }
.svc-card p  { font-size: 13px; line-height: 1.68; margin-bottom: 16px; }
.svc-arrow { font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--ink-4); transition: color .2s; }

/* ---- Why grid ---- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-lg); padding: 32px; transition: all .25s; }
.why-card:hover { background: rgba(255,255,255,.07); border-color: rgba(184,150,62,.3); transform: translateY(-2px); }
.why-n { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: .14em; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 14px; }
.why-card h3 { color: var(--white); font-size: 16px; margin-bottom: 10px; }
.why-card p  { color: rgba(255,255,255,.5); font-size: 13.5px; }

/* ---- Process ---- */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-row::before { content:''; position:absolute; top:28px; left:calc(12.5% + 20px); right:calc(12.5% + 20px); height:2px; background:linear-gradient(90deg, var(--gold) 0%, var(--line) 100%); }
.proc-step { text-align: center; padding: 0 16px; }
.proc-n { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--white); font-family: var(--serif); font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--white), 0 0 0 8px var(--line); }
.proc-step:first-child .proc-n { background: var(--gold); box-shadow: 0 0 0 6px var(--white), 0 0 0 8px rgba(184,150,62,.3); }
.proc-step h4 { font-size: 14px; margin-bottom: 8px; }
.proc-step p  { font-size: 13px; }

/* ---- ATO Deadlines ---- */
.deadline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
.dl-card { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); transition: all .2s; }
.dl-card:hover { box-shadow: var(--sh-md); transform: translateY(-1px); }
.dl-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dl-upcoming .dl-dot { background: var(--gold); box-shadow: 0 0 0 3px rgba(184,150,62,.2); animation: pulse 2s infinite; }
.dl-warning  .dl-dot { background: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,.2); animation: pulse 1.5s infinite; }
.dl-future   .dl-dot { background: var(--line-2); }
.dl-label { font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--ink); }
.dl-date  { font-family: var(--font-ui); font-size: 12px; color: var(--ink-4); }
.deadline-note { font-size: 14px; color: var(--ink-3); text-align: center; }
.deadline-note a { color: var(--navy); font-weight: 600; }

/* ---- CTA Banner ---- */
.cta-banner { position: relative; overflow: hidden; background: var(--navy-dark); padding: 80px 0; }
.cta-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 48px; flex-wrap: wrap; }
.cta-inner h2 { color: var(--white); margin-bottom: 10px; }
.cta-inner p  { color: rgba(255,255,255,.52); font-size: 16px; }
.cta-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ---- Page hero (inner pages) ---- */
.page-hero { position: relative; overflow: hidden; background: var(--navy-dark); padding: 80px 0 72px; }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: 12px; color: rgba(255,255,255,.38); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.48); transition: color .15s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span:last-child { color: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,.55); max-width: 56ch; }

/* ---- Services overview page ---- */
.svc-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-detail-card { display: flex; gap: 24px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); transition: all .25s; cursor: pointer; }
.svc-detail-card:hover { border-color: var(--gold); box-shadow: 0 6px 28px rgba(184,150,62,.12); transform: translateY(-2px); }
.sdc-icon { width: 48px; height: 48px; background: var(--gold-pale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.sdc-body h3 { font-size: 15px; margin-bottom: 8px; }
.sdc-body p  { font-size: 13px; line-height: 1.65; margin-bottom: 12px; }
.sdc-link { font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--navy); transition: color .15s; }
.svc-detail-card:hover .sdc-link { color: var(--gold); }

/* ---- Service detail page ---- */
.svc-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.sdl-intro { font-size: 17px; color: var(--ink-2); line-height: 1.76; font-weight: 400; font-family: var(--font); }
.sdl-section { margin-top: 36px; }
.sdl-section h3 { font-size: 17px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--line); }
.sdl-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sdl-list li { font-size: 14px; color: var(--ink-3); display: flex; align-items: flex-start; gap: 8px; }
.sdl-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.sdl-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.sdl-tag { background: var(--bg); border: 1px solid var(--line); border-radius: 20px; padding: 7px 14px; font-family: var(--font-ui); font-size: 13px; color: var(--ink-3); }
.sdl-cta-box { background: var(--navy); border-radius: var(--r-lg); padding: 32px; margin-bottom: 20px; }
.sdl-cta-box h4 { color: var(--white); font-size: 16px; margin-bottom: 10px; }
.sdl-cta-box p  { color: rgba(255,255,255,.58); font-size: 14px; margin-bottom: 20px; }
.sdl-cta-box .btn { width: 100%; justify-content: center; background: var(--gold); color: var(--white); }
.sdl-cta-box .btn:hover { background: var(--gold-light); }
.sdl-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 6px; }
.sdl-contact a { font-family: var(--font-ui); font-size: 14px; color: rgba(255,255,255,.58); transition: color .15s; }
.sdl-contact a:hover { color: var(--gold-light); }
.sdl-accred { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; }
.sdl-accred-title { font-family: var(--font-ui); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-4); display: block; margin-bottom: 14px; }
.sdl-accred-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); font-family: var(--font-ui); font-size: 13px; color: var(--ink-3); }
.sdl-accred-item:last-child { border-bottom: none; }
.sdl-accred-item span { color: #38a169; font-weight: 700; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; cursor: pointer; background: var(--white); transition: border-color .2s; }
.faq-item:hover, .faq-item.open { border-color: var(--navy); }
.faq-item.open { border-color: var(--gold); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; font-family: var(--font-ui); font-size: 14px; font-weight: 600; color: var(--ink); }
.faq-icon { font-size: 20px; color: var(--gold); font-weight: 300; flex-shrink: 0; margin-left: 16px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.8,.2,1), padding .4s ease; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }
.faq-a p { font-size: 14px; }

/* ---- About page ---- */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-lead { font-size: 17px; color: var(--ink-2); line-height: 1.78; margin-bottom: 18px; font-family: var(--font); }
.about-story p { margin-bottom: 14px; }
.about-img-wrap { position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: 440px; }
.about-img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; filter: brightness(.78); display: block; }
.about-img-card {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(12,26,46,.92); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-md); padding: 18px 24px;
  display: flex; align-items: center; gap: 20px;
  border: 1px solid rgba(184,150,62,.28);
}
.aic-stat { display: flex; flex-direction: column; gap: 2px; }
.aic-n { font-size: 24px; font-weight: 900; font-family: var(--serif); color: var(--gold); }
.aic-l { font-family: var(--font-ui); font-size: 11px; color: rgba(255,255,255,.48); white-space: nowrap; }
.aic-div { width: 1px; height: 34px; background: rgba(255,255,255,.14); flex-shrink: 0; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; transition: all .25s; }
.value-card:hover { border-color: var(--gold); box-shadow: 0 6px 28px rgba(184,150,62,.1); transform: translateY(-2px); }
.val-n { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: .14em; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 14px; }
.value-card h3 { margin-bottom: 10px; }

.accred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.accred-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: all .25s; }
.accred-card:hover { background: rgba(255,255,255,.08); border-color: rgba(184,150,62,.3); }
.accred-check { font-size: 14px; color: var(--gold); font-weight: 700; flex-shrink: 0; width: 28px; height: 28px; background: rgba(184,150,62,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.accred-card h4 { font-size: 13px; color: var(--white); margin-bottom: 5px; }
.accred-card p  { font-size: 13px; color: rgba(255,255,255,.48); }

/* ---- Blog page ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; transition: all .25s; cursor: pointer; display: flex; flex-direction: column; gap: 12px; }
.blog-card:hover { border-color: var(--navy); box-shadow: var(--sh-md); transform: translateY(-2px); }
.blog-featured { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-family: var(--font-ui); font-size: 12px; color: var(--ink-4); flex-wrap: wrap; }
.blog-cat { background: var(--gold-pale); color: var(--gold); font-weight: 600; padding: 3px 10px; border-radius: 20px; font-size: 11px; }
.blog-card h3 { font-size: 15px; line-height: 1.42; }
.blog-featured h3 { font-size: 19px; }
.blog-card p { font-size: 13px; flex: 1; }
.blog-cta { font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--navy); transition: color .15s; }
.blog-card:hover .blog-cta { color: var(--gold); }
.blog-cta-row { text-align: center; font-size: 15px; color: var(--ink-3); }
.blog-cta-row a { color: var(--navy); font-weight: 600; }

/* ---- Contact page ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-details h2 { margin-bottom: 16px; }
.cd-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.cd-row:last-of-type { border-bottom: none; }
.cd-key { font-family: var(--font-ui); font-weight: 700; color: var(--navy); min-width: 78px; flex-shrink: 0; }
.cd-val { font-family: var(--font); color: var(--ink-3); line-height: 1.65; }
.cd-val a { color: var(--navy); font-weight: 500; }
.cd-val a:hover { color: var(--gold); }
.contact-callout { display: flex; gap: 14px; margin-top: 28px; padding: 20px; background: var(--gold-pale); border: 1px solid #e8d5a0; border-radius: var(--r-md); }
.cc-icon { width: 36px; height: 36px; background: var(--gold); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-callout strong { font-family: var(--font-ui); font-size: 14px; color: var(--navy); display: block; margin-bottom: 4px; }
.contact-callout p { font-size: 13px; color: var(--ink-4); }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--sh-lg); }
.form-heading { font-family: var(--font-ui); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-4); margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm); font-size: 14px; font-family: var(--font); color: var(--ink); background: var(--white); outline: none; transition: border-color .15s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); }
.field input.err, .field textarea.err { border-color: #e53e3e; }
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { text-align: center; padding: 48px 20px; }
.fs-icon { width: 60px; height: 60px; background: #38a169; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--ink-3); }

/* ---- Footer — 3-column card layout ---- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.55); padding: 64px 0 0; position: relative; }
.footer-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }
.footer .container { position: relative; z-index: 1; }

.footer-cards {
  display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 20px; margin-bottom: 40px;
}
.fc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 0;
}

/* Card 1 — Brand */
.fc-card .brand-img { height: 36px; margin-bottom: 16px; }
.fc-tagline { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.68; margin-bottom: 20px; }
.fc-accreds { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.fc-accreds span { font-family: var(--font-ui); font-size: 11px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 3px 10px; color: rgba(255,255,255,.45); }
.fc-socials { display: flex; gap: 10px; }
.fc-social {
  width: 30px; height: 30px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: all .2s;
}
.fc-social:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); color: var(--white); transform: translateY(-2px); }
.fc-social svg { flex-shrink: 0; }

/* Card 2 — Links */
.fc-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.fc-title {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.3); margin-bottom: 14px;
}
.fc-title + .fc-title { margin-top: 24px; }
.fc-card a {
  font-family: var(--font-ui); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.52); display: block; padding: 5px 0;
  transition: color .15s; border: none;
}
.fc-card a:hover { color: var(--gold-light); }

/* Card 3 — Contact */
.fc-contact-items { display: flex; flex-direction: column; gap: 16px; }
.fc-ci { display: flex; gap: 12px; align-items: flex-start; }
.fc-ci-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(184,150,62,.12);
  border: 1px solid rgba(184,150,62,.2);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
}
.fc-ci-body { display: flex; flex-direction: column; gap: 2px; }
.fc-ci-body a { font-family: var(--font-ui); font-size: 13px; color: rgba(255,255,255,.55); padding: 0 !important; }
.fc-ci-body a:hover { color: var(--gold-light); }
.fc-ci-body span { font-family: var(--font-ui); font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.55; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  font-family: var(--font-ui); font-size: 12px; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.3); transition: color .15s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---- Page transition ---- */
.page-wrap { animation: pageFade .35s ease; }
@keyframes pageFade { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .svc-detail-layout { grid-template-columns: 1fr; }
  .sdl-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-cards { grid-template-columns: 1fr 1fr; }
  .footer-cards .fc-card:first-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .home-hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-row::before { display: none; }
  .about-story { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .accred-grid { grid-template-columns: 1fr 1fr; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .deadline-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-featured { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-cards { grid-template-columns: 1fr; }
  .footer-cards .fc-card:first-child { grid-column: auto; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-pill { display: none; }
  .hamburger { display: flex; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .accred-grid { grid-template-columns: 1fr; }
  .deadline-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .sdl-list { grid-template-columns: 1fr; }
  .sdl-sidebar { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .home-hero { padding: 72px 0 60px; }
  .aic-div { display: none; }
}
