/* ============================================================
   BLOCKADE DEFENCE SERVICE — V9
   Default: SOVEREIGN LIGHT (#FFFFFF)
   Toggle: FORTRESS DARK (Footer-Sync Navy #001029)
   WCAG AAA Contrast — Every text element audited
   ============================================================ */

/* ——— CSS Custom Properties — SOVEREIGN LIGHT (Default) ——— */
:root {
  /* Core Palette */
  --navy: #002147;
  --navy-light: #0a3260;
  --navy-dark: #001029;
  --saffron: #FF9933;
  --saffron-dark: #e6871f;
  --green: #16a34a;

  /* Light Surfaces */
  --bg-white: #FFFFFF;
  --bg-body: #FFFFFF;
  --bg-section: #FFFFFF;
  --bg-section-alt: #F8F9FA;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F5F6F8;
  --bg-hero: linear-gradient(135deg, #000a1a 0%, #001029 50%, #001535 100%);

  /* Text — AAA Contrast on #FFFFFF
     #002147 on #FFFFFF = 15.4:1 ✓ AAA
     #333333 on #FFFFFF = 12.6:1 ✓ AAA
     #555555 on #F8F9FA = 7.5:1  ✓ AAA */
  --text-heading: #002147;
  --text-body: #333333;
  --text-secondary: #555555;
  --text-muted: #777777;
  --text-on-dark: #FFFFFF;
  --text-on-saffron: #002147;

  /* Borders */
  --border: #E2E4E8;
  --border-hover: #CBD0D5;
  --border-saffron: rgba(255, 153, 51, 0.35);

  /* Opacity helpers */
  --navy-10: rgba(0, 33, 71, 0.05);
  --navy-20: rgba(0, 33, 71, 0.08);
  --saffron-10: rgba(255, 153, 51, 0.06);
  --saffron-20: rgba(255, 153, 51, 0.12);
  --saffron-light: #FFF7ED;
  --green-light: #DCFCE7;

  /* Glass / Cards */
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(0, 33, 71, 0.06);
  --glass-shadow: 0 4px 24px rgba(0, 33, 71, 0.05);
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.03);
  --card-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.04);

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container-max: 1200px;
  --navbar-height: 72px;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Motion */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   FORTRESS DARK MODE — Toggle Variant
   Footer-Sync Navy #001029
   ============================================================ */
[data-theme="dark"] {
  --bg-white: #001029;
  --bg-body: #001029;
  --bg-section: #001535;
  --bg-section-alt: #001230;
  --bg-card: #001a3d;
  --bg-card-hover: #002050;

  --text-heading: #FFFFFF;
  --text-body: #E8ECF0;
  --text-secondary: #B0BEC5;
  --text-muted: #7E8C98;
  --text-on-saffron: #001029;

  --border: #E2E4E8;
  --border-hover: #CBD0D5;
  --border-saffron: rgba(255, 153, 51, 0.35);

  --navy-10: rgba(0, 33, 71, 0.05);
  --navy-20: rgba(0, 33, 71, 0.08);
  --saffron-10: rgba(255, 153, 51, 0.06);
  --saffron-20: rgba(255, 153, 51, 0.12);
  --saffron-light: #FFF7ED;
  --green-light: #DCFCE7;

  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(0, 33, 71, 0.06);
  --glass-shadow: 0 4px 24px rgba(0, 33, 71, 0.05);
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.03);
  --card-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.04);
}

/* ——— Light mode component overrides ——— */
/* Navbar is always #001029 in both modes */

/* ——— Dark mode component overrides ——— */
[data-theme="dark"] .glass-card {
  background: rgba(0,21,53,0.8); border-color: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
}

[data-theme="dark"] .feature-item,
[data-theme="dark"] .why-card,
[data-theme="dark"] .highlight-chip { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.08); }

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); color: #E8ECF0;
}
[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder { color: #555; }

[data-theme="dark"] code { background: rgba(255,153,51,0.1); color: var(--saffron); }

[data-theme="dark"] .clients-strip { background: var(--bg-section); border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .clients-strip__logos img { filter: grayscale(100%) brightness(2); opacity: 0.5; }
[data-theme="dark"] .clients-strip__logos img:hover { filter: grayscale(0%) brightness(1.2); opacity: 0.9; }

[data-theme="dark"] .service-card__glow { display: block; }

[data-theme="dark"] .ticker-section { background: #000a1a; }

/* ——— Eclipse Transition ——— */
body, .navbar, .glass-card, .feature-item, .why-card, .highlight-chip,
.form-group input, .form-group select, .form-group textarea,
code, .clients-strip, .clients-strip__logos img,
.footer, .navbar__link, .navbar__brand-logo {
  transition: background-color 0.6s ease, color 0.6s ease, border-color 0.6s ease,
              box-shadow 0.6s ease, filter 0.6s ease;
}

/* ============================================================
   THEME TOGGLE — Sun/Moon Switch
   Default state shows Moon (we're in dark), toggled shows Sun
   ============================================================ */
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: none; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06); cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  margin-left: 8px; flex-shrink: 0; position: relative;
}
.theme-toggle:hover { background: rgba(255, 153, 51, 0.12); transform: scale(1.08); }
.theme-toggle svg { width: 20px; height: 20px; stroke: #E0E0E0; transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s; }
.theme-toggle__sun, .theme-toggle__moon { position: absolute; }
/* Light default: show sun, hide moon */
.theme-toggle__sun { opacity: 1; transform: rotate(0deg) scale(1); }
.theme-toggle__moon { opacity: 0; transform: rotate(-90deg) scale(0.5); }

/* Navbar is always dark — toggle always uses light icons */
[data-theme="dark"] .theme-toggle { background: rgba(255,255,255,0.08); }
[data-theme="dark"] .theme-toggle:hover { background: rgba(255,153,51,0.15); }
[data-theme="dark"] .theme-toggle svg { stroke: #E0E0E0; }
[data-theme="dark"] .theme-toggle__sun { opacity: 0; transform: rotate(90deg) scale(0.5); }
[data-theme="dark"] .theme-toggle__moon { opacity: 1; transform: rotate(0deg) scale(1); }

/* Navbar transparent (home hero) — always transparent over hero */
/* Home hero navbar — transparent over video, same in both modes */
.navbar--transparent,
[data-theme="dark"] .navbar--transparent { background: transparent !important; border-bottom-color: transparent !important; }
.navbar--transparent.scrolled,
[data-theme="dark"] .navbar--transparent.scrolled { background: rgba(0,16,41,0.95) !important; backdrop-filter: blur(15px) saturate(1.2); -webkit-backdrop-filter: blur(15px) saturate(1.2); border-bottom-color: rgba(255,255,255,0.06) !important; }

/* ============================================================
   CLIENT LOGO CAROUSEL
   ============================================================ */
@keyframes carouselScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.clients-strip__track {
  display: flex; align-items: center; gap: 64px;
  animation: carouselScroll 30s linear infinite;
  width: max-content;
}
.clients-strip__track:hover { animation-play-state: paused; }
.clients-strip__logos { overflow: hidden; }

/* ——— Reset & Base ——— */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--navbar-height); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--saffron-dark); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--text-heading); }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 2px;
}

ul { list-style: none; }
address { font-style: normal; }

code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  background: var(--navy-10);
  color: var(--text-heading);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9em;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ——— Utility Classes ——— */
.text-gradient {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-saffron { color: var(--saffron); }

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth), border-color var(--transition-smooth);
}

.glass-card:hover {
  box-shadow: var(--card-shadow-hover);
}

/* ——— Animations ——— */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes scrollDown { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }
@keyframes glow { 0%, 100% { box-shadow: 0 4px 20px rgba(255,153,51,0.3); } 50% { box-shadow: 0 4px 30px rgba(255,153,51,0.45); } }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes fadeIn { to { opacity: 1; } }

.animate-fade-up { opacity: 0; animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: var(--delay, 0s); }
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVBAR — Solid dark default, glassmorphism only on home hero
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--navbar-height);
  background: #001029;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

/* Navbar is always #001029 in both modes — matches hero and footer */

/* On hero (home page), navbar starts transparent over dark hero */
/* navbar--transparent handled via !important rules above the reset */

.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.navbar__brand { text-decoration: none; color: var(--text-heading); }

/* Logo — navbar is always dark, always show white logo */
.navbar__brand-logo-dark,
.navbar__brand-logo-light { height: 44px; width: auto; }
.navbar__brand-logo-light { display: none; }
.navbar__brand-logo-dark { display: block; }

/* Footer Logo — always white version on dark footer */
.footer__brand-logo {
  height: 40px; width: auto; margin-bottom: 12px;
}

/* Footer Badges */
.footer__badges {
  display: flex; gap: 16px; margin-top: 16px; align-items: center; flex-wrap: wrap;
}
.footer__badges img {
  height: 40px; width: auto; border-radius: 4px;
  opacity: 0.75; filter: brightness(0) invert(1);
  transition: opacity var(--transition-fast), filter var(--transition-fast);
}
.footer__badges img:hover { opacity: 1; }

/* Nav links */
.navbar__logo { display: flex; align-items: center; gap: 12px; }
.navbar__menu { display: flex; gap: 4px; }
.navbar__link {
  color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}
.navbar__link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.navbar__link.active { color: #fff; font-weight: 600; }
/* Saffron underline — active & hover with slide-in animation */
.navbar__link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%) scaleX(0);
  width: 20px; height: 2px; background: var(--saffron); border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar__link:hover::after { transform: translateX(-50%) scaleX(1); }
.navbar__link.active::after { transform: translateX(-50%) scaleX(1); }

/* Hamburger */
.navbar__toggle { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; position: relative; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 22px; height: 2px; background: #E0E0E0; border-radius: 2px; transition: var(--transition-fast); position: absolute; left: 9px; }
.hamburger { top: 19px; } .hamburger::before { content: ''; top: -6px; } .hamburger::after { content: ''; top: 6px; }
.navbar__toggle[aria-expanded="true"] .hamburger { background: transparent; }
.navbar__toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.navbar__toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); top: 0; }

/* ============================================================
   HERO SECTION — Dark BG on light site (contrast)
   ============================================================ */
/* Hero — always dark, fits exactly in viewport */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #001029; }
.hero__video-bg { position: absolute; inset: 0; z-index: 0; }
.hero__video-bg video { width: 100%; height: 100%; object-fit: cover; }
/* Hero overlay — increased to 25% darker than before */
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,10,26,0.55) 0%, rgba(0,0,0,0.5) 50%, rgba(0,16,41,0.7) 100%); }
.hero__particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 24px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; border-radius: 100px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.9); letter-spacing: 0.05em; margin-bottom: 20px; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--saffron); animation: pulse 2s infinite; }
.hero__title { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; color: #fff; }
.hero__title .text-gradient { background: linear-gradient(135deg, var(--saffron), #ffb366); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__subtitle { font-size: clamp(0.95rem, 1.8vw, 1.15rem); color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 28px; line-height: 1.6; }
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll a { display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-indicator { width: 20px; height: 32px; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 10px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-dot { width: 3px; height: 8px; background: var(--saffron); border-radius: 2px; animation: scrollDown 1.5s infinite; }

/* ============================================================
   BUTTONS — Sovereign Light
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
  border-radius: var(--radius-xl); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--transition-smooth);
  text-decoration: none; white-space: nowrap; font-family: var(--font-sans);
}
.btn--primary { background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); color: var(--text-on-saffron); box-shadow: 0 4px 16px rgba(255,153,51,0.25); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,153,51,0.35); color: var(--text-on-saffron); }
/* Outline button — always white text/border (used on dark hero/sections) */
.btn--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn--outline:hover { border-color: var(--saffron); color: var(--saffron); background: rgba(255,153,51,0.08); }
/* Outline variant for light sections (contact form, etc.) */
.btn--outline-dark { background: transparent; color: var(--text-heading); border: 1.5px solid var(--border); }
.btn--outline-dark:hover { border-color: var(--saffron); color: var(--saffron-dark); background: var(--saffron-10); }
.btn--white { background: #fff; color: #001029; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); color: #001029; }
.btn--ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn--ghost-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: #fff; }
.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: 8px 20px; font-size: 0.85rem; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-light); color: #fff; transform: translateY(-2px); }

/* ============================================================
   STATS
   ============================================================ */
.hero__stats, .stats-strip__inner { display: flex; align-items: center; justify-content: center; gap: 40px; }
.hero__stats .stat__number { color: var(--saffron); }
.hero__stats .stat__suffix { color: var(--saffron); }
.hero__stats .stat__label { color: rgba(255,255,255,0.6); }
.stats-strip__inner { padding: 48px; }
.stat { text-align: center; }
.stat__number { font-size: 2.5rem; font-weight: 800; color: var(--saffron); line-height: 1; font-family: var(--font-serif); }
.stat__suffix { font-size: 1.5rem; font-weight: 700; color: var(--saffron); }
.stat__label { display: block; font-size: 0.8rem; color: var(--text-secondary); margin-top: 4px; letter-spacing: 0.03em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero__stats .stat-divider { background: rgba(255,255,255,0.15); }

/* ============================================================
   PAGE HERO (inner pages) — Navy bg
   ============================================================ */
/* Page Hero — Deep Navy-to-Charcoal gradient with saffron accent glow */
.page-hero { position: relative; padding: 140px 0 60px; overflow: hidden; background: linear-gradient(135deg, #000a1a 0%, #001029 40%, #0a1e3d 70%, #132b4a 100%); color: #fff; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 30%, rgba(255,153,51,0.06), transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(10,50,96,0.3), transparent 50%); }
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.page-hero__subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 600px; }

/* Breadcrumb */
.breadcrumb { margin-bottom: 24px; }
.breadcrumb ol { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); }
.breadcrumb li + li::before { content: '/'; color: rgba(255,255,255,0.3); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--saffron); }

/* ============================================================
   SECTIONS — Clean, Light
   ============================================================ */
.section { padding: 100px 0; position: relative; }
.section--alt { background: var(--bg-section-alt); }
.section__header { text-align: center; margin-bottom: 64px; }
.section__tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--saffron-dark); margin-bottom: 16px;
  padding: 6px 16px; border: 1px solid var(--border-saffron);
  border-radius: 100px; background: var(--saffron-10);
}
.section__title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--text-heading); line-height: 1.2; margin-bottom: 16px;
}
.section__desc { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-section); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__image-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about__image-frame .image-placeholder { border-radius: var(--radius-lg); overflow: hidden; }
.about__image-accent { position: absolute; bottom: -12px; right: -12px; width: 100px; height: 100px; border: 2px solid var(--saffron); border-radius: var(--radius-lg); opacity: 0.25; }
.about__lead { font-size: 1.15rem; line-height: 1.8; color: var(--text-heading); margin-bottom: 16px; }
.about__text p { color: var(--text-body); margin-bottom: 16px; }
.about__features { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px; border-radius: var(--radius-md); background: var(--bg-section-alt); border: 1px solid var(--border); transition: border-color var(--transition-fast); }
.feature-item:hover { border-color: var(--border-saffron); }
.feature-icon { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: var(--saffron-10); }
.feature-icon svg { width: 20px; height: 20px; stroke: var(--saffron-dark); }
.feature-item strong { display: block; color: var(--text-heading); font-size: 0.95rem; margin-bottom: 2px; }
.feature-item span { font-size: 0.85rem; color: var(--text-secondary); }

/* About Teaser (home) */
.about-teaser { background: var(--bg-section); }
.about-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-teaser__text { font-size: 1.05rem; color: var(--text-body); line-height: 1.8; margin: 24px 0; }
.about-teaser__highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.highlight-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 100px; border: 1px solid var(--border); background: var(--bg-section-alt); font-size: 0.85rem; color: var(--text-body); }
.highlight-chip svg { width: 16px; height: 16px; stroke: var(--saffron-dark); flex-shrink: 0; }
.about-teaser__image-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-overview { background: var(--bg-section-alt); overflow: hidden; }
.services__bg-pattern { position: absolute; inset: 0; background: radial-gradient(circle at 20% 80%, rgba(255,153,51,0.03), transparent 40%); pointer-events: none; }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { position: relative; padding: 36px 28px; overflow: hidden; transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth); cursor: default; border-bottom: 2px solid var(--saffron); }
.service-card--link { cursor: pointer; text-decoration: none; color: inherit; display: block; }
.service-card:hover, .service-card:focus-within { transform: translateY(-4px); border-color: var(--border-saffron); box-shadow: var(--card-shadow-hover); }
.service-card__icon { width: 56px; height: 56px; margin-bottom: 20px; }
.service-card__title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--text-heading); margin-bottom: 10px; }
.service-card__desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.service-card__arrow { display: inline-block; font-size: 1.3rem; color: var(--saffron); transition: transform var(--transition-fast); }
.service-card:hover .service-card__arrow { transform: translateX(6px); }
.service-card__glow {
  display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; opacity: 0; transition: opacity var(--transition-smooth);
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,153,51,0.08), transparent 60%);
}
.service-card:hover .service-card__glow { opacity: 1; }

/* Service Nav (services page) */
.service-nav-bar { position: sticky; top: var(--navbar-height); z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
[data-theme="dark"] .service-nav-bar { background: rgba(0,16,41,0.95); }
.service-nav { display: flex; gap: 4px; padding: 12px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.service-nav__link { padding: 8px 20px; border-radius: 100px; font-size: 0.85rem; font-weight: 500; color: var(--text-secondary); white-space: nowrap; transition: all var(--transition-fast); text-decoration: none; }
.service-nav__link:hover { color: var(--text-heading); background: var(--navy-10); }
.service-nav__link.active { color: var(--saffron-dark); background: var(--saffron-10); border: 1px solid var(--border-saffron); font-weight: 600; }

/* Service Detail (services page) */
.service-detail { background: var(--bg-section); }
.service-detail--alt { background: var(--bg-section-alt); }
.service-detail__grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; align-items: start; }
.service-detail__icon { width: 56px; height: 56px; margin-bottom: 20px; }
.service-detail__lead { font-size: 1.05rem; color: var(--text-body); line-height: 1.8; margin-bottom: 28px; }
.service-detail__features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
.sd-feature { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-body); }
.sd-feature svg { width: 18px; height: 18px; stroke: var(--green); flex-shrink: 0; }
.sd-badge { padding: 24px; }
.sd-badge strong { display: block; color: var(--text-heading); font-size: 0.95rem; margin-bottom: 14px; }
.sd-badge ul { display: flex; flex-direction: column; gap: 8px; }
.sd-badge li { font-size: 0.9rem; color: var(--text-body); padding-left: 16px; position: relative; }
.sd-badge li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--saffron); }
.sd-compliance-strip { display: flex; gap: 8px; margin-top: 16px; }

/* ============================================================
   TRUST STRIP (home)
   ============================================================ */
.trust-strip { background: var(--bg-section-alt); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-badge { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 28px 20px; gap: 12px; text-decoration: none; color: inherit; }
.trust-badge:hover { transform: translateY(-3px); border-color: var(--border-saffron); color: inherit; }
.trust-badge svg { width: 40px; height: 40px; }
.trust-badge img { width: 120px; height: 90px; object-fit: contain; }
.trust-badge strong { color: var(--text-heading); font-size: 0.9rem; }
.trust-badge code { font-size: 0.72rem; }
.trust-badge__status { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.trust-strip__cta { text-align: center; margin-top: 32px; }

/* Client Logos Strip */
.clients-strip { padding: 48px 0; background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.clients-strip__title { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); text-align: center; margin-bottom: 32px; }
.clients-strip__logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.clients-strip__logos img { height: 60px; width: auto; opacity: 0.6; filter: grayscale(100%) brightness(2); transition: opacity var(--transition-fast), filter var(--transition-fast); }
.clients-strip__logos img:hover { opacity: 1; filter: grayscale(0%) brightness(1); }

/* ============================================================
   COMPLIANCE
   ============================================================ */
.compliance { background: var(--bg-section); }
.compliance-detail__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.compliance-detail-card { padding: 32px; }
.compliance-detail-card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.compliance-card__icon { flex-shrink: 0; }
.compliance-card__icon img { height: 80px; width: auto; object-fit: contain; }
.compliance-detail-card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--text-heading); margin-bottom: 16px; }
.compliance-detail-card__info { margin-bottom: 16px; }
.info-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; gap: 16px; }
.info-label { color: var(--text-muted); font-weight: 500; white-space: nowrap; }
.info-row span:last-child, .info-row code { color: var(--text-heading); text-align: right; }
.compliance-detail-card__desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

.status-badge { display: inline-block; padding: 4px 14px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; }
.status-badge--active { background: var(--green-light); color: var(--green); border: 1px solid rgba(22,163,74,0.2); }

/* Ticker */
.ticker-section { padding: 0; background: var(--navy); }
.ticker { overflow: hidden; padding: 14px 0; }
.ticker__track { display: flex; gap: 48px; animation: tickerScroll 30s linear infinite; width: max-content; }
.ticker__item { display: flex; align-items: center; gap: 12px; white-space: nowrap; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.ticker__label { font-weight: 700; color: var(--saffron); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.75rem; }
.ticker__item code { background: rgba(255,255,255,0.1); color: #fff; }
.ticker__status { color: #4ade80; font-weight: 600; font-size: 0.8rem; }
.ticker:hover .ticker__track { animation-play-state: paused; }

/* Process Steps */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; }
.process-step__number { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; margin: 0 auto 16px; }
.process-step__content { padding: 24px 20px; }
.process-step__content h3 { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.process-step__content p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
.gem-process { background: var(--bg-section-alt); }

/* Document Cards */
.docs-section { background: var(--bg-section); }
.docs__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.doc-card { padding: 28px 20px; text-align: center; }
.doc-card__icon { width: 40px; height: 40px; margin: 0 auto 16px; }
.doc-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.doc-card p { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 12px; }
.doc-card__action { font-size: 0.8rem; color: var(--saffron-dark); font-weight: 600; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--bg-section-alt); }
.why-us__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { padding: 32px 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: border-color var(--transition-smooth), transform var(--transition-smooth), box-shadow var(--transition-smooth); position: relative; overflow: hidden; }
.why-card:hover { border-color: var(--border-saffron); transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.why-card__number { font-family: var(--font-serif); font-size: 3rem; font-weight: 900; color: rgba(255,153,51,0.15); position: absolute; top: 12px; right: 20px; line-height: 1; }
.why-card h3 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--text-heading); margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-section); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { padding: 32px; }
.testimonial-card__stars { color: var(--saffron); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote p { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--saffron-10); border: 1px solid var(--border-saffron); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--saffron-dark); font-size: 0.8rem; flex-shrink: 0; }
.testimonial-card__author strong { display: block; color: var(--text-heading); font-size: 0.9rem; }
.testimonial-card__author span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   CTA BANNER — Saffron
   ============================================================ */
/* CTA Banner — Solid Saffron with Dark Navy text for maximum pop */
.cta-banner { padding: 80px 0; background: var(--saffron); }
.cta-banner__inner { text-align: center; }
.cta-banner__title { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: #001029; margin-bottom: 16px; }
.cta-banner__desc { font-size: 1.05rem; color: rgba(0,16,41,0.7); margin-bottom: 32px; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn--navy { background: #001029; color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.cta-banner .btn--navy:hover { background: #002147; transform: translateY(-2px); }

/* CTA Banner V2 — Image-backed */
.cta-banner-v2 { position: relative; padding: 100px 0; overflow: hidden; }
.cta-banner-v2__bg { position: absolute; inset: 0; }
.cta-banner-v2__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-v2__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,16,41,0.88) 0%, rgba(0,10,26,0.75) 50%, rgba(0,16,41,0.9) 100%); }
.cta-banner-v2__content { position: relative; z-index: 1; max-width: 650px; }
.cta-banner-v2__content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.cta-banner-v2__content p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.7; }
.cta-banner-v2__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section { background: var(--bg-section-alt); }
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline__item { position: relative; margin-bottom: 40px; }
.timeline__item:last-child { margin-bottom: 0; }
.timeline__year { position: absolute; left: -56px; top: 20px; width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; z-index: 1; }
.timeline__item::before { content: ''; position: absolute; left: -25px; top: 28px; width: 8px; height: 8px; border-radius: 50%; background: var(--saffron); border: 2px solid var(--bg-section-alt); z-index: 2; }
.timeline__content { padding: 24px 28px; margin-left: 20px; }
.timeline__content h3 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.timeline__content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leadership { background: var(--bg-section); }
.leader-card { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 48px; max-width: 900px; margin: 0 auto; }
.leader-card__photo { display: flex; justify-content: center; align-items: flex-start; }
.leader-card__avatar { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; border: 3px solid var(--border); }
.leader-card__info h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 800; color: var(--text-heading); margin-bottom: 4px; }
.leader-card__title { display: block; font-size: 0.9rem; color: var(--saffron-dark); font-weight: 600; margin-bottom: 20px; }
.leader-card__info p { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 12px; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.case-studies { background: var(--bg-section-alt); }
.cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card { padding: 32px; }
.case-card__type { display: inline-block; font-size: 0.72rem; font-weight: 600; color: var(--saffron-dark); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; padding: 4px 12px; border: 1px solid var(--border-saffron); border-radius: 100px; background: var(--saffron-10); }
.case-card h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--text-heading); margin-bottom: 12px; }
.case-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.case-card__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.case-stat { text-align: center; }
.case-stat strong { display: block; font-size: 1.1rem; color: var(--saffron); font-family: var(--font-serif); }
.case-stat span { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-section); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-detail__icon { flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: var(--saffron-10); border: 1px solid var(--border-saffron); }
.contact-detail__icon svg { width: 20px; height: 20px; stroke: var(--saffron-dark); }
.contact-detail h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.contact-detail address, .contact-detail p { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; }
.contact-detail a { color: var(--saffron-dark); font-size: 0.9rem; }
.map-container { border-radius: var(--radius-md); overflow: hidden; margin-top: 8px; border: 1px solid var(--border); }

/* Working Hours */
.working-hours { padding: 24px; }
.working-hours h3 { font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: 16px; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.hours-row span { color: var(--text-secondary); }
.hours-row strong { color: var(--text-heading); }
.hours-row--highlight strong { color: var(--saffron-dark); }

/* Contact Form */
.contact-form { padding: 36px; }
.contact-form__title { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--text-heading); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-heading); margin-bottom: 6px; }
.required { color: var(--saffron-dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--bg-body); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text-heading);
  font-family: var(--font-sans); font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px var(--saffron-10); outline: none; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { margin-top: 8px; font-size: 1rem; padding: 16px 32px; }

/* ============================================================
   GeM CATALOG
   ============================================================ */
.gem-catalog { background: var(--bg-section-alt); }
.gem-search { margin-bottom: 40px; }
.gem-search__input-wrap { position: relative; margin-bottom: 16px; }
.gem-search__input-wrap svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; stroke: var(--text-muted); pointer-events: none; }
.gem-search__input-wrap input { width: 100%; padding: 14px 16px 14px 48px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--text-heading); font-size: 1rem; font-family: var(--font-sans); }
.gem-search__input-wrap input:focus { border-color: var(--saffron); outline: none; box-shadow: 0 0 0 3px var(--saffron-10); }
.gem-search__filters { display: flex; gap: 8px; flex-wrap: wrap; }
.gem-filter { padding: 6px 16px; border-radius: 100px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-secondary); font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all var(--transition-fast); font-family: var(--font-sans); }
.gem-filter:hover, .gem-filter.active { color: var(--saffron-dark); border-color: var(--border-saffron); background: var(--saffron-10); }
.gem-catalog__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.gem-item { padding: 28px; }
.gem-item:hover { transform: translateY(-2px); border-color: var(--border-saffron); }
.gem-item.hidden { display: none; }
.gem-item__cat { font-size: 0.7rem; font-weight: 600; color: var(--saffron-dark); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.gem-item h3 { font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.gem-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.gem-item__footer { display: flex; align-items: center; }
.gem-no-results { text-align: center; padding: 40px; color: var(--text-muted); }
.gem-clear-search { background: none; border: none; color: var(--saffron-dark); cursor: pointer; font-weight: 600; font-family: var(--font-sans); }

/* ============================================================
   CAREERS
   ============================================================ */
.careers { background: var(--bg-section-alt); }
.career-tabs__nav { display: flex; gap: 8px; margin-bottom: 32px; justify-content: center; }
.career-tab { padding: 10px 28px; border-radius: 100px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-secondary); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all var(--transition-fast); font-family: var(--font-sans); }
.career-tab:hover, .career-tab.active { color: var(--saffron-dark); border-color: var(--border-saffron); background: var(--saffron-10); }
.career-panel[hidden] { display: none; }
.job-list { display: grid; gap: 20px; max-width: 800px; margin: 0 auto; }
.job-card { padding: 28px 32px; }
.job-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.job-card__header h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--text-heading); }
.job-card__type { font-size: 0.72rem; font-weight: 600; color: var(--saffron-dark); padding: 4px 12px; border: 1px solid var(--border-saffron); border-radius: 100px; background: var(--saffron-10); }
.job-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.job-card__details { display: flex; gap: 24px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; }
.apply-form { padding: 36px; max-width: 700px; margin: 0 auto; }
.apply-form h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.apply-form__desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 24px; }

/* ============================================================
   FOOTER — Navy dark
   ============================================================ */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }
/* Footer logo handled by .footer__brand-logo filter */
.footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__social a:hover { color: var(--saffron); }
.footer__social svg { width: 20px; height: 20px; }
.footer__cert-logos { margin-top: 20px; }
.footer__cert-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
.footer__cert-logos img { height: 50px; width: auto; opacity: 0.9; transition: opacity 0.2s; }
.footer__cert-logos img:hover { opacity: 1; }
.footer__cert-logos .cert-bg { background: #fff; border-radius: 6px; padding: 4px 8px; }
.footer__links h4, .footer__contact h4 { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer__links a:hover { color: var(--saffron); }
.footer__contact address { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.footer__phone, .footer__email { margin-top: 12px; font-size: 0.9rem; line-height: 1.6; }
.footer__phone a, .footer__email a { color: rgba(255,255,255,0.7); }
.footer__phone a:hover, .footer__email a:hover { color: var(--saffron); }
.footer__gstin { margin-top: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer__gstin code { background: rgba(255,255,255,0.08); color: var(--saffron); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer__gigw { font-size: 0.75rem; }
.footer__gigw a { color: rgba(255,255,255,0.5); }
.footer__gigw a:hover { color: var(--saffron); }

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.fab-call {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px; padding: 14px 24px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #001029; border-radius: 100px; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 4px 24px rgba(255,153,51,0.35);
  transition: all var(--transition-smooth); text-decoration: none;
  animation: glow 3s infinite;
}
.fab-call:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 32px rgba(255,153,51,0.45); color: #001029; }
.fab-call svg { width: 20px; height: 20px; stroke: #001029; }

/* WhatsApp Floating Button */
.fab-whatsapp {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.fab-whatsapp:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.fab-whatsapp svg { width: 28px; height: 28px; }

/* Back to Top */
.back-to-top {
  position: fixed; bottom: 92px; right: 28px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: #001029; border: 2px solid var(--saffron);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--saffron); }
.back-to-top:hover svg { stroke: #001029; }
.back-to-top svg { width: 22px; height: 22px; stroke: var(--saffron); stroke-width: 2.5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cases__grid, .testimonials__grid { grid-template-columns: 1fr; }
  .process-steps, .docs__grid { grid-template-columns: repeat(2, 1fr); }
  .leader-card { grid-template-columns: 1fr; text-align: center; }
  .leader-card__photo { justify-content: center; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --navbar-height: 60px; }

  /* Logo smaller on mobile */
  .navbar__brand-logo-dark, .navbar__brand-logo-light { height: 34px; }

  /* Group toggle + hamburger on right */
  .navbar__inner { gap: 8px; }
  .theme-toggle { width: 36px; height: 36px; margin-left: auto; }
  .theme-toggle svg { width: 18px; height: 18px; }

  .navbar__toggle { display: block; width: 36px; height: 36px; }
  .hamburger { top: 17px; }

  /* Mobile nav panel */
  .navbar__nav {
    position: fixed; top: var(--navbar-height); left: 0; right: 0; bottom: 0;
    background: #001029;
    padding: 32px 24px; transform: translateX(100%); opacity: 1;
    pointer-events: none; transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 2px solid var(--saffron);
    overflow-y: auto;
  }
  .navbar__nav.open { transform: translateX(0); pointer-events: auto; }

  /* Nav links — full width, bigger touch targets */
  .navbar__menu { flex-direction: column; gap: 0; }
  .navbar__link {
    padding: 16px 20px; font-size: 1.1rem; font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0; display: block;
  }
  .navbar__link:hover, .navbar__link.active {
    background: rgba(255,153,51,0.06);
  }
  .navbar__link.active { border-left: 3px solid var(--saffron); padding-left: 17px; }
  .navbar__link::after { display: none; } /* hide saffron underline on mobile */
  .about__grid, .about-teaser__grid { grid-template-columns: 1fr; gap: 40px; }
  .services__grid { grid-template-columns: 1fr; }
  .compliance-detail__grid { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .hero { height: auto; min-height: 100vh; }
  .hero__content { padding: 100px 16px 80px; }
  .hero__stats { gap: 20px; }
  .hero__stats .stat__number { font-size: 1.8rem; }
  .hero__stats .stat__label { font-size: 0.7rem; }
  .stats-strip__inner { flex-direction: column; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .hero__stats .stat-divider { width: 1px; height: 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .fab-call__label { display: none; }
  .fab-call { padding: 16px; border-radius: 50%; }
  .fab-whatsapp { width: 46px; height: 46px; bottom: 24px; left: 20px; }
  .fab-whatsapp svg { width: 24px; height: 24px; }
  .back-to-top { right: 28px; bottom: 84px; width: 42px; height: 42px; }
  .service-detail__grid { grid-template-columns: 1fr; }
  .service-detail__features { grid-template-columns: 1fr; }
  .gem-catalog__grid { grid-template-columns: 1fr; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .process-steps, .docs__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .case-card__stats { grid-template-columns: 1fr; gap: 8px; }
  .clients-strip__logos { gap: 24px; }
  .clients-strip__logos img { height: 45px; }
}

@media (max-width: 480px) {
  .hero__content { padding: 80px 16px 60px; }
  .hero__title { font-size: 1.7rem; }
  .hero__subtitle { font-size: 0.9rem; margin-bottom: 20px; }
  .hero__badge { font-size: 0.7rem; padding: 6px 14px; margin-bottom: 14px; }
  .hero__cta { gap: 10px; margin-bottom: 24px; }
  .hero__cta .btn { padding: 12px 20px; font-size: 0.85rem; }
  .hero__stats { gap: 14px; }
  .hero__stats .stat__number { font-size: 1.5rem; }
  .hero__stats .stat-divider { height: 24px; }
  .hero__scroll { bottom: 16px; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .contact-form, .apply-form { padding: 24px; }
  .page-hero { padding: 110px 0 40px; }
}

/* ============================================================
   GIGW 3.0 Accessibility
   ============================================================ */
@media (prefers-contrast: high) {
  :root {
    --text-body: #000000; --text-heading: #000000;
    --text-secondary: #333333; --border: #666666;
  }
  .glass-card { border-width: 2px; }
  .btn--primary { border: 2px solid var(--navy); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .animate-fade-up { opacity: 1; }
  .animate-on-scroll { opacity: 1; transform: none; }
  .ticker__track { animation: none !important; }
}

@media print {
  .navbar, .fab-call, .hero__video-bg, .hero__particles, .hero__scroll, .ticker-section, .service-nav-bar { display: none; }
  body { background: white; color: black; }
  .hero, .page-hero { min-height: auto; padding: 40px 0; background: #002147; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .section { padding: 40px 0; break-inside: avoid; }
}
