/* ═══════════════════════════════════════════════════════════════
   Qaiser Javed Insurance Advisor — Main Stylesheet v2.0
   Typography System: Inter | Modular Scale 1.25–1.333
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────────── */
:root {
  /* Brand */
  --green:        #3a7d5a;
  --green-dark:   #2c6347;
  --green-lt:     #eef5f1;
  --dark:         #111110;
  --dark2:        #1a1a18;
  --off-white:    #f7f5f0;
  --white:        #ffffff;
  --border:       #e8e5df;

  /* Text (no pure black) */
  --text:         #1a1a18;
  --text-muted:   #6b7280;
  --text-faint:   #9ca3af;
  --text-hero:    rgba(255,255,255,0.88);
  --text-hero-muted: rgba(255,255,255,0.58);

  /* Type Scale — Desktop
     H1: 56px | H2: 40px | H3: 28px | H4: 22px | H5: 18px
     Body-lg: 18px | Body: 16px | Body-sm: 14px | Label: 13px */
  --fs-h1:        3.5rem;
  --fs-h2:        2.5rem;
  --fs-h3:        1.75rem;
  --fs-h4:        1.375rem;
  --fs-h5:        1.125rem;
  --fs-body-lg:   1.125rem;
  --fs-body:      1rem;
  --fs-body-sm:   0.875rem;
  --fs-ui:        0.9375rem;
  --fs-btn:       0.9375rem;
  --fs-label:     0.8125rem;
  --fs-eyebrow:   0.75rem;
  --fs-stat:      1.75rem;

  /* Line Heights */
  --lh-h1:    1.1;
  --lh-h2:    1.2;
  --lh-h3:    1.3;
  --lh-h4:    1.35;
  --lh-body:  1.7;

  /* Letter Spacing */
  --ls-h1:     -0.02em;
  --ls-h2:     -0.01em;
  --ls-btn:     0.02em;
  --ls-eyebrow: 0.14em;

  /* Spacing */
  --section-py: 5.5rem;
  --container:  1200px;
  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
               Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; }

/* ── NAVBAR ─────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 70px; padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo span { color: var(--green); }
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: var(--fs-ui); font-weight: 500;
  color: var(--text-muted); transition: color 0.2s;
}
.nav-links a:hover { color: var(--dark); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-wa {
  display: flex; align-items: center; gap: 7px;
  border: 1.5px solid var(--green); color: var(--green);
  padding: 0.5rem 1.1rem; border-radius: var(--radius-sm);
  font-size: var(--fs-btn); font-weight: 600; letter-spacing: var(--ls-btn);
  transition: background 0.2s, color 0.2s;
}
.btn-wa:hover { background: var(--green); color: #fff; }

.btn-book {
  background: var(--green); color: #fff;
  padding: 0.54rem 1.2rem; border-radius: var(--radius-sm);
  font-size: var(--fs-btn); font-weight: 600; letter-spacing: var(--ls-btn);
  transition: background 0.2s, transform 0.15s;
}
.btn-book:hover { background: var(--green-dark); transform: translateY(-1px); }

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

/* ── HERO ────────────────────────────────────────────────────────── */
#home {
  padding: 120px 2.5rem 6rem;
  background: var(--dark); position: relative; overflow: hidden;
}
#home::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 85% 40%, rgba(58,125,90,0.13), transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 85%, rgba(58,125,90,0.08), transparent 60%);
}
.hero-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(58,125,90,0.18); border: 1px solid rgba(58,125,90,0.4);
  color: #7ec8a0;
  font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; padding: 6px 14px; border-radius: 50px; margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #7ec8a0;
}

.hero-h1 {
  font-size: var(--fs-h1); font-weight: 700;
  line-height: var(--lh-h1); letter-spacing: var(--ls-h1);
  color: #fff; margin-bottom: 1.25rem;
  animation: fadeUp 0.8s 0.08s ease both;
}
.hero-h1 em { font-style: normal; color: #7ec8a0; }

.hero-desc {
  font-size: var(--fs-body-lg); line-height: 1.75;
  color: var(--text-hero); margin-bottom: 2.25rem; max-width: 48ch;
  animation: fadeUp 0.8s 0.16s ease both;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.8s 0.24s ease both; }
.hero-btn-primary {
  background: var(--green); color: #fff;
  padding: 0.875rem 2rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: var(--fs-btn); letter-spacing: var(--ls-btn);
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(58,125,90,0.35);
}
.hero-btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }

.hero-btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.88);
  padding: 0.875rem 2rem; border-radius: var(--radius-sm);
  font-weight: 500; font-size: var(--fs-btn); letter-spacing: var(--ls-btn);
  display: flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.hero-btn-ghost:hover { border-color: var(--green); background: rgba(58,125,90,0.1); }

.hero-stats {
  display: flex; gap: 3rem; margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.8s 0.32s ease both;
}
.hs-num {
  font-size: var(--fs-stat); font-weight: 700;
  color: #fff; letter-spacing: -0.02em; line-height: 1;
}
.hs-label {
  font-size: var(--fs-body-sm); color: var(--text-hero-muted); margin-top: 6px;
}

.hero-right { animation: fadeUp 0.8s 0.2s ease both; }
.hero-checklist-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl); padding: 2.25rem; backdrop-filter: blur(10px);
}
.hero-checklist-card h3 {
  font-size: var(--fs-h4); font-weight: 600; color: #fff;
  margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.check-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: var(--fs-body); color: rgba(255,255,255,0.82); line-height: 1.65;
}
.check-list li::before {
  content: '✓'; color: #7ec8a0; font-weight: 700;
  min-width: 22px; height: 22px; border-radius: 50%;
  background: rgba(58,125,90,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; margin-top: 2px; flex-shrink: 0;
}

/* ── TRUST BAR ──────────────────────────────────────────────────── */
#trust {
  background: var(--off-white); padding: 1.4rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: var(--fs-body-sm); font-weight: 600; color: var(--text-muted); white-space: nowrap;
}
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.trust-divider { width: 1px; height: 18px; background: var(--border); }

/* ── SHARED ─────────────────────────────────────────────────────── */
section { padding: var(--section-py) 2.5rem; }
.s-inner { max-width: var(--container); margin: 0 auto; }

.eyebrow {
  display: inline-block; font-size: var(--fs-eyebrow); font-weight: 700;
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--green); margin-bottom: 0.875rem;
}

.s-title {
  font-size: var(--fs-h2); font-weight: 600;
  line-height: var(--lh-h2); letter-spacing: var(--ls-h2);
  color: var(--dark); margin-bottom: 1rem;
}
.s-title em { font-style: normal; color: var(--green); }
.s-title.light { color: #fff; }

.s-sub {
  font-size: var(--fs-body-lg); line-height: var(--lh-body);
  color: var(--text-muted); max-width: 62ch; margin-bottom: 3rem;
}
.s-sub.light { color: var(--text-hero-muted); }

/* ── ABOUT ──────────────────────────────────────────────────────── */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 380px 1fr; gap: 5rem; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: top center;
  border-radius: var(--radius-lg); display: block;
}
.about-badge-card {
  position: absolute; bottom: -16px; left: -16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.1rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.abc-num { font-size: 2rem; font-weight: 700; color: var(--green); letter-spacing: -0.02em; line-height: 1; }
.abc-label { font-size: var(--fs-body-sm); color: var(--text-muted); margin-top: 3px; font-weight: 500; }
.about-para { font-size: var(--fs-body-lg); color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-stat {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
}
.as-num { font-size: 1.75rem; font-weight: 700; color: var(--dark); letter-spacing: -0.02em; line-height: 1; }
.as-label { font-size: var(--fs-body-sm); color: var(--text-muted); margin-top: 5px; line-height: 1.45; }

.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  padding: 0.875rem 1.75rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: var(--fs-btn); letter-spacing: var(--ls-btn);
  transition: background 0.2s, transform 0.15s; margin-top: 2rem;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ── SERVICES ───────────────────────────────────────────────────── */
#services { background: var(--off-white); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.875rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: var(--green); }
.svc-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--green-lt); display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.svc-tag { font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.svc-title { font-size: var(--fs-h5); font-weight: 600; color: var(--dark); line-height: 1.35; letter-spacing: -0.005em; }
.svc-desc { font-size: var(--fs-body); color: var(--text-muted); line-height: 1.7; flex: 1; }
.svc-result {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: var(--fs-body-sm); color: var(--text);
  background: var(--green-lt); border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem; line-height: 1.55;
}
.svc-result::before { content: '✓'; color: var(--green); font-weight: 700; min-width: 14px; flex-shrink: 0; }
.svc-link { font-size: var(--fs-body-sm); font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 5px; }
.svc-link::after { content: '→'; }
.svc-link:hover { color: var(--green-dark); }

/* ── HOW IT WORKS ───────────────────────────────────────────────── */
#how { background: var(--dark); padding: var(--section-py) 2.5rem; }
.how-header { text-align: center; margin-bottom: 3.5rem; }
.how-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.step {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem;
  padding: 1.75rem 1.25rem; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg);
  transition: background 0.2s, border-color 0.2s;
}
.step:hover { background: rgba(58,125,90,0.09); border-color: rgba(58,125,90,0.35); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid rgba(58,125,90,0.5); background: rgba(58,125,90,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700; color: #7ec8a0; letter-spacing: -0.02em;
}
.step-icon { font-size: 1.4rem; }
.step-title { font-size: var(--fs-h5); font-weight: 600; color: #fff; line-height: 1.3; }
.step-desc { font-size: var(--fs-body); color: var(--text-hero-muted); line-height: 1.65; }
.how-cta { text-align: center; margin-top: 2.75rem; }

/* ── PLANS ──────────────────────────────────────────────────────── */
#plans { background: var(--white); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.plan-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.09); border-color: var(--green); }
.pc-header { background: var(--dark); padding: 1.5rem 1.6rem 1.3rem; position: relative; overflow: hidden; }
.pc-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--green), #7ec8a0); }
.pc-tag {
  display: inline-block; background: rgba(126,200,160,0.15); border: 1px solid rgba(126,200,160,0.3);
  color: #7ec8a0; font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 50px; margin-bottom: 0.6rem;
}
.pc-title { font-size: var(--fs-h4); font-weight: 600; color: #fff; line-height: 1.25; letter-spacing: -0.01em; }
.pc-tagline { font-size: var(--fs-body-sm); color: var(--text-hero-muted); margin-top: 4px; }
.pc-body { padding: 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.pc-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.pc-metric { background: var(--off-white); border-radius: var(--radius-sm); padding: 0.875rem; text-align: center; }
.pc-metric-val { font-size: 1.2rem; font-weight: 700; color: var(--dark); letter-spacing: -0.01em; line-height: 1; }
.pc-metric-val.accent { color: var(--green-dark); }
.pc-metric-key { font-size: var(--fs-label); color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.pc-covers { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; }
.pc-cover { border-radius: var(--radius-sm); padding: 0.75rem; text-align: center; }
.pc-cover.nat { background: #eef5f1; border: 1px solid #c4ddd0; }
.pc-cover.acc { background: #fdf0f0; border: 1px solid #e8c4c4; }
.pc-cover-val { font-size: 1rem; font-weight: 700; }
.pc-cover.nat .pc-cover-val { color: #2c6347; }
.pc-cover.acc .pc-cover-val { color: #9b1c1c; }
.pc-cover-lbl { font-size: var(--fs-label); color: var(--text-muted); margin-top: 3px; font-weight: 500; }
.pc-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pc-features li { display: flex; gap: 8px; font-size: var(--fs-body-sm); color: var(--text); line-height: 1.55; }
.pc-features li::before { content: '✓'; color: var(--green); font-weight: 700; min-width: 14px; flex-shrink: 0; }
.pc-footer {
  padding: 1.1rem 1.6rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.pc-premium-lbl { font-size: var(--fs-label); color: var(--text-muted); font-weight: 500; }
.pc-premium-val { font-size: 1.05rem; font-weight: 700; color: var(--dark); letter-spacing: -0.01em; }
.pc-btn {
  background: var(--green); color: #fff;
  padding: 0.5rem 1.1rem; border-radius: var(--radius-sm);
  font-size: var(--fs-body-sm); font-weight: 600; letter-spacing: var(--ls-btn);
  transition: background 0.2s;
}
.pc-btn:hover { background: var(--green-dark); }

/* ── TAKAFUL ────────────────────────────────────────────────────── */
#takaful { background: var(--off-white); }
.takaful-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.tak-table { width: 100%; border-collapse: collapse; margin-top: 1.25rem; }
.tak-table tr { border-bottom: 1px solid var(--border); }
.tak-table td { padding: 0.95rem 0; font-size: var(--fs-body); }
.tak-table td:first-child { color: var(--text-muted); width: 42%; font-weight: 500; }
.tak-table td:last-child { color: var(--dark); font-weight: 600; }
.tak-modes-label {
  font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin: 1.5rem 0 0.875rem;
}
.tak-modes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.tak-mode {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem; text-align: center;
}
.tm-period { font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); }
.tm-val { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-top: 4px; }
.tak-benefits { display: flex; flex-direction: column; gap: 1rem; }
.tak-benefit {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tak-benefit:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(58,125,90,0.08); }
.tb-ico { font-size: 1.35rem; min-width: 28px; }
.tb-h { font-size: var(--fs-body); font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.tb-p { font-size: var(--fs-body-sm); color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
#testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testi-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.07); }
.stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; }
.testi-text { font-size: var(--fs-body); color: var(--text); line-height: 1.75; flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.875rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #1c2b22, #2d4a38);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.65); flex-shrink: 0;
}
.testi-name { font-size: var(--fs-body); font-weight: 600; color: var(--dark); line-height: 1; }
.testi-loc { font-size: var(--fs-body-sm); color: var(--text-muted); margin-top: 3px; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT QAISER — BALANCED SINGLE-BLOCK LAYOUT
   Left: 280px photo + contact info pills
   Right: heading + body + 2×2 feature grid (equal height cards)
   ═══════════════════════════════════════════════════════════════ */
#about-qaiser { background: var(--off-white); }

.aq-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Left column */
.aq-left { display: flex; flex-direction: column; gap: 1rem; }

.aq-photo-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top center;
  border-radius: var(--radius-lg); display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.aq-info-cards { display: flex; flex-direction: column; gap: 0.6rem; }
.aq-info {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.875rem 1rem;
  display: flex; align-items: center; gap: 10px; transition: border-color 0.2s;
}
.aq-info:hover { border-color: var(--green); }
.aq-info-icon { font-size: 0.95rem; width: 22px; text-align: center; flex-shrink: 0; }
.aq-info-text { font-size: var(--fs-body-sm); color: var(--text); font-weight: 500; }
.aq-info-text a { color: var(--text); }
.aq-info-text a:hover { color: var(--green); }

/* Right column */
.aq-right { display: flex; flex-direction: column; }

.aq-para {
  font-size: var(--fs-body-lg); color: var(--text-muted);
  line-height: 1.75; margin-bottom: 1.25rem; max-width: 62ch;
}

/* 2×2 feature grid — all 4 cards same height, perfectly aligned */
.aq-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch;
}

.aq-feat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.aq-feat:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(58,125,90,0.08);
}
.af-icon { font-size: 1.3rem; margin-bottom: 0.25rem; }
.af-title {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.005em;
}
.af-desc {
  font-size: var(--fs-body-sm);
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

/* ── CONTACT ────────────────────────────────────────────────────── */
#contact { background: var(--dark); padding: var(--section-py) 2.5rem; }
.cta-inner { max-width: var(--container); margin: 0 auto; }
.cta-header { text-align: center; margin-bottom: 3rem; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }

.cta-form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl); padding: 2.25rem;
}
.cta-form-title {
  font-size: var(--fs-h4); font-weight: 600; color: #fff;
  margin-bottom: 1.75rem; letter-spacing: -0.01em;
}
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.fg label {
  font-size: var(--fs-label); font-weight: 600;
  color: rgba(255,255,255,0.55); letter-spacing: 0.04em; text-transform: uppercase;
}
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-sm); padding: 0.875rem 1rem;
  color: #fff; font-size: var(--fs-body); font-family: inherit; outline: none;
  transition: border-color 0.2s; width: 100%;
  -webkit-font-smoothing: antialiased;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--green); }
.fg select option { background: #1a1a18; }
.fg textarea { resize: none; height: 90px; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-submit-btn {
  width: 100%; background: var(--green); color: #fff; border: none;
  padding: 0.95rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: var(--fs-btn); letter-spacing: var(--ls-btn);
  cursor: pointer; font-family: inherit; transition: background 0.2s, transform 0.15s;
}
.form-submit-btn:hover { background: var(--green-dark); transform: translateY(-1px); }

.wa-alt {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 1rem; padding: 0.8rem;
  border: 1.5px solid rgba(58,125,90,0.5); border-radius: var(--radius-sm);
  color: #7ec8a0; font-size: var(--fs-body); font-weight: 600; letter-spacing: var(--ls-btn);
  transition: background 0.2s, border-color 0.2s;
}
.wa-alt:hover { background: rgba(58,125,90,0.1); border-color: var(--green); }

.form-success-msg {
  background: rgba(58,125,90,0.2); border: 1px solid rgba(58,125,90,0.5);
  color: #7ec8a0; padding: 1.1rem 1.5rem; border-radius: var(--radius);
  text-align: center; margin-bottom: 2rem; font-size: var(--fs-body); font-weight: 600;
}

.cta-contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.cci-title {
  font-size: var(--fs-h3); font-weight: 600; color: #fff;
  line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 0.5rem;
}
.cci-sub { font-size: var(--fs-body); color: var(--text-hero-muted); line-height: 1.7; }

.contact-card {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius); padding: 1.25rem;
  transition: background 0.2s, border-color 0.2s;
}
.contact-card:hover { background: rgba(58,125,90,0.1); border-color: rgba(58,125,90,0.4); }
.cc-ico {
  width: 46px; height: 46px; min-width: 46px; border-radius: var(--radius-sm);
  background: var(--green); display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.cc-lbl { font-size: var(--fs-label); color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.cc-val { color: #fff; font-weight: 600; font-size: var(--fs-body); margin-top: 3px; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
footer { background: #0a0a09; padding: 3.5rem 2.5rem 1.75rem; }
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.75rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { margin-bottom: 0.875rem; }
.footer-brand span { color: #7ec8a0; }
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  /* On dark background: make green parts brighter, darks white */
  filter: brightness(0) invert(1);
  opacity: 0.88;
}
.footer-desc { font-size: var(--fs-body-sm); color: rgba(255,255,255,0.42); line-height: 1.75; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.625rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: rgba(255,255,255,0.4); transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: var(--green); color: #7ec8a0; }
.footer-col-title {
  font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { font-size: var(--fs-body-sm); color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-links a:hover { color: #7ec8a0; }
.footer-bottom {
  padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center;
  font-size: var(--fs-label); color: rgba(255,255,255,0.22); flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.32); }

/* ── SCROLL REVEAL ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --fs-h1: 2.5rem; --fs-h2: 2rem; --section-py: 4.5rem; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid, .plans-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .aq-grid { grid-template-columns: 240px 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root {
    --fs-h1: 2.25rem; --fs-h2: 1.75rem; --fs-h3: 1.375rem;
    --fs-body-lg: 1rem; --section-py: 3.5rem;
  }
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 70px; left: 0; right: 0; background: #fff;
    padding: 1.5rem 1.25rem; gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .nav-links.open a { font-size: 1rem; }
  section { padding: var(--section-py) 1.25rem; }
  #home { padding: 90px 1.25rem 4rem; }
  #how, #contact { padding: var(--section-py) 1.25rem; }
  .hero-inner, .about-grid, .aq-grid, .takaful-grid, .cta-grid { grid-template-columns: 1fr; }
  .svc-grid, .plans-grid, .testi-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.75rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row2 { grid-template-columns: 1fr; }
  .hero-btn-primary, .hero-btn-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  :root { --fs-h1: 2rem; }
  .how-steps { grid-template-columns: 1fr; }
  .about-stats, .aq-features { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
