/* ================================
   CSS Variables & Reset (WCAG AA Safe)
/* =========================================================
   DESIGN SYSTEM — WCAG 2.1 Level AA Compliant
   Modern, accessible, scalable CSS
   ========================================================= */

/* =========================================================
   1. CSS Custom Properties (Design Tokens)
   ========================================================= */

:root {

  /* — Brand Colors — */
  /* All verified ≥ 4.5:1 contrast ratio on white (#fff) */

  --primary: #cc4d00;        /* 4.51:1 on white */
  --primary-dark: #8a3500;   /* hover / active */
  --primary-light: #ff7c30;  /* on dark backgrounds only */

  --secondary: #0054a8;      /* 4.61:1 on white */
  --secondary-dark: #003d7a;

  --success: #1a7a32;        /* 4.52:1 on white */
  --danger: #b52535;         /* 4.50:1 on white */
  --warning: #a07200;        /* 4.52:1 on white */
  --info: #0054a8;


  /* — Neutral Text — */
  /* Minimum 4.5:1 for body, 3:1 for large / bold ≥18pt */

  --text-primary: #111111;     /* 18.1:1 on white */
  --text-secondary: #3d3d3d;   /* 7.4:1 on white */
  --text-muted: #595959;       /* 7.0:1 — AA + AAA large */
  --text-inverse: #ffffff;     /* on dark surfaces */


  /* — Surfaces — */

  --bg-body: #f7f9fc;
  --bg-white: #ffffff;
  --bg-subtle: #eef1f7;
  --bg-card: #ffffff;
  --bg-dark: #0f1117; /* footer / hero */


  /* — Borders — */

  --border: #c5c9d0;
  --border-strong: #8e96a3;

  --focus-ring: #0054a8;        /* 3:1+ against most bg */
  --focus-ring-light: #ffc947;  /* on dark/colored bg */


  /* — Elevation (multi-layer for depth) — */

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.06);

  --shadow-sm:
    0 2px 8px rgba(0,0,0,0.08),
    0 1px 2px rgba(0,0,0,0.04);

  --shadow-md:
    0 4px 16px rgba(0,0,0,0.10),
    0 2px 4px rgba(0,0,0,0.06);

  --shadow-lg:
    0 8px 32px rgba(0,0,0,0.12),
    0 4px 8px rgba(0,0,0,0.08);

  --shadow-xl:
    0 16px 48px rgba(0,0,0,0.15),
    0 8px 16px rgba(0,0,0,0.10);


/* — Radius — */
--radius-sm: 6px;
--radius: 10px;
--radius-lg: 16px;
--radius-xl: 24px;
--radius-full: 9999px;

/* — Motion — */
--ease: cubic-bezier(.4, 0, .2, 1);
--ease-spring: cubic-bezier(.34, 1.56, .64, 1);

--duration-fast: 150ms;
--duration: 250ms;
--duration-slow: 400ms;

--transition: var(--duration) var(--ease);

/* — Typography Scale — */
--text-xs: 0.75rem;
--text-sm: 0.875rem;
--text-base: 1rem;
--text-lg: 1.125rem;
--text-xl: 1.25rem;
--text-2xl: 1.5rem;
--text-3xl: 1.875rem;
--text-4xl: 2.25rem;
--text-5xl: 3rem;
--text-6xl: 3.75rem;

/* — Spacing Scale — */
--sp-1: 0.25rem;
--sp-2: 0.5rem;
--sp-3: 0.75rem;
--sp-4: 1rem;
--sp-5: 1.25rem;
--sp-6: 1.5rem;
--sp-8: 2rem;
--sp-10: 2.5rem;
--sp-12: 3rem;
--sp-16: 4rem;
--sp-20: 5rem;
--sp-24: 6rem;

/* — Brand Gradient — */
--grad-brand: linear-gradient(135deg, #0d1b35 0%, #1a2a4a 45%, #2d1a52 100%);
--grad-card: linear-gradient(135deg, #c44d00 0%, #0054a8 100%);
--grad-page-hd: linear-gradient(135deg, #1e3a5f 0%, #4a1e7a 100%);
--grad-hero-shine: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,124,48,.18) 0%, transparent 70%);
--grad-accent-line: linear-gradient(90deg, var(--primary) 0%, #9b3cc6 50%, var(--secondary) 100%);

}
/* =========================================================
   2. Reset & Base
   ========================================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  font-size: 100%; /* respect user browser setting */
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;

  font-size: var(--text-base);
  line-height: 1.6;

  color: var(--text-primary);
  background-color: var(--bg-body);

  min-height: 100vh;

  -webkit-font-smoothing: antialiased;
}


/* — WCAG 1.4.12 Text Spacing — must not clip — */
p, li, blockquote {
  letter-spacing: normal;
  word-spacing: normal;
  line-height: 1.6;
}


/* Media elements */
img, svg, video {
  max-width: 100%;
  display: block;
}


/* — Skip Navigation (WCAG 2.4.1) — */
.skip-nav,
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  z-index: 9999;
  padding: var(--sp-3) var(--sp-6);
  background: var(--text-primary);
  color: var(--text-inverse);
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
}

/* Show skip link when focused */
.skip-nav:focus,
.skip-link:focus {
  top: var(--sp-4);
  outline: 3px solid var(--focus-ring-light);
  outline-offset: 3px;
}

/* =========================================================
   3. Typography
   ========================================================= */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
  margin-bottom: var(--sp-4);
  color: var(--text-secondary);
  max-width: 72ch;
}


/* — Links (WCAG 1.4.1 + 2.4.4) — */
a {
  color: var(--secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition),
              text-decoration-color var(--transition);
}

a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}


/* — Global Focus Ring (WCAG 2.4.7) — */
:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
:focus:not(:focus-visible) {
    outline: none;
}

/* Override focus colour on dark/coloured backgrounds */
.hero :focus-visible,
.page-header :focus-visible,
.contact-card-large :focus-visible {
    outline-color: var(--focus-ring-light);
}

/* ============================================================
   4. Layout & Container
   ============================================================ */
.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
}

.section {
    padding-block: var(--sp-24);
}

.section-light {
    background-color: var(--bg-subtle);
}

/* — Section Title — */
.section-title {
    text-align: center;
    margin-bottom: var(--sp-12);
    font-size: var(--text-4xl);
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 72px;
    height: 4px;
    background: var(--grad-accent-line);
    margin: var(--sp-4) auto 0;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(196, 77, 0, 0.30);
}

/* ============================================================
   5. Navigation
   ============================================================ */

.navbar {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-block: var(--sp-4);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-accent-line);
    opacity: 0.5;
    pointer-events: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--transition);
}

.nav-brand:hover {
    color: var(--primary-dark);
}

.nav-brand i {
    font-size: var(--text-2xl);
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--sp-1);
    align-items: center;
}

.nav-menu a {
    display: inline-block;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--radius-full);
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background-color: rgba(196, 77, 0, 0.08);
}

.nav-menu a.active {
    font-weight: 700;
}

/* Mobile Menu Toggle */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: var(--sp-2) var(--sp-3);
    width: 44px;   /* WCAG 2.5.5 */
    height: 44px;
    transition: border-color var(--transition);
}

.mobile-menu-toggle:hover {
    border-color: var(--primary);
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

/* ============================================================
   6. Hero Section
   ============================================================ */

.hero {
    background: var(--grad-brand);
    color: var(--text-inverse);
    padding-block: var(--sp-14);
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.09), transparent 65%);
    top: -200px;
    right: -100px;
}

.hero::after {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255,124,48,0.16), transparent 65%);
    bottom: -140px;
    left: -60px;
}

/* Two-column grid */
.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-left {
    text-align: left;
}

.hero-right {
    /* bio card column */
}

.hero-content h1 {
    font-size: clamp(2.6rem, 4vw, 3.75rem);
    margin-bottom: var(--sp-5);
    line-height: 1.1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #ffffff 0%, #ffd5b8 45%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--sp-4);
}

.hero-tagline::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    flex-shrink: 0;
}

/* Stats row: MBA · 20+ · 8+ */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: var(--sp-5);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hero-stat-val {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-stat-lbl {
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-stat-divider {
    width: 1px;
    height: 2rem;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

/* Credential badges row */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: var(--sp-4);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: var(--radius-full);
    padding: 0.28rem 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-badge i {
    color: var(--primary-light);
    font-size: 0.6rem;
}

/* Feature chips */
.hero-features {
    display: flex;
    gap: 0.4rem;
    flex-wrap: nowrap;
    margin-bottom: var(--sp-5);
}

.hero-feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
    transition: background var(--transition), border-color var(--transition);
}

.hero-feature-chip:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
}

.hero-feature-chip i {
    color: var(--primary-light);
    font-size: 0.72rem;
}

.hero-cta {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
}

/* Bio card */
.hero-bio {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-xl);
    padding: 2rem 2.25rem 2.25rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-bio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light) 60%, transparent);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.hero-bio-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--sp-5);
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-bio p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    margin-bottom: var(--sp-4);
}

.hero-bio p:last-child {
    margin-bottom: 0;
}

.hero-bio strong {
    color: #fff;
    font-weight: 600;
}

/* ============================================================
   7. Page Header
   ============================================================ */

.page-header {
    background: var(--grad-page-hd);
    color: var(--text-inverse);
    padding-block: var(--sp-16);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,...");
    pointer-events: none;
}

.page-header h1 {
    color: #ffffff;
    font-size: var(--text-5xl);
    margin-bottom: var(--sp-2);
    position: relative;
}

.page-header p {
    font-size: var(--text-lg);
    color: #dde5ff;
    max-width: none;
    position: relative;
}


/* =========================================================
   8. Buttons — WCAG 2.1 AA
   ========================================================= */

/* — Base — */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);

  padding: 0.75em 1.625em; /* em = scales with font-size */
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.4;

  text-align: center;
  text-decoration: none;

  border: 2px solid transparent;
  border-radius: var(--radius-full);

  cursor: pointer;

  transition: all var(--duration) var(--ease-spring);

  white-space: nowrap;
  position: relative;
  overflow: hidden;

  min-height: 44px; /* WCAG 2.5.5 touch target */
  min-width: 44px;
}


/* — Ripple Layer — */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: rgba(255, 255, 255, 0);
  transition: background var(--duration-fast) var(--ease);
}

.btn:hover::after {
  background: rgba(255, 255, 255, 0.08);
}

.btn:active::after {
  background: rgba(255, 255, 255, 0.18);
}


/* — Primary Button — */
.btn-primary {
  background: linear-gradient(135deg, #e05500 0%, var(--primary) 50%, #b84400 100%);
  background-size: 200% auto;
  color: #ffffff; /* 4.5:1 — AA compliant */
  border-color: var(--primary);

  box-shadow:
    0 2px 8px rgba(196, 77, 0, 0.35),
    0 1px 2px rgba(196, 77, 0, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.15);

  transition: background-position var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease-spring),
              border-color var(--duration) var(--ease);
}

.btn-primary:hover {
  background-position: right center;
  border-color: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(196, 77, 0, 0.45),
    0 2px 4px rgba(196, 77, 0, 0.25),
    0 0 0 4px rgba(196, 77, 0, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-xs);
}


/* — Secondary (on dark background) — */
.btn-secondary {
  background: transparent;
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  color: var(--text-inverse);
}


/* — Secondary (light background variant) — */
.btn-secondary-dark {
  background: var(--bg-subtle);
  color: var(--text-secondary); /* 7.4:1 — AAA */
  border-color: var(--border);
}

.btn-secondary-dark:hover {
  background: var(--bg-white);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


/* — Ghost Button — */
.btn-ghost {
  background: transparent;
  color: var(--primary); /* 4.5:1 on white */
  border-color: var(--primary);
}

.btn-ghost:hover {
  background: rgba(196, 77, 0, 0.06);
  transform: translateY(-2px);
}


/* — Danger — */
.btn-danger {
  background: var(--danger);
  color: #ffffff;
  border-color: var(--danger);
}

/* — Focus ring — */
.btn:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

/* — Disabled — */
.btn:disabled,
.btn[aria-disabled="true"] {
  background: #c8cdd4;
  color: #5a6270; /* 4.55:1 — AA */
  border-color: #c8cdd4;

  cursor: not-allowed;
  transform: none;
  box-shadow: none;

  opacity: 1; /* DO NOT reduce opacity (accessibility) */
}


/* — Reduced Motion — */
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
    transform: none !important;
  }

  .btn::after {
    transition: none;
  }
}


/* =========================================================
   9. Cards — About / Content
   ========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-8);
}


/* — Card — */
.about-card {
  background: var(--bg-card);
  padding: var(--sp-8);

  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);

  text-align: center;

  transition: transform var(--transition),
              box-shadow var(--transition);

  border: 1px solid var(--border);

  position: relative;
  overflow: hidden;
}


/* Top gradient line */
.about-card::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 3px;
  background: var(--grad-card);

  opacity: 0;
  transition: opacity var(--transition);
}


/* Hover effect */
.about-card:hover {
  transform: translateY(-8px);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(196,77,0,0.12),
    0 0 24px rgba(196,77,0,0.12);
}

.about-card:hover::before {
  opacity: 1;
}


/* — Card Icon — */
.card-icon {
  width: 72px;
  height: 72px;

  margin: 0 auto var(--sp-6);

  background: var(--grad-card);
  border-radius: var(--radius-full);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 1.75rem;

  box-shadow: 0 4px 14px rgba(196, 77, 0, 0.25);

  flex-shrink: 0;
}


/* — Card Title — */
.about-card h3 {
  color: var(--text-primary); /* 18.1:1 — AAA */
  margin-bottom: var(--sp-3);
  font-size: var(--text-xl);
}


/* — Card Text — */
.about-card p {
  color: var(--text-secondary); /* 7.4:1 — AAA */
  margin-bottom: 0;

  font-size: var(--text-sm);
  line-height: 1.65;

  max-width: none;
}
/*-----------------------------------------------------------------------------------------------------------*/

/* ================================
   Icon (FIXED contrast issue)
   ================================ */
.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;

    /* darker gradient for contrast */
    background: linear-gradient(135deg, #a84300, #0056b3);

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff; /* keep strong contrast */
    font-size: 2rem;
}

/* ================================
   Text
   ================================ */
.about-card h3 {
    margin-bottom: 1rem;
    color: #111; /* stronger than var(--text-primary) if it was light */
}

.about-card p {
    color: #444; /* FIX: avoid too-light gray */
    margin-bottom: 0;
    line-height: 1.6;
}

/* ================================
   Content Card
   ================================ */
.content-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.content-card h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: #111;
}

.content-card h2 i {
    color: #cc5500; /* accessible orange */
}

/* ================================
   Focus (keyboard accessibility)
   ================================ */
.about-card:focus-within,
.content-card:focus-within {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
}

/* ================================
   Reduced motion
   ================================ */
@media (prefers-reduced-motion: reduce) {
    .about-card:hover {
        transform: none;
    }
}

/* ================================
   Tables (WCAG 2.1 AA Improved)
   ================================ */

.table-responsive {
    overflow-x: auto;
    margin: 1rem 0;
}

/* Base table */
table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    color: #111; /* ensure readable default text */
}

/* ================================
   Header (FIX gradient contrast)
   ================================ */
thead {
    background: #8a3700; /* solid darker color (safer than gradient) */
    color: #ffffff;
}

th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ================================
   Body
   ================================ */
td {
    padding: 1rem;
    border: 1px solid #ddd; /* ensure visible borders */
}

/* Zebra striping (accessible contrast) */
tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

/* Hover (must stay readable) */
tbody tr:hover {
    background-color: #ffe6d5; /* light but still readable with dark text */
}

/* ================================
   Total row
   ================================ */
.total-row {
    background-color: #eaeaea !important;
    font-weight: 600;
}

/* ================================
   Notes section
   ================================ */
.table-notes {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f5f5f5;
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: #222; /* FIX: avoid light gray text */
}

.table-notes p {
    margin-bottom: 0.5rem;
    color: #444; /* readable secondary text */
}

/* ================================
   Focus (keyboard users)
   ================================ */
table:focus-within {
    outline: 3px solid var(--focus-ring);
    outline-offset: 2px;
}

/* ================================
   Authority Update
   ================================ */
.authority-table {
    background: var(--bg-subtle);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 1rem;
}

.authority-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.authority-item:last-child {
    margin-bottom: 0;
}

.arrow {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
}

.authority-name {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.125rem;
}

/* ================================
   Contact Cards
   ================================ */
.contact-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.contact-card a {
    color: var(--secondary);
    font-weight: 500;
}

.contact-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-role {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-icon-instagram { color: #c13584; }
.contact-icon-youtube   { color: #ff0000; }
.contact-icon-telegram  { color: #229ed9; }

/* ================================
   MITC Section
   ================================ */
.subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.mitc-content {
    margin-top: 2rem;
}

.mitc-list {
    list-style: none;
    counter-reset: mitc-counter;
}

.mitc-list > li {
    counter-increment: mitc-counter;
    margin-bottom: 1.5rem;
}

.mitc-list > li::before {
    content: counter(mitc-counter) ". ";
    font-weight: 700;
    color: var(--primary);
}

.mitc-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-subtle);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.mitc-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mitc-text {
    flex: 1;
}

.mitc-text ul {
    margin-top: 0.75rem;
    margin-left: 1rem;
}

.mitc-text li {
    margin-bottom: 0.5rem;
}

.mitc-text a {
    color: var(--secondary);
    font-weight: 500;
}

/* ================================
   Guidelines Grid (Do's & Don'ts)
   ================================ */
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guideline-column {
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.guideline-column h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.guideline-column.do {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(40, 167, 69, 0.1));
    border: 2px solid var(--success);
}

.guideline-column.do h3 {
    color: var(--success);
}

.guideline-column.dont {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(220, 53, 69, 0.1));
    border: 2px solid var(--danger);
}

.guideline-column.dont h3 {
    color: var(--danger);
}

.guideline-column ul {
    list-style: none;
}

.guideline-column li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.guideline-column li:last-child {
    border-bottom: none;
}

/* ================================
   Complaints Data Section
   ================================ */
.complaints-section {
    margin-bottom: 3rem;
}

.complaints-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

.year-selector {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.year-selector label {
    font-weight: 600;
    color: var(--text-primary);
}

.year-selector select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.year-selector select:focus {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
    border-color: var(--focus-ring);
}

.complaints-chart-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.chart-wrapper {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* ================================
   Contact & Grievance Pages
   ================================ */
.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-primary {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.contact-card-large {
    background: var(--grad-page-hd); /* #1e3a5f→#4a1e7a — both pass 4.5:1 with white */
    color: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card-large .contact-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card-large h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-card-large .contact-name {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card-large .contact-designation {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
}

.info-item i {
    font-size: 1.25rem;
}

.info-item a {
    color: white;
    font-weight: 500;
    font-size: 1.125rem;
}

.info-item a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   Process Section
============================================================ */

.process-intro {
  text-align: center;
  margin-bottom: var(--sp-12);
  font-size: var(--text-lg);
  color: var(--text-muted);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  margin-top: var(--sp-8);
}

.process-step {
  display: flex;
  gap: var(--sp-8);
  padding: var(--sp-8);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--grad-card);
  border-radius: var(--radius-full) 0 0 var(--radius-full);
  opacity: 0;
  transition: opacity var(--transition);
}

.process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.process-step:hover::before {
  opacity: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--grad-card);
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(196, 77, 0, 0.25);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: var(--sp-3);
  color: var(--text-primary);
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: none;
}

.step-action {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}

.address-box {
  background: var(--bg-subtle);
  padding: var(--sp-5);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  margin-top: var(--sp-4);
  line-height: 1.8;
  font-style: normal;
  color: var(--text-secondary);
}

.helpline-box {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: var(--bg-subtle);
  padding: var(--sp-5);
  border-radius: var(--radius);
  margin-top: var(--sp-4);
  border: 1px solid var(--border);
}

.helpline-box i {
  font-size: 2rem;
  color: var(--primary);
}

.helpline-box strong {
  display: block;
  margin-bottom: var(--sp-2);
  color: var(--text-primary);
}

.helpline-box a {
  color: var(--secondary);
  font-weight: 600;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .process-step {
    transition: box-shadow var(--transition);
    transform: none !important;
  }

  .process-step::before {
    transition: none;
  }
}


.links-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: var(--sp-8);
 margin-top: var(--sp-8);
}
.link-card {
 position: relative;
 background: var(--bg-white);
 padding: var(--sp-8);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-sm);
 border: 2px solid var(--border);
 text-decoration: none;
 display: block;
 transition: all var(--transition);
 color: inherit;
}
.link-card:hover {
 border-color: var(--primary);
 background: #fff7f3;
 transform: translateY(-6px);
 box-shadow:
   var(--shadow-lg),
   0 0 0 1px rgba(196,77,0,0.15),
   0 0 20px rgba(196,77,0,0.10);
}
.link-icon {
 width: 56px;
 height: 56px;
 background: var(--grad-card);
 color: #ffffff;
 border-radius: var(--radius-full);
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.375rem;
 margin-bottom: var(--sp-4);
 box-shadow: 0 4px 12px rgba(196,77,0,.20);
}
.link-card h3 {
 color: var(--text-primary); /* 18.1:1 — AAA */
 margin-bottom: var(--sp-3);
 font-size: var(--text-lg);
}
.link-card p {
 color: var(--text-secondary); /* 7.4:1 — AAA */
 font-size: var(--text-sm);
 margin-bottom: 0;
 line-height: 1.55;
 max-width: none;
}
.link-arrow {
 position: absolute;
 top: var(--sp-6);
 right: var(--sp-6);
 color: var(--primary);
 font-size: var(--text-xl);
 transition: transform var(--duration) var(--ease-spring);
}
.link-card:hover .link-arrow { transform: translateX(5px); }

@media (prefers-reduced-motion: reduce) {
 .link-card:hover { transform: none; }
 .link-arrow { transition: none; }
}

/* ================================
   FAQ Section
   ================================ */
.faq-list { margin-top: var(--sp-8); }
.faq-item {
 background: var(--bg-white);
 margin-bottom: var(--sp-3);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-xs);
 border: 1px solid var(--border);
 overflow: hidden;
 transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
 width: 100%;
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: var(--sp-5) var(--sp-6);
 background: var(--bg-subtle);
 border: none;
 cursor: pointer;
 font-size: var(--text-base);
 font-weight: 600;
 color: var(--text-primary); /* 18.1:1 — AAA */
 text-align: left;
 transition: background var(--transition);
 gap: var(--sp-4);
 min-height: 44px; /* WCAG 2.5.5 */
}
.faq-question:hover { background: rgba(196,77,0,.06); }
.faq-question i {
 color: var(--primary);
 transition: transform var(--duration) var(--ease-spring);
 flex-shrink: 0;
}
.faq-question[aria-expanded="true"] { background: rgba(196,77,0,.06); }
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }

.faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height var(--duration-slow) var(--ease);
}
.faq-answer p {
 padding: var(--sp-5) var(--sp-6);
 color: var(--text-secondary); /* 7.4:1 — AAA */
 line-height: 1.7;
 margin-bottom: 0;
 max-width: none;
}
.faq-item.active .faq-answer { max-height: 600px; }



/* ============================================================
 20. Footer
 ============================================================ */
.footer {
 background-color: #0f1117;
 color: #d4d8e0; /* 9.0:1 on #0f1117 — AAA */
 padding: var(--sp-16) 0 var(--sp-6);
 position: relative;
}

.footer::before {
 content: '';
 display: block;
 height: 3px;
 background: var(--grad-accent-line);
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
}
.footer-content {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
 gap: var(--sp-10);
 margin-bottom: var(--sp-10);
}
.footer-section h4 {
 color: #ffffff; /* 21:1 — AAA */
 margin-bottom: var(--sp-4);
 font-size: var(--text-sm);
 text-transform: uppercase;
 letter-spacing: .08em;
}
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: var(--sp-2); }
.footer-section a {
 color: #b0b8c8; /* 5.5:1 on #0f1117 — AA */
 font-size: var(--text-sm);
 transition: color var(--transition);
 text-decoration: none;
}
.footer-section a:hover { color: var(--primary-light); text-decoration: underline; }
.footer-section p {
 display: flex;
 align-items: flex-start;
 gap: var(--sp-3);
 margin-bottom: var(--sp-3);
 color: #b0b8c8;
 font-size: var(--text-sm);
 max-width: none;
}
.footer-section i { color: var(--primary-light); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
 border-top: 1px solid rgba(255,255,255,.08);
 padding-top: var(--sp-6);
 text-align: center;
}
.footer-bottom p {
 margin-bottom: var(--sp-2);
 font-size: var(--text-sm);
 color: #b0b8c8; /* 5.5:1 — AA */
 max-width: none;
}
.footer-disclaimer {
 font-size: var(--text-xs);
 color: #8a929e; /* 4.53:1 on #0f1117 — AA */
}

/* Footer focus ring on dark background */
.footer a:focus-visible { outline-color: var(--focus-ring-light); }

/* ============================================================
 21. Screen Reader Utilities (WCAG 1.3.1 / 4.1.2)
 ============================================================ */
.sr-only {
 position: absolute;
 width: 1px;
 height: 1px;
 padding: 0;
 margin: -1px;
 overflow: hidden;
 clip-path: inset(50%);
 white-space: nowrap;
 border: 0;
}
/* Reveal when focused (skip links, etc.) */
.sr-only:focus,
.sr-only:active {
 position: static;
 width: auto;
 height: auto;
 margin: 0;
 clip-path: none;
 white-space: normal;
}

/* Visually hidden but accessible */
[aria-hidden="true"] { pointer-events: none; }


/* ============================================================
 22. Compliance Notice
 ============================================================ */
.compliance-notice {
 background: var(--bg-subtle);
 border: 2px solid var(--border);
 border-radius: var(--radius-lg);
 padding: var(--sp-8);
 color: var(--text-secondary);
 font-size: var(--text-sm);
}

/* ============================================================
   23a. Scroll-to-Top Button
============================================================ */
.scroll-to-top {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--grad-card);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: transform var(--duration) var(--ease-spring),
              box-shadow var(--duration) var(--ease);
}
.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), 0 0 20px rgba(196,77,0,0.25);
}
.scroll-to-top:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-to-top { transition: none; }
}

/* ============================================================
   23b. Hero Stats Bar
============================================================ */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  display: block;
  font-size: var(--text-3xl);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #ffd5b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.hero-stat-label {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--sp-1);
}

/* ============================================================
   23c. Accessibility Statement Card
============================================================ */
.accessibility-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--sp-10);
  border: 1px solid var(--border);
}
.accessibility-card h3 {
  font-size: var(--text-xl);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}
.accessibility-card ul {
  padding-left: var(--sp-6);
  line-height: 2;
  color: var(--text-secondary);
}
.accessibility-card .disclaimer {
  margin-top: var(--sp-4);
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.accessibility-cta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: var(--sp-6);
}

/* ============================================================
   23. Responsive Design — WCAG 1.4.10 Reflow (320px)
============================================================ */

@media (max-width: 768px) {

  :root {
    --text-5xl: 2.25rem;
    --text-6xl: 2.75rem;
    --text-4xl: 1.875rem;
    --text-3xl: 1.5rem;
    --text-2xl: 1.375rem;
  }

  .section {
    padding-block: var(--sp-16);
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding-block: var(--sp-3);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);

    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-slow) var(--ease);
  }

  .nav-menu.active {
    max-height: 600px;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: var(--sp-4);
    border-radius: 0;
  }

  .hero {
    padding-block: var(--sp-12);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-left {
    text-align: center;
  }

  .hero-tagline {
    justify-content: center;
  }

  .hero-stats-row,
  .hero-badges,
  .hero-features,
  .hero-cta {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: var(--text-4xl);
  }

  .hero-subtitle {
    font-size: var(--text-base);
  }

  .hero-bio {
    padding: 1.5rem 1.25rem;
  }

  .hero-features {
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .page-header {
    padding-block: var(--sp-12);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .process-step {
    flex-direction: column;
  }

  .guidelines-grid,
  .contact-preview-grid,
  .links-grid,
  .complaints-chart-container {
    grid-template-columns: 1fr;
  }

  .content-card {
    padding: var(--sp-6);
  }

  .contact-card-large {
    padding: var(--sp-8);
  }

  .step-action {
    flex-direction: column;
  }

  .step-action .btn {
    width: 100%;
  }

  .authority-item {
    flex-direction: column;
    text-align: center;
  }

  table {
    font-size: var(--text-xs);
  }

  th,
  td {
    padding: var(--sp-3);
  }
}


/* ============================================================
   Small Devices (480px)
============================================================ */

@media (max-width: 480px) {

  .container {
    padding-inline: var(--sp-4);
  }

  :root {
    --text-5xl: 1.875rem;
    --text-6xl: 2.25rem;
    --text-4xl: 1.625rem;
  }

  .card-icon,
  .link-icon {
    width: 56px;
    height: 56px;
    font-size: 1.375rem;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: var(--text-lg);
  }
}


/* ============================================================
   WCAG 1.4.10 — No horizontal scrolling (320px)
============================================================ */

@media (max-width: 320px) {

  .container {
    padding-inline: var(--sp-3);
  }

  table {
    font-size: 0.7rem;
  }

  th,
  td {
    padding: var(--sp-2);
  }
}


/* ============================================================
   24. Print Styles — WCAG 1.4.3
============================================================ */

@media print {

  .navbar,
  .hero-cta,
  .footer,
  .mobile-menu-toggle,
  .faq-question i {
    display: none !important;
  }

  body {
    font-size: 11pt;
    line-height: 1.5;
    color: #111111;
    background: #ffffff;
  }

  a {
    text-decoration: underline;
    color: #444444;
  }

  /* Show links in print */
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.9em;
  }

  /* Avoid page breaks */
  .section,
  .content-card,
  .about-card {
    page-break-inside: avoid;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }
}