/* ============================================================
   GANA ETAX360 — Premium Frontend Stylesheet v2.0
   Color System:
     Royal Blue     #1a3a6e  (primary brand)
     Deep Navy      #0d1f3c  (dark sections)
     Sky Blue       #2563eb  (accent / CTA)
     Teal Accent    #0891b2  (secondary accent)
     White          #ffffff
     Off-White      #f8fafc
     Light Neutral  #eef2f8
     Text Primary   #0f172a
     Text Secondary #475569
     Text Muted     #94a3b8
   ============================================================ */

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  color: #0f172a;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ─── Container ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ─── Tax Alert Ticker ─────────────────────────────────────── */
.tax-alert-bar {
  background: linear-gradient(90deg, #0d1f3c 0%, #1a3a6e 100%);
  color: #fff;
  padding: 9px 0;
  font-size: 0.84rem;
  border-bottom: 2px solid #2563eb;
  letter-spacing: 0.01em;
}
.tax-alert-bar .container {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.alert-label {
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
}
.tax-alert-bar a { color: #bfdbfe; font-weight: 600; }
.tax-alert-bar a:hover { color: #fff; text-decoration: underline; }
.tax-alert-bar span { color: #e2e8f0; }

/* ─── Header ───────────────────────────────────────────────── */
.site-header {
  background: #0d1f3c;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(13,31,60,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 0;
  padding-bottom: 0;
  height: 72px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img { height: 50px; width: auto; }
.logo-text {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-decoration: none;
}
.logo-text:hover { text-decoration: none; color: #fff; }

/* ─── Navigation ───────────────────────────────────────────── */
.main-nav { flex: 1; }
.nav-list {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.88);
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s;
  height: 72px;
  white-space: nowrap;
}
.nav-list > li > a .nav-arrow {
  font-size: 0.6rem;
  opacity: 0.7;
  transition: transform 0.2s;
  margin-top: 1px;
}
.nav-list > li:hover > a .nav-arrow { transform: rotate(180deg); }
.nav-list > li > a:hover,
.nav-list > li > a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
}

/* ─── Services Mega-Menu ───────────────────────────────────── */
.has-megamenu { position: static; }
.has-megamenu:hover .megamenu { display: block; }
.megamenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(13,31,60,0.18), 0 0 0 1px rgba(13,31,60,0.06);
  min-width: 720px;
  z-index: 500;
  padding: 28px 28px 20px;
  margin-top: 0;
}
.megamenu-header {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef2f8;
}
.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.megamenu-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #0f172a;
  transition: background 0.15s;
  cursor: pointer;
  text-decoration: none;
}
.megamenu-item:hover {
  background: #f0f6ff;
  text-decoration: none;
}
.megamenu-item .mm-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2563eb;
  font-size: 1rem;
}
.megamenu-item:hover .mm-icon {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.megamenu-item .mm-text { min-width: 0; }
.megamenu-item .mm-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  display: block;
}
.megamenu-item .mm-desc {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 1px;
  line-height: 1.3;
  display: block;
}
.megamenu-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #eef2f8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.megamenu-footer a {
  font-size: 0.84rem;
  color: #2563eb;
  font-weight: 600;
}
.megamenu-footer a:hover { text-decoration: underline; }

/* Standard dropdown (fallback for non-services) */
.has-dropdown:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(13,31,60,0.14);
  min-width: 260px;
  z-index: 500;
  padding: 8px 0;
  margin-top: 0;
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.15s;
}
.dropdown li a:hover {
  background: #f0f6ff;
  color: #2563eb;
  text-decoration: none;
}

/* ─── Header Actions ───────────────────────────────────────── */
.header-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.18s;
  letter-spacing: 0.01em;
}
.btn-call { background: #2563eb; color: #fff; }
.btn-call:hover { background: #1d4ed8; text-decoration: none; color: #fff; }
.btn-wa { background: #16a34a; color: #fff; }
.btn-wa:hover { background: #15803d; text-decoration: none; color: #fff; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  line-height: 1;
}
.menu-toggle:hover { background: rgba(255,255,255,0.1); }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s;
  text-align: center;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary { background: #2563eb; color: #fff; border-color: #2563eb; }
.btn-primary:hover { background: #1d4ed8; border-color: #1d4ed8; text-decoration: none; color: #fff; box-shadow: 0 4px 16px rgba(37,99,235,0.4); }
.btn-secondary { background: #0d1f3c; color: #fff; border-color: #0d1f3c; }
.btn-secondary:hover { background: #1a3a6e; border-color: #1a3a6e; text-decoration: none; color: #fff; }
.btn-outline { background: transparent; color: #2563eb; border-color: #2563eb; }
.btn-outline:hover { background: #2563eb; color: #fff; text-decoration: none; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.75); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); color: #fff; text-decoration: none; border-color: #fff; }
.btn-wa-main { background: #16a34a; color: #fff; border-color: #16a34a; }
.btn-wa-main:hover { background: #15803d; text-decoration: none; color: #fff; box-shadow: 0 4px 14px rgba(22,163,74,0.35); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; border-radius: 6px; }
.btn-lg { padding: 16px 40px; font-size: 1.07rem; }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 50%, #0d3677 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(8,145,178,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.5), transparent);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(37,99,235,0.35);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 8px #60a5fa;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero h1 {
  font-size: 2.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.hero h1 .accent { color: #60a5fa; }
.hero-sub {
  font-size: 1.18rem;
  color: #93c5fd;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.hero-desc {
  font-size: 1.0rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}
.hero-trust-item svg { color: #60a5fa; flex-shrink: 0; }

/* Hero form card */
.hero-form-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.hero-form-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-align: center;
}
.hero-form-card .form-subtitle {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-bottom: 22px;
}
.hero-form-card .form-group { margin-bottom: 12px; }
.hero-form-card .form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.09);
  color: #fff;
  border-radius: 7px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.18s;
}
.hero-form-card .form-control::placeholder { color: rgba(255,255,255,0.4); }
.hero-form-card .form-control:focus { outline: none; border-color: #60a5fa; background: rgba(255,255,255,0.12); }
.hero-form-card select.form-control option { background: #0d1f3c; color: #fff; }
.hero-form-card .btn { width: 100%; }
.form-disclaimer { font-size: 0.74rem; color: rgba(255,255,255,0.4); text-align: center; margin-top: 10px; }

/* ─── Sections ─────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: #f8fafc; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .label {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid #dbeafe;
}
.section-header h2 {
  font-size: 2.05rem;
  font-weight: 800;
  color: #0d1f3c;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.section-header p {
  font-size: 1.03rem;
  color: #64748b;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── Stats Strip ───────────────────────────────────────────── */
.stats-strip {
  background: #fff;
  border-bottom: 1px solid #eef2f8;
  border-top: 1px solid #eef2f8;
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: horizontal;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 12px;
  border-right: 1px solid #eef2f8;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a3a6e;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
}

/* ─── Service Cards ─────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #0891b2);
  transform: scaleX(0);
  transition: transform 0.25s;
  border-radius: 14px 14px 0 0;
}
.card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 12px 40px rgba(37,99,235,0.12);
  transform: translateY(-3px);
  text-decoration: none;
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  transition: background 0.2s;
}
.card:hover .card-icon {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0d1f3c;
  margin-bottom: 10px;
  line-height: 1.3;
}
.card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.card-link {
  font-size: 0.87rem;
  font-weight: 700;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.18s;
  text-decoration: none;
  margin-top: auto;
}
.card:hover .card-link { gap: 9px; }
.card-link:hover { text-decoration: underline; }
.card-link::after { content: '→'; }

/* Featured badge */
.card-featured { background: linear-gradient(135deg, #eff6ff, #fff); }

/* Category cards on services page */
.service-cat-section { margin-bottom: 60px; }
.service-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #f0f6ff, #fff);
  border-left: 4px solid #2563eb;
  border-radius: 0 10px 10px 0;
}
.service-cat-icon {
  width: 48px;
  height: 48px;
  background: #2563eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.service-cat-title { flex: 1; }
.service-cat-title h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d1f3c;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.service-cat-title p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

/* ─── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 100%);
  padding: 56px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(37,99,235,0.15), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.page-hero p {
  font-size: 1.06rem;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  line-height: 1.7;
}

/* ─── Breadcrumbs ───────────────────────────────────────────── */
.breadcrumbs {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 0;
  font-size: 0.83rem;
}
.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.breadcrumbs li { color: #94a3b8; }
.breadcrumbs li::after { content: ' /'; margin: 0 8px; color: #cbd5e1; }
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs li a { color: #2563eb; }
.breadcrumbs li a:hover { text-decoration: underline; }
.breadcrumbs li.current span { color: #475569; font-weight: 500; }

/* ─── Who We Help Grid ──────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.who-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.2s;
}
.who-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 28px rgba(37,99,235,0.1);
  transform: translateY(-2px);
}
.who-card .icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 12px;
  filter: grayscale(30%);
}
.who-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1f3c;
  margin-bottom: 6px;
  line-height: 1.3;
}
.who-card p { font-size: 0.82rem; color: #64748b; line-height: 1.5; }

/* ─── Why ETAX360 Grid ──────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 22px;
  transition: all 0.2s;
}
.why-item:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 28px rgba(37,99,235,0.09);
}
.why-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-content h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0d1f3c;
  margin-bottom: 6px;
  line-height: 1.3;
}
.why-content p { font-size: 0.87rem; color: #64748b; line-height: 1.65; }

/* ─── How It Works ──────────────────────────────────────────── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.how-step {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  position: relative;
  transition: all 0.2s;
}
.how-step:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 28px rgba(37,99,235,0.09);
}
.how-step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #2563eb, #1a3a6e);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.how-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1f3c;
  margin-bottom: 8px;
  line-height: 1.3;
}
.how-step p { font-size: 0.85rem; color: #64748b; line-height: 1.6; }

/* ─── Reviews Grid ──────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.2s;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 3rem;
  color: #dbeafe;
  font-family: Georgia, serif;
  line-height: 1;
}
.review-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 28px rgba(37,99,235,0.09);
}
.review-stars { color: #f59e0b; font-size: 0.95rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.review-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1a3a6e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-author-info h4 { font-size: 0.9rem; font-weight: 700; color: #0d1f3c; }
.review-author-info span { font-size: 0.78rem; color: #94a3b8; }

/* ─── FAQs ──────────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: #bfdbfe; }
.faq-item[open] { border-color: #2563eb; }
.faq-item summary {
  padding: 18px 24px;
  font-size: 0.97rem;
  font-weight: 600;
  color: #0d1f3c;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: #2563eb;
  flex-shrink: 0;
  line-height: 1;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: #2563eb; }
.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.75;
}

/* ─── Blog Grid ─────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 12px 36px rgba(37,99,235,0.11);
  transform: translateY(-2px);
}
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card h3 { font-size: 0.97rem; font-weight: 700; color: #0d1f3c; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.87rem; color: #64748b; line-height: 1.65; flex: 1; margin-bottom: 14px; }
.blog-meta { font-size: 0.78rem; color: #94a3b8; margin-top: auto; }
.blog-read-more { font-size: 0.87rem; font-weight: 700; color: #2563eb; margin-top: 12px; display: inline-block; }
.blog-card-img-placeholder {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

/* ─── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 60%, #1e40af 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(37,99,235,0.2), transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-section p {
  font-size: 1.06rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── About Two-Column ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(13,31,60,0.16);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0d1f3c, #1a3a6e);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 24px 60px rgba(13,31,60,0.2);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.about-img-placeholder .img-icon {
  font-size: 4rem;
  opacity: 0.5;
}
.about-accent-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 12px 36px rgba(13,31,60,0.14);
  text-align: center;
  border: 1px solid #e2e8f0;
}
.about-accent-badge .badge-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}
.about-accent-badge .badge-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 4px;
}
.about-content .label {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid #dbeafe;
}
.about-content h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0d1f3c;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.about-content .about-text {
  font-size: 0.97rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d1f3c;
  margin: 22px 0 8px;
}
.about-checklist {
  list-style: none;
  margin-bottom: 28px;
}
.about-checklist li {
  font-size: 0.92rem;
  color: #475569;
  padding: 5px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.about-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 5px;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.85rem;
}
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Service Content Page */
.service-content {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.85;
}
.service-content h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0d1f3c;
  margin: 32px 0 12px;
  letter-spacing: -0.02em;
}
.service-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a3a6e;
  margin: 24px 0 10px;
}
.service-content p { margin-bottom: 14px; }
.service-content ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.service-content ul li { padding: 4px 0; color: #475569; }

/* ─── Forms ─────────────────────────────────────────────────── */
.form-section { background: #f8fafc; padding: 60px 0; }
.form-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(13,31,60,0.06);
}
.form-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0d1f3c;
  margin-bottom: 6px;
}
.form-card .form-subtitle {
  color: #64748b;
  font-size: 0.92rem;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #0f172a;
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-control:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-error { color: #dc2626; font-size: 0.82rem; margin-top: 5px; }
.form-errors-summary {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.form-errors-summary p { color: #dc2626; font-size: 0.88rem; margin-bottom: 4px; }

/* ─── Contact Grid ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, #0d1f3c, #1a3a6e);
  border-radius: 16px;
  padding: 36px 32px;
  color: #fff;
}
.contact-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.contact-info-card .subtitle { font-size: 0.87rem; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: rgba(37,99,235,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text { flex: 1; }
.contact-detail-text .label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; font-weight: 600; }
.contact-detail-text a, .contact-detail-text p { color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 500; margin: 0; }
.contact-detail-text a:hover { color: #fff; }

/* ─── Blog ──────────────────────────────────────────────────── */
.blog-header { background: linear-gradient(135deg, #0d1f3c, #1a3a6e); padding: 48px 0; }
.blog-header h1 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.blog-header p { color: rgba(255,255,255,0.65); font-size: 1rem; }

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #0d1f3c;
  padding: 64px 0 0;
  color: rgba(255,255,255,0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text {
  font-size: 1.35rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
  display: block;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 300px;
}
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 0.18s;
  text-decoration: none;
}
.social-links a:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  text-decoration: none;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  transition: color 0.18s;
  text-decoration: none;
}
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact-item .ci-icon { font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-contact-item a, .footer-contact-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.5;
}
.footer-contact-item a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 16px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

/* ─── Service View ──────────────────────────────────────────── */
.service-hero {
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 100%);
  padding: 52px 0;
}
.service-hero h1 { font-size: 2.1rem; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -0.02em; }
.service-hero p { color: rgba(255,255,255,0.7); font-size: 1.02rem; max-width: 600px; }
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; padding: 48px 0; }
.service-sidebar {
  position: sticky;
  top: 90px;
}
.sidebar-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 24px;
  margin-bottom: 18px;
}
.sidebar-card h4 { font-size: 0.95rem; font-weight: 700; color: #0d1f3c; margin-bottom: 14px; }
.sidebar-card ul { display: flex; flex-direction: column; gap: 8px; }
.sidebar-card ul li a {
  font-size: 0.88rem;
  color: #475569;
  padding: 7px 12px;
  border-radius: 6px;
  display: block;
  transition: all 0.15s;
}
.sidebar-card ul li a:hover {
  background: #eff6ff;
  color: #2563eb;
  text-decoration: none;
  padding-left: 16px;
}

/* ─── Thank You Page ────────────────────────────────────────── */
.thankyou-page {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
}
.thankyou-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 24px;
}
.thankyou-page h1 { font-size: 2rem; font-weight: 800; color: #0d1f3c; margin-bottom: 14px; }
.thankyou-page p { color: #64748b; font-size: 1.02rem; margin-bottom: 28px; max-width: 480px; line-height: 1.7; }

/* ─── Error Pages ───────────────────────────────────────────── */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.error-page h1 { font-size: 5.5rem; font-weight: 900; color: #2563eb; line-height: 1; opacity: 0.15; }
.error-page h2 { font-size: 1.8rem; color: #0d1f3c; margin: -10px 0 16px; }
.error-page p { color: #64748b; margin-bottom: 28px; }
.error-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Alert / Flash ─────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: 9px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
}
.alert-success { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.alert-error, .alert-danger { background: #fef2f2; border-color: #fecaca; color: #dc2626; }
.alert-warning { background: #fffbeb; border-color: #fde68a; color: #b45309; }

/* ─── Pagination ────────────────────────────────────────────── */
.pagination { display: flex; gap: 8px; justify-content: center; padding: 36px 0; }
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1.5px solid #e2e8f0;
  border-radius: 7px;
  font-size: 0.9rem;
  color: #475569;
  transition: all 0.18s;
}
.page-link:hover { border-color: #2563eb; color: #2563eb; text-decoration: none; }
.page-link.active { background: #2563eb; border-color: #2563eb; color: #fff; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .megamenu { min-width: 600px; }
  .megamenu-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 40px; }
  .hero-inner { grid-template-columns: 1fr 380px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 540px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-accent-badge { bottom: -12px; right: -12px; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}
@media (max-width: 700px) {
  .header-inner { flex-wrap: wrap; height: auto; padding: 14px 0; gap: 12px; }
  .main-nav { display: none; order: 4; width: 100%; }
  .main-nav.open { display: block; }
  .nav-list { flex-direction: column; gap: 2px; }
  .nav-list > li > a { height: auto; padding: 12px 16px; border-radius: 8px; }
  .megamenu, .dropdown { position: static; box-shadow: none; border: none; transform: none; background: rgba(255,255,255,0.05); border-radius: 8px; margin-top: 4px; padding: 8px; min-width: 0; }
  .megamenu { display: block !important; }
  .megamenu-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .has-dropdown:hover .dropdown { display: none; }
  .menu-toggle { display: flex; align-items: center; }
  .header-actions { gap: 8px; }
  .btn-icon { padding: 8px 12px; font-size: 0.82rem; }
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .cards-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .page-hero h1 { font-size: 1.75rem; }
  .page-hero { padding: 40px 0 36px; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .cta-section h2 { font-size: 1.6rem; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media print {
  .site-header, .site-footer, .tax-alert-bar { display: none; }
}
