/* ============================================================================
   KEERTHI NETWORKS AND SECURITY SOLUTION — Design System & Core Styles
   Pure CSS3 · Custom properties · Grid/Flexbox · BEM-ish naming
   ========================================================================== */

/* ---------- Fonts are loaded via <link> (Inter + Barlow Condensed) ---------- */

/* ---------- Design tokens (3-Layer Architecture: Primitive -> Semantic -> Component) ---------- */
:root {
  /* --- Layer 1: Primitive Color Scales --- */
  --navy-950: #070e1a;  /* Deep security navy-black */
  --navy-900: #0b1f3a;  /* Primary brand signature navy */
  --navy-800: #102a4e;  /* Deep navy surface / dark card */
  --navy-700: #163663;  /* Mid-tone navy gradient stop */
  --navy-600: #1e457d;  /* Lighter navy highlight */

  --amber-500: #e89923; /* Signature gold/amber */
  --amber-400: #f5a638; /* Amber hover & specular reflex */
  --amber-600: #cc7d10; /* Deep gold text-on-light */
  --amber-50:  #fff9ee; /* Soft tinted amber background */

  --slate-50:  #f8fafc; /* Crisp ground light */
  --slate-100: #f1f5f9; /* Cool light section alt */
  --slate-200: #e2e8f0; /* Default border */
  --slate-300: #cbd5e1; /* Hover / strong border */
  --slate-400: #94a3b8; /* Subtle icon fill */
  --slate-500: #64748b; /* Muted text */
  --slate-600: #475569; /* Secondary body text (WCAG AAA) */
  --slate-700: #334155; /* Dark neutral */
  --slate-800: #1e293b; /* Deep slate */
  --slate-900: #0f172a; /* High contrast primary text */

  --wa-500: #22bf5b;    /* WhatsApp green */
  --wa-600: #18a94e;    /* WhatsApp green dark */

  /* --- Layer 2: Semantic Design Tokens --- */
  --color-primary: var(--navy-900);
  --color-primary-2: var(--navy-800);
  --color-primary-3: var(--navy-700);
  --color-navy-ink: var(--navy-950);
  --color-accent: var(--amber-500);
  --color-accent-strong: var(--amber-600);
  --color-accent-soft: var(--amber-50);
  --color-wa: var(--wa-500);
  --color-wa-dark: var(--wa-600);

  /* Surfaces */
  --surface-ground: var(--slate-50);
  --surface-card: #ffffff;
  --surface-elevated: #ffffff;
  --surface-inset: #f1f5f9;
  --surface-dark: var(--navy-950);
  --surface-dark-card: rgba(16, 42, 78, 0.72);
  --color-bg: #ffffff;
  --color-bg-alt: var(--slate-100);
  --color-surface: #ffffff;

  /* Text (WCAG AAA / AA compliant contrast) */
  --color-text: var(--slate-900);
  --color-muted: var(--slate-600);
  --color-dark-text: #f1f5f9;
  --color-dark-muted: #94a3b8;

  /* Borders */
  --color-border: var(--slate-200);
  --color-border-hover: var(--slate-300);
  --color-border-dark: rgba(255, 255, 255, 0.12);
  --border-subtle: rgba(15, 23, 42, 0.06);
  --border-default: rgba(15, 23, 42, 0.10);
  --border-accent: rgba(232, 153, 35, 0.4);

  /* Status */
  --color-success: #12805c;
  --color-success-bg: #e7f6ef;
  --color-error: #c23b3f;
  --color-error-bg: #fceeee;

  /* --- Layer 3: Component & Elevation Tokens --- */
  /* Multi-layer diffuse shadows */
  --shadow-sm: 0 1px 2px rgba(11, 31, 58, 0.04), 0 2px 6px rgba(11, 31, 58, 0.04);
  --shadow-md: 0 4px 12px -2px rgba(11, 31, 58, 0.08), 0 2px 6px rgba(11, 31, 58, 0.04);
  --shadow-lg: 0 16px 36px -10px rgba(11, 31, 58, 0.16), 0 4px 12px -2px rgba(11, 31, 58, 0.06);
  --shadow-card: 0 1px 3px rgba(11, 31, 58, 0.04), 0 6px 18px -4px rgba(11, 31, 58, 0.06);
  --shadow-card-hover: 0 6px 12px -2px rgba(11, 31, 58, 0.06), 0 22px 40px -8px rgba(11, 31, 58, 0.14);
  --shadow-accent: 0 8px 24px -4px rgba(232, 153, 35, 0.45);
  --shadow-wa: 0 8px 24px -4px rgba(34, 191, 91, 0.45);
  --shadow-elevated: 0 24px 54px -14px rgba(7, 14, 26, 0.28);
  --shadow-glow-amber: 0 0 28px -4px rgba(232, 153, 35, 0.35);

  /* Focus & Accessibility */
  --ring-focus: 0 0 0 3px rgba(232, 153, 35, 0.45);
  --ring-offset: 2px;

  /* Shape & Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Rhythm */
  --container-width: 1380px;
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4.5rem;
  --section-pad: clamp(3.75rem, 8vw, 6rem);

  /* Header */
  --topbar-h: 40px;
  --navbar-h: 76px;
  --header-h: calc(var(--topbar-h) + var(--navbar-h));

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-instant: 80ms var(--ease);
  --t-fast: 180ms var(--ease);
  --t-med: 280ms var(--ease);
  --t-slow: 550ms var(--ease);

  /* Typography */
  --font-body: 'Plus Jakarta Sans', 'Inter', 'Noto Sans Tamil', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', 'Noto Sans Tamil', system-ui, sans-serif;
}

/* Anti-FOUC for language translation */
html.i18n-pending body {
  transition: opacity 0.12s ease;
}

html.i18n-ready body {
  opacity: 1;
  visibility: visible;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html {
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

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

img {
  background: var(--color-bg-alt);
}

a {
  color: var(--color-primary-3);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--color-accent-strong);
}

ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  line-height: 1.12;
  letter-spacing: 0.2px;
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

h3 {
  font-size: 1.28rem;
  letter-spacing: 0.3px;
}

p {
  text-wrap: pretty;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}

address {
  font-style: normal;
}

svg {
  flex-shrink: 0;
}

button svg,
a svg,
.icon-box svg,
li svg,
h2 svg,
h3 svg {
  width: 1.15em;
  height: 1.15em;
}

::selection {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* Focus visibility — accessible everywhere */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.on-dark :focus-visible,
.site-footer :focus-visible,
.hero :focus-visible,
.page-hero :focus-visible,
.cta-band :focus-visible,
.notfound :focus-visible,
.process-section :focus-visible,
.why-section :focus-visible,
.promise-section :focus-visible {
  outline-color: var(--color-accent);
}

/* Skip link */
.skip-link {
  position: fixed;
  top: -100%;
  left: 12px;
  z-index: 300;
  padding: 0.7rem 1.2rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top var(--t-fast);
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 95%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: clamp(0.75rem, 2vw, 1.75rem);
}

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

.section--tight {
  padding-block: calc(var(--section-pad) * 0.55);
}

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

.section--gray {
  background: var(--color-bg-alt);
}

.section--dark,
.section--navy {
  background: linear-gradient(165deg, var(--color-primary) 0%, var(--color-primary-2) 58%, var(--color-primary) 100%);
  color: var(--color-dark-text);
  position: relative;
  overflow: hidden;
}

.section--dark h2,
.section--navy h2,
.section--dark h3,
.section--navy h3 {
  color: #fff;
}

.section--dark p,
.section--navy p {
  color: var(--color-dark-muted);
}

.section-bg-pattern {
  position: absolute;
  inset: 0 0 auto auto;
  width: 420px;
  height: 100%;
  opacity: 0.045;
  color: #fff;
  pointer-events: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem;
  overflow: hidden;
}

.section-bg-pattern .pattern-icon {
  width: 120px;
  height: 120px;
}

.center {
  text-align: center;
  margin-top: var(--space-lg);
}

.center-narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.center-narrow h2 {
  margin-block: var(--space-sm) var(--space-sm);
}

.center-narrow p {
  color: var(--color-muted);
  margin-bottom: var(--space-md);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split-copy>p {
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  align-items: center;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-head.align-center {
  margin-inline: auto;
  text-align: center;
}

.section-head.align-left {
  text-align: left;
}

.section-lead {
  color: var(--color-muted);
  font-size: 1.07rem;
  margin-top: var(--space-xs);
}

.on-dark .section-lead {
  color: var(--color-dark-muted);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.eyebrow--light {
  color: var(--color-accent);
}

.section-title {
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}

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

/* ---------- Icon box (Modern Rounded Square / Squircle) ---------- */
.icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform var(--t-med), box-shadow var(--t-med), background var(--t-med), border-color var(--t-med), color var(--t-med);
}

.icon-box svg {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  stroke-width: 2;
  transition: transform var(--t-fast);
}

.icon-box--accent {
  background: linear-gradient(145deg, #fffdfa 0%, #fef3dc 100%);
  color: var(--color-accent-strong);
  box-shadow: 0 4px 14px rgba(232, 153, 35, 0.12), inset 0 0 0 1px #f3ddb2;
}

/* Dark context accents - Radiant Amber jewel on dark glass */
.section--dark .icon-box--accent,
.section--navy .icon-box--accent,
.on-dark .icon-box--accent {
  background: linear-gradient(145deg, rgba(232, 153, 35, 0.16), rgba(232, 153, 35, 0.05));
  border: 1px solid rgba(232, 153, 35, 0.32);
  color: var(--amber-400);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.icon-box--lg {
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 16px;
}

.icon-box--lg svg {
  width: 28px;
  height: 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.55rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.96rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  will-change: transform;
  position: relative;
  cursor: pointer;
  user-select: none;
  max-width: 100%;
  text-align: center;
  overflow-wrap: break-word;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn svg,
.btn .wa-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

.btn:hover svg {
  transform: translateX(2.5px);
}

.btn:active {
  transform: scale(0.97);
}

.btn--lg {
  padding: clamp(0.75rem, 2.5vw, 0.95rem) clamp(1rem, 3.5vw, 1.85rem);
  font-size: clamp(0.88rem, 2.6vw, 1.02rem);
  border-radius: var(--radius-md);
}

.btn--sm {
  padding: 0.55rem 1.05rem;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn--primary {
  background: linear-gradient(165deg, #f7b44d 0%, var(--color-accent) 45%, #d98818 100%);
  color: var(--navy-950);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), var(--shadow-accent);
  font-weight: 700;
}

.btn--primary:hover {
  transform: translateY(-2px);
  color: var(--navy-950);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 14px 32px -6px rgba(232, 153, 35, 0.55);
}

.btn--primary:active {
  transform: scale(0.97) translateY(0);
}

.btn--wa {
  background: linear-gradient(165deg, #32d969 0%, var(--color-wa) 50%, #159c47 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), var(--shadow-wa);
  font-weight: 600;
}

.btn--wa:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 14px 32px -6px rgba(34, 191, 91, 0.55);
}

.btn--wa:active {
  transform: scale(0.97) translateY(0);
}

.btn--wa .wa-icon {
  width: 19px;
  height: 19px;
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn--outline-light:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 20px -4px rgba(0, 0, 0, 0.3);
}

.btn--ghost-dark {
  border-color: var(--slate-300);
  color: var(--color-primary);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--ghost-dark:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  border-color: var(--slate-300);
  color: var(--color-primary);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--slate-100);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-primary-3);
}

.link-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t-fast);
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

.link-arrow--light {
  color: var(--color-accent);
  margin-top: auto;
}

/* ---------- Tags / pills ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 999px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
}

.tag--accent {
  background: var(--color-accent-soft);
  border-color: #f0d9ab;
  color: var(--color-accent-strong);
}

.tag--primary {
  background: rgba(17, 42, 78, 0.06);
  border-color: rgba(17, 42, 78, 0.14);
  color: var(--color-primary-3);
}

/* ---------- Check lists ---------- */
.list-check {
  display: grid;
  gap: 0.6rem;
  margin-block: var(--space-sm);
}

.list-check li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--color-text-alt);
}

.list-check li svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  box-sizing: content-box;
  padding: 4px;
  border-radius: 6px;
  background: rgba(34, 191, 91, 0.12);
  border: 1px solid rgba(34, 191, 91, 0.25);
  color: var(--color-wa-dark);
  margin-top: 0.15em;
}

.on-dark .list-check li svg,
.section--dark .list-check li svg {
  background: rgba(34, 191, 91, 0.2);
  border-color: rgba(34, 191, 91, 0.4);
  color: #4ade80;
}

.on-dark .list-check li,
.section--dark .list-check li {
  color: var(--color-dark-text);
}

.list-dash {
  display: grid;
  gap: 0.5rem;
}

.list-dash li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--color-muted);
}

.list-dash li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-accent-strong);
  font-weight: 700;
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.card--tint {
  background: var(--color-bg-alt);
}

/* ============================================================================
   PRELOADER
   ========================================================================== */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: radial-gradient(circle at center, #102a4e 0%, #081324 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 450ms cubic-bezier(0.4, 0, 0.2, 1), visibility 450ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

html.preloader-done .site-preloader,
.site-preloader.is-loaded {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  max-width: 320px;
  text-align: center;
  padding: 1.5rem;
}

.preloader-shield {
  position: relative;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-shield::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 162, 61, 0.28) 0%, rgba(232, 162, 61, 0) 70%);
  animation: preloaderPulse 2s ease-in-out infinite alternate;
}

.preloader-shield .logo-mark {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
}

@keyframes preloaderPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.preloader-brand-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.preloader-brand-title span {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #ffffff;
}

.preloader-brand-title small {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.preloader-bar {
  width: 140px;
  height: 3.5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.preloader-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, transparent, var(--color-accent), #ffd58a, transparent);
  border-radius: 9999px;
  animation: preloaderSlide 1.3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes preloaderSlide {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(320%);
  }
}

/* ============================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 120;
  background: #fff;
  box-shadow: 0 1px 0 var(--color-border);
  transition: box-shadow var(--t-med);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px -12px rgba(11, 31, 58, 0.22);
}

.site-header.is-scrolled .navbar {
  background: rgba(255, 255, 255, 0.98);
}

@media (min-width: 1221px) {
  :not(body.nav-open) .site-header.is-scrolled .navbar {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.topbar {
  background: linear-gradient(90deg, #071322 0%, #0b1f38 50%, #071322 100%);
  color: #b9c6da;
  font-size: 0.80rem;
  height: var(--topbar-h);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 125;
}

/* Announcement bar & Header layout: strictly 95vw */
.site-header .container,
.topbar .container,
.navbar .container {
  width: 95vw;
  max-width: 95vw;
  margin-inline: auto;
  padding-inline: clamp(0.25rem, 1vw, 0.75rem);
}

.topbar-inner {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 95vw;
  max-width: 95vw;
  margin-inline: auto;
  padding-inline: clamp(0.25rem, 1vw, 0.75rem);
}

/* Announcement Bar Left: Service Coverage + Business Hours */
.topbar-left {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  min-width: 0;
}

.topbar-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: topbar-pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes topbar-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.topbar-loc {
  color: #cbd5e1;
  font-weight: 500;
}

.topbar-loc svg {
  color: var(--color-accent);
}

/* Announcement Bar Right: Phone + WhatsApp Pill + Book Site Visit CTA */
.topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #c7d2e4;
  font-size: 0.80rem;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color var(--t-fast);
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.topbar-item:hover {
  color: #fff;
}

.topbar-hours {
  color: #94a3b8;
  font-size: 0.78rem;
}

.topbar-phone span {
  font-weight: 600;
  color: #f1f5f9;
}

.topbar-phone:hover span {
  color: var(--color-accent);
}

.topbar-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.topbar-email {
  color: #c7d2e4;
}

.topbar-email span {
  font-weight: 500;
  color: #e2e8f0;
}

.topbar-email:hover span {
  color: var(--color-accent);
}

/* Config-driven Announcement Bar Social Icons */
.topbar-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #cbd5e1;
  text-decoration: none;
  transition: all var(--t-fast);
  flex-shrink: 0;
}

.topbar-social-btn svg,
.topbar-social-btn .wa-icon,
.topbar-social-btn .social-icon {
  width: 13px;
  height: 13px;
  transition: transform var(--t-fast);
}

.topbar-social-btn:hover {
  transform: translateY(-1.5px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.topbar-social-btn.social-btn--wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.45);
}

.topbar-social-btn.social-btn--fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
  box-shadow: 0 2px 10px rgba(24, 119, 242, 0.45);
}

.topbar-social-btn.social-btn--ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #dc2743;
  color: #fff;
  box-shadow: 0 2px 10px rgba(220, 39, 67, 0.45);
}

.topbar-social-btn.social-btn--yt:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #fff;
  box-shadow: 0 2px 10px rgba(255, 0, 0, 0.45);
}

.topbar-social-btn.social-btn--in:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 119, 181, 0.45);
}

.topbar-social-btn.social-btn--tw:hover {
  background: #0f1419;
  border-color: #555;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Primary Topbar Action: Book Site Visit CTA Pill */
.topbar-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, rgba(232, 162, 61, 0.22) 0%, rgba(232, 162, 61, 0.10) 100%);
  color: #ffd58a;
  border: 1px solid rgba(232, 162, 61, 0.40);
  border-radius: var(--radius-pill);
  padding: 0.20rem 0.72rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--t-fast);
}

.topbar-cta-pill:hover {
  background: var(--color-accent);
  color: #0b1f38;
  border-color: var(--color-accent);
  box-shadow: 0 2px 10px rgba(232, 162, 61, 0.35);
  transform: translateY(-1px);
}

.topbar-link-arrow {
  width: 12px;
  height: 12px;
  transition: transform var(--t-fast);
}

.topbar-cta-pill:hover .topbar-link-arrow {
  transform: translateX(2px);
}

/* Mobile Topbar Action Strip */
.topbar-mobile {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.topbar-mob-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.topbar-mob-item svg {
  width: 12px;
  height: 12px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.topbar-mob-email {
  color: #cbd5e1;
}

.topbar-mob-email svg {
  color: #cbd5e1;
}

.topbar-mob-email:hover svg {
  color: var(--color-accent);
}

.topbar-mob-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.topbar-mob-socials .topbar-social-btn {
  width: 22px;
  height: 22px;
}

.topbar-mob-socials .topbar-social-btn svg,
.topbar-mob-socials .topbar-social-btn .wa-icon,
.topbar-mob-socials .topbar-social-btn .social-icon {
  width: 11px;
  height: 11px;
}

.topbar-mob-cta {
  color: var(--color-accent-strong);
  background: rgba(232, 162, 61, 0.16);
  border: 1px solid rgba(232, 162, 61, 0.32);
  border-radius: var(--radius-pill);
  padding: 0.08rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
}

.navbar {
  background: #fff;
  position: relative;
  z-index: 10;
}

.navbar-inner {
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95vw;
  max-width: 95vw;
  margin-inline: auto;
  padding-inline: clamp(0.25rem, 1vw, 0.75rem);
}

/* Brand (Left Part of 3-Part Navbar) */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  z-index: 2;
}

.brand:hover {
  color: inherit;
}

.logo-mark {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 4px rgba(11, 31, 58, 0.25));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.36rem;
  letter-spacing: 0.2px;
  color: var(--color-primary);
  text-transform: none;
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-strong);
  white-space: nowrap;
  display: block;
  line-height: 1.1;
  margin-top: 2px;
}

/* Primary nav (Center Part of 3-Part Navbar) */
.primary-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  min-width: 0;
  height: 100%;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.1rem, 0.4vw, 0.3rem);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  height: 100%;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.52rem clamp(0.42rem, 0.55vw, 0.72rem);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  border-radius: 8px;
  position: relative;
  background: none;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.22rem;
  height: 2.5px;
  border-radius: 2px;
  background: var(--color-accent-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: var(--color-primary);
}

/* Dropdown */
.has-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dd-chevron {
  width: 14px !important;
  height: 14px !important;
  transition: transform var(--t-fast);
}

.has-dropdown.is-open .dd-chevron {
  transform: rotate(180deg);
}

@media (min-width: 1221px) {
  .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 6px);
    min-width: 360px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 18px 45px -8px rgba(11, 31, 58, 0.2), 0 4px 14px rgba(11, 31, 58, 0.06);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
    z-index: 1000;
  }

  /* Hover bridge: bridges the gap between button and dropdown menu */
  .dropdown::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 18px;
  }

  .has-dropdown.is-open .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  @media (hover: hover) {
    .has-dropdown:hover .dropdown,
    .has-dropdown:focus-within .dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .has-dropdown:hover .dd-chevron,
    .has-dropdown:focus-within .dd-chevron {
      transform: rotate(180deg);
    }
  }
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.7rem;
  border-radius: 9px;
  color: var(--color-text);
}

.dropdown a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.dropdown a>svg:first-child {
  width: 20px;
  height: 20px;
  color: var(--color-accent-strong);
  background: var(--color-accent-soft);
  padding: 5px;
  border-radius: 8px;
}

.dd-item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.dd-item-name {
  font-weight: 600;
  font-size: 0.92rem;
}

.dd-item-desc {
  font-size: 0.76rem;
  color: var(--color-muted);
}

.dropdown-footer {
  border-top: 1px solid var(--color-border);
  margin-top: 0.4rem;
  padding-top: 0.4rem;
}

.dropdown-footer a {
  justify-content: space-between;
  font-weight: 600;
  color: var(--color-accent-strong);
  font-size: 0.88rem;
}

/* Navbar right actions (Right Part of 3-Part Navbar) */
.navbar-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-left: 0;
  z-index: 2;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  color: var(--color-primary);
  background: #fff;
  transition: all var(--t-fast);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.icon-btn:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

.icon-btn--wa {
  color: var(--color-wa-dark);
  border-color: #bfe8cd;
  background: #effaf3;
}

.icon-btn--wa:hover {
  background: var(--color-wa);
  border-color: var(--color-wa);
  color: #fff;
}

.navbar-quote {
  padding: 0.55rem 1.05rem;
  font-size: 0.88rem;
  white-space: nowrap !important;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid var(--color-border);
  position: relative;
}

.hamburger-box {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 14px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.2px;
  border-radius: 2px;
  background: var(--color-primary);
  transition: transform var(--t-med), opacity var(--t-fast), top var(--t-med);
}

.hamburger-inner {
  top: 0;
}

.hamburger-inner::before {
  top: 5.8px;
}

.hamburger-inner::after {
  top: 11.6px;
}

.hamburger[aria-expanded='true'] .hamburger-inner {
  top: 5.8px;
  transform: rotate(45deg);
}

.hamburger[aria-expanded='true'] .hamburger-inner::before {
  opacity: 0;
}

.hamburger[aria-expanded='true'] .hamburger-inner::after {
  top: 5.8px;
  transform: rotate(-45deg);
}

/* Mobile drawer */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 19, 36, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
  z-index: 120;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open .site-header {
  z-index: 150;
}

/* Ensure no containing block or filter trap breaks position:fixed drawer on scroll */
html.nav-open,
body.nav-open {
  overflow: hidden !important;
  height: 100% !important;
}

body.nav-open .site-header,
body.nav-open .site-header.is-scrolled,
body.nav-open .site-header .navbar,
body.nav-open .site-header.is-scrolled .navbar,
body.nav-open .navbar-inner {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
  transform: none !important;
  perspective: none !important;
  contain: none !important;
}

/* drawer-only chrome hidden on desktop */
.primary-nav-head,
.primary-nav-footer {
  display: none;
}

.primary-nav-body {
  display: contents;
}

.primary-nav-head-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-close {
  display: none;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* nav CTA group inside drawer */
.nav-cta-group {
  display: none;
  gap: 0.6rem;
  flex-direction: column;
}

.nav-contact-mini {
  display: none;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.9rem 0.4rem 0.4rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.nav-contact-mini a,
.nav-contact-mini span {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--color-muted);
}

.nav-contact-mini svg {
  width: 15px;
  height: 15px;
  color: var(--color-accent-strong);
}

/* ============================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(232, 153, 35, 0.08) 0%, transparent 40%),
              linear-gradient(160deg, #070e1a 0%, var(--navy-900) 45%, #070e1a 100%);
  color: var(--color-dark-text);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid-lines {
  display: none !important;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-glow--1 {
  width: 520px;
  height: 520px;
  right: -100px;
  top: -120px;
  background: rgba(232, 153, 35, 0.18);
}

.hero-glow--2 {
  width: 440px;
  height: 440px;
  left: -120px;
  bottom: -60px;
  background: rgba(22, 54, 99, 0.45);
}

.hero-pattern {
  position: absolute;
  right: 2%;
  top: 8%;
  width: 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  opacity: 0.04;
  color: #fff;
}

.hero-pattern .pattern-icon {
  width: 110px;
  height: 110px;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vh, 5.8rem);
}

.hero-eyebrow {
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.hero-eyebrow span {
  color: rgba(255, 255, 255, 0.22);
}

.hero-title {
  color: #fff;
  font-size: clamp(2.5rem, 5.2vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
  font-weight: 800;
}

.hero-title .accent-text {
  background: linear-gradient(135deg, #ffe099 0%, var(--color-accent) 55%, #d98818 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-lead {
  color: var(--color-dark-muted);
  font-size: 1.12rem;
  line-height: 1.68;
  max-width: 56ch;
  margin-bottom: 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.85rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  font-size: 0.84rem;
  color: var(--color-dark-muted);
}

.hero-proof-item,
a.hero-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.88);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.hero-proof-item svg {
  width: 15px;
  height: 15px;
  color: var(--color-accent);
  flex-shrink: 0;
}

a.hero-proof-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(232, 153, 35, 0.4);
}

.hero-proof-item--muted {
  opacity: 0.75;
}

.hero-media {
  position: relative;
}

.hero-media-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.55);
  transform: rotate(0.6deg);
}

.hero-media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
}

.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
  line-height: 1.25;
  animation: chip-float 6s ease-in-out infinite;
}

.hero-chip svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent-strong);
  background: var(--color-accent-soft);
  border-radius: 9px;
  padding: 5px;
}

.hero-chip strong {
  display: block;
  color: var(--color-primary);
  font-size: 0.83rem;
}

.hero-chip em {
  font-style: normal;
  color: var(--color-muted);
  font-size: 0.74rem;
}

.hero-chip--1 {
  top: 9%;
  left: -34px;
}

.hero-chip--2 {
  bottom: 20%;
  right: -20px;
  animation-delay: 1.6s;
}

.hero-chip--3 {
  bottom: -22px;
  left: 8%;
  animation-delay: 3s;
}

@keyframes chip-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-strip {
  position: relative;
  border-top: 1px solid var(--color-border-dark);
  background: rgba(8, 19, 36, 0.35);
}

.hero-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--color-dark-muted);
}

/* ============================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  position: relative;
  background: linear-gradient(158deg, #0a1d36 0%, var(--color-primary-2) 55%, #0a1d36 100%);
  color: var(--color-dark-text);
  overflow: hidden;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.6rem, 6vh, 4rem);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  margin-bottom: 0.8rem;
}

.page-hero-lead {
  color: var(--color-dark-muted);
  font-size: 1.05rem;
  max-width: 62ch;
  margin-bottom: 1.4rem;
}

.page-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.page-hero-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
  box-shadow: 0 26px 60px -18px rgba(0, 0, 0, 0.55);
}

.page-hero-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  padding-block: 0.65rem;
  font-size: 0.83rem;
}

.breadcrumbs-list a {
  color: var(--color-muted);
  font-weight: 500;
}

.breadcrumbs-list a:hover {
  color: var(--color-accent-strong);
}

.breadcrumbs-list [aria-current] span {
  color: var(--color-primary);
  font-weight: 600;
}

.bc-sep {
  color: #b6c2d4;
  margin-left: 0.55rem;
}

/* ============================================================================
   HOME SECTIONS
   ========================================================================== */

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 5;
  padding-bottom: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  /* margin-top: calc(var(--space-lg) * -1.5); */
}

.trust-item {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 153, 35, 0.4), transparent);
  opacity: 0;
  transition: opacity var(--t-med);
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(232, 153, 35, 0.35);
}

.trust-item:hover::before {
  opacity: 1;
}

.trust-item .icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  color: var(--color-accent);
  box-shadow: 0 8px 20px rgba(11, 31, 58, 0.18), inset 0 0 0 1.5px rgba(255, 255, 255, 0.12);
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.trust-item:hover .icon-box {
  transform: scale(1.06) rotate(2deg);
  box-shadow: 0 10px 24px rgba(232, 153, 35, 0.35), inset 0 0 0 1.5px var(--color-accent);
}

.trust-item h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-navy-ink);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.trust-item p {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.58;
}

/* Solutions */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.sol-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  position: relative;
}

.sol-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity var(--t-med);
  z-index: 5;
}

.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(232, 153, 35, 0.35);
}

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

.sol-card-media {
  position: relative;
  display: block;
  overflow: visible !important;
  z-index: 2;
}

.sol-card-media-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.sol-card-media-frame::before,
.sol-card-media::before {
  display: none !important;
  content: none !important;
  animation: none !important;
}

.sol-card-media-frame img,
.sol-card-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
  transition: transform 650ms var(--ease);
}

.sol-card:hover .sol-card-media-frame img,
.sol-card:hover .sol-card-media img {
  transform: scale(1.06);
}

.sol-card-media-frame::after,
.sol-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 14, 26, 0.6) 100%);
  pointer-events: none;
}

.sol-card-icon {
  position: absolute;
  left: 1.35rem;
  bottom: -1.75rem;
  z-index: 10;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.28), inset 0 0 0 1.5px rgba(255, 255, 255, 0.14);
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.sol-card-icon svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.sol-card:hover .sol-card-icon {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 28px rgba(232, 153, 35, 0.35), inset 0 0 0 1.5px var(--color-accent);
}

.sol-card-body {
  padding: 2.5rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
  background: #fff;
}

.sol-card-body h3 {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
  font-weight: 700;
}

.sol-card-body h3 a {
  color: var(--color-primary);
  transition: color var(--t-fast);
}

.sol-card-body h3 a:hover {
  color: var(--color-accent-strong);
}

.sol-card-body>p {
  color: var(--color-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.sol-card-points {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.sol-card-points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--slate-700);
  font-weight: 500;
}

.sol-card-points svg {
  width: 16px;
  height: 16px;
  color: var(--color-wa-dark);
  background: var(--color-success-bg);
  border-radius: 50%;
  padding: 2px;
  flex-shrink: 0;
}

.sol-card-actions {
  margin-top: auto;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm) var(--space-md);
}

.why-item {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: background var(--t-med), transform var(--t-med), border-color var(--t-med);
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 153, 35, 0.4);
  transform: translateY(-4px);
}

.why-item .icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(232, 153, 35, 0.16), rgba(232, 153, 35, 0.05));
  border: 1px solid rgba(232, 153, 35, 0.32);
  color: var(--amber-400);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform var(--t-med), box-shadow var(--t-med), background var(--t-med), border-color var(--t-med), color var(--t-med);
}

.why-item:hover .icon-box {
  transform: translateY(-2px) scale(1.06);
  background: linear-gradient(145deg, rgba(232, 153, 35, 0.28), rgba(232, 153, 35, 0.1));
  border-color: var(--amber-400);
  box-shadow: 0 8px 24px rgba(232, 153, 35, 0.32), inset 0 0 0 1px var(--amber-400);
  color: #ffffff;
}

.why-item h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #fff;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--color-dark-muted);
  line-height: 1.58;
}

/* Process / steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  counter-reset: step;
  padding: 0;
  margin-block: var(--space-md);
  position: relative;
}

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.4rem;
  transition: transform var(--t-med), background var(--t-med), border-color var(--t-med);
}

.step:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 153, 35, 0.4);
}

.steps:not(.on-dark) .step {
  background: #fff;
  border-color: var(--border-default);
  box-shadow: var(--shadow-card);
}

.steps:not(.on-dark) .step:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(232, 153, 35, 0.35);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  font-variant-numeric: tabular-nums lining-nums;
}

.step-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 153, 35, 0.14);
  border: 1px solid rgba(232, 153, 35, 0.28);
  color: var(--amber-400);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform var(--t-med), background var(--t-med), border-color var(--t-med);
}

.step-icon svg {
  width: 22px;
  height: 22px;
}

.step:hover .step-icon {
  transform: scale(1.08);
  background: rgba(232, 153, 35, 0.25);
  border-color: var(--amber-400);
}

.steps:not(.on-dark) .step-icon {
  background: linear-gradient(145deg, #fffcf6, #fef3dc);
  border-color: #f3ddb2;
  color: var(--color-accent-strong);
  box-shadow: 0 4px 12px rgba(232, 153, 35, 0.1);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.step-text {
  font-size: 0.88rem;
  color: var(--color-dark-muted);
  line-height: 1.6;
}

.steps:not(.on-dark) .step-text {
  color: var(--color-muted);
}

/* Industries strip */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.industry-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  position: relative;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(232, 153, 35, 0.35);
}

.industry-card .icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, #f8fafc, #f1f5f9);
  border: 1px solid var(--border-default);
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(11, 31, 58, 0.05);
  transition: transform var(--t-med), box-shadow var(--t-med), background var(--t-med), border-color var(--t-med), color var(--t-med);
}

.industry-card:hover .icon-box {
  transform: translateY(-2px) scale(1.06);
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  border-color: var(--navy-800);
  color: var(--color-accent);
  box-shadow: 0 8px 20px rgba(11, 31, 58, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.industry-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
}

.industry-card p {
  font-size: 0.84rem;
  color: var(--color-muted);
  line-height: 1.55;
}

/* Service area */
.area-tags {
  display: grid;
  gap: 0.55rem;
}

.area-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-top: 0.4rem;
}

.area-label svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent-strong);
}

.area-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.area-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.9rem;
}

.area-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
  display: grid;
  gap: 0.8rem;
  justify-items: start;
}

.area-card-pin {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-card-pin svg {
  width: 24px;
  height: 24px;
}

.area-card h3 {
  font-size: 1.15rem;
}

.area-card address {
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* Mini projects */
.mini-project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.mini-project {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.mini-project:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mini-project-media {
  position: relative;
}

.mini-project-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.mini-project-media .tag {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  box-shadow: var(--shadow-sm);
}

.mini-project-body {
  padding: 0.95rem 1rem 1.1rem;
}

.mini-project-body h3 {
  font-size: 0.99rem;
  margin-bottom: 0.25rem;
}

.mini-project-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--color-accent-strong);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.mini-project-meta svg {
  width: 13px;
  height: 13px;
}

.mini-project-body>p:last-child {
  font-size: 0.83rem;
  color: var(--color-muted);
  line-height: 1.55;
}

/* Testimonials note */
.testimonials-note .icon-box {
  margin-inline: auto;
}

/* FAQ */
.faq-narrow {
  max-width: 800px;
  margin-inline: auto;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 3.5px solid transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t-fast), border-left-color var(--t-fast), box-shadow var(--t-fast);
}

.faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.faq-item.is-open {
  border-color: #cbd5e1;
  border-left-color: var(--color-accent);
  box-shadow: 0 10px 24px -6px rgba(11, 31, 58, 0.08);
}

.faq-q {
  margin: 0;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.05rem 1.3rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  font-family: var(--font-body);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--t-fast);
}

.faq-btn:hover {
  color: var(--color-accent-strong);
}

.faq-btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: -2px;
}

.faq-chevron {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  transition: transform var(--t-med), background var(--t-fast), color var(--t-fast);
  flex-shrink: 0;
}

.faq-chevron svg {
  width: 16px;
  height: 16px;
}

.faq-btn[aria-expanded='true'] .faq-chevron {
  transform: rotate(180deg);
  background: var(--color-accent);
  color: var(--color-navy-950);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--ease);
}

.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
}

.faq-a-inner p {
  padding: 0 1.2rem 1.15rem;
  color: var(--color-muted);
  font-size: 0.94rem;
  max-width: 68ch;
}

/* CTA band */
.cta-band {
  position: relative;
  background: linear-gradient(150deg, #0a1d36, var(--color-primary-2) 60%, #0a1d36);
  color: var(--color-dark-text);
  overflow: hidden;
  padding-block: clamp(2.8rem, 6vw, 4rem);
}

.cta-band::before {
  display: none !important;
}

.cta-band-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.cta-band p {
  color: var(--color-dark-muted);
  max-width: 54ch;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.cta-band-note {
  position: relative;
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-dark-muted);
}

/* ============================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  position: relative;
  background: var(--color-navy-ink);
  color: var(--color-dark-muted);
  overflow: hidden;
}

/* ============================================================================
   LOCATION MAP SECTION (Footer)
   ========================================================================== */
.footer-map-section {
  position: relative;
  padding-top: clamp(2.2rem, 5vw, 3.8rem);
  padding-bottom: clamp(1.2rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-map-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  background: linear-gradient(145deg, rgba(14, 34, 62, 0.95) 0%, rgba(9, 23, 44, 0.98) 100%);
  border: 1px solid rgba(232, 162, 61, 0.28);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 3vw, 2.2rem);
  box-shadow: 0 16px 40px -10px rgba(5, 14, 28, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  align-items: stretch;
}

.footer-map-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.footer-map-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  background: rgba(232, 162, 61, 0.12);
  border: 1px solid rgba(232, 162, 61, 0.28);
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.65rem;
  align-self: flex-start;
}

.footer-map-badge svg {
  width: 14px;
  height: 14px;
}

.footer-map-title {
  color: #fff;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.22;
  margin: 0;
  font-weight: 700;
}

.footer-map-lead {
  color: var(--color-dark-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.footer-map-address {
  font-style: normal;
  color: #e2e8f0;
  font-size: 0.88rem;
  line-height: 1.6;
  background: rgba(0, 0, 0, 0.22);
  border-left: 3px solid var(--color-accent);
  padding: 0.65rem 0.9rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.footer-map-address strong {
  color: #fff;
  font-size: 0.92rem;
}

.footer-map-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--color-dark-muted);
}

.footer-map-meta span,
.footer-map-meta a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-dark-muted);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}

.footer-map-meta svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.footer-map-meta a:hover {
  color: var(--color-accent);
}

.footer-map-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.4rem;
}

.footer-map-btn {
  background: linear-gradient(135deg, #f7b44d 0%, var(--color-accent) 50%, #d98818 100%);
  color: #0b1f38 !important;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-map-btn:hover {
  background: #ffd58a;
  box-shadow: 0 4px 16px rgba(232, 162, 61, 0.4);
  transform: translateY(-1.5px);
}

.footer-map-visit {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.footer-map-visit:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff !important;
  transform: translateY(-1.5px);
}

.footer-map-frame-wrap {
  position: relative;
  width: 100%;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  background: #071526;
}

.footer-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer-pattern {
  position: absolute;
  right: -40px;
  top: -30px;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  opacity: 0.035;
  color: #fff;
  pointer-events: none;
}

.footer-pattern .pattern-icon {
  width: 130px;
  height: 130px;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 6vw, 4rem) var(--space-lg);
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .logo-mark {
  width: 46px;
  height: 46px;
}

.footer-about {
  font-size: 0.9rem;
  margin-block: var(--space-sm);
  max-width: 34ch;
}

.footer-gst {
  font-size: 0.8rem;
  margin-bottom: var(--space-sm);
}

.footer-gst span {
  display: inline-block;
  background: rgba(242, 169, 59, 0.14);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.5rem;
  border-radius: 5px;
  margin-right: 0.5rem;
}

.footer-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.74rem;
  font-weight: 600;
  border: 1px solid var(--color-border-dark);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  color: var(--color-dark-muted);
}

.footer-badge svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
}

.footer-col h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--color-dark-muted);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-contact li {
  display: block;
  margin: 0;
  padding: 0;
}

.footer-contact a,
.footer-contact .footer-muted {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  color: var(--color-dark-muted);
  font-size: 0.92rem;
  text-decoration: none;
  line-height: 1.4;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact svg,
.footer-contact .wa-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  margin-top: 0 !important;
}

.footer-contact svg {
  color: var(--color-accent);
}

.footer-contact .wa-icon {
  color: var(--color-wa);
}

.footer-muted {
  color: var(--color-dark-muted);
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Footer Socials in footer brand */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: var(--space-sm);
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-dark-muted);
  text-decoration: none;
  transition: all var(--t-fast);
  flex-shrink: 0;
}

.footer-social-btn svg,
.footer-social-btn .wa-icon,
.footer-social-btn .social-icon {
  width: 15px;
  height: 15px;
}

.footer-social-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.footer-social-btn.social-btn--wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.45);
}

.footer-social-btn.social-btn--fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
  box-shadow: 0 3px 12px rgba(24, 119, 242, 0.45);
}

.footer-social-btn.social-btn--ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #dc2743;
  color: #fff;
  box-shadow: 0 3px 12px rgba(220, 39, 67, 0.45);
}

.footer-social-btn.social-btn--yt:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #fff;
  box-shadow: 0 3px 12px rgba(255, 0, 0, 0.45);
}

.footer-social-btn.social-btn--in:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: #fff;
  box-shadow: 0 3px 12px rgba(0, 119, 181, 0.45);
}

.footer-social-btn.social-btn--tw:hover {
  background: #0f1419;
  border-color: #555;
  color: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

/* Footer Bottom Polish */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.15);
}

.footer-bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem 1.5rem;
  padding-block: 1.15rem;
  font-size: 0.82rem;
}

.footer-copy {
  color: #cbd5e1;
  font-size: 0.82rem;
  margin: 0;
  text-align: left;
}

.footer-powered {
  color: var(--color-dark-muted);
  font-size: 0.80rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.footer-powered a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer-powered a:hover {
  color: #ffd58a;
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal li {
  display: inline-flex;
}

.footer-legal li a {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  font-size: 0.78rem;
  transition: all var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}

.footer-legal li a:hover {
  background: rgba(232, 162, 61, 0.15);
  border-color: rgba(232, 162, 61, 0.4);
  color: var(--color-accent);
  transform: translateY(-1px);
}

/* ============================================================================
   FLOATING SYSTEM
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 110;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(160deg, #2ecc63, var(--color-wa) 55%, var(--color-wa-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-wa);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.floating-whatsapp .wa-icon {
  width: 30px;
  height: 30px;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  color: #fff;
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(34, 191, 91, 0.5);
  animation: wa-pulse 2.6s var(--ease) infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }

  70% {
    transform: scale(1.22);
    opacity: 0;
  }

  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

.floating-whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--color-navy-ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-med);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.floating-whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-navy-ink);
}

.floating-whatsapp:hover .floating-whatsapp-tooltip,
.floating-whatsapp:focus-visible .floating-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 105;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 34, 62, 0.95);
  border: 1.5px solid rgba(232, 162, 61, 0.45);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity var(--t-med), transform var(--t-med), background var(--t-fast), border-color var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  border-color: var(--amber-400);
  color: #0b1f38;
  box-shadow: 0 6px 20px rgba(232, 153, 35, 0.45);
  transform: translateY(-2px);
}

/* Toasts */
.toast-region {
  position: fixed;
  bottom: 100px;
  right: 22px;
  z-index: 140;
  display: grid;
  gap: 0.6rem;
  justify-items: end;
  max-width: min(420px, calc(100vw - 40px));
}

.toast {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  background: var(--color-navy-ink);
  color: #e6edf7;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--color-accent);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  line-height: 1.5;
  animation: toast-in 300ms var(--ease);
}

.toast svg {
  width: 19px;
  height: 19px;
  color: var(--color-accent);
  margin-top: 0.15em;
}

.toast--success {
  border-left-color: var(--color-wa);
}

.toast--success svg {
  color: var(--color-wa);
}

.toast.is-leaving {
  animation: toast-out 260ms var(--ease) forwards;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* Mobile bottom CTA bar (hidden on desktop, active on mobile/tablet) */
.mobile-cta-bar {
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 130;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 -8px 25px rgba(11, 31, 58, 0.08);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  transition: transform 300ms var(--ease);
}

.mcb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 8px;
  padding-bottom: 6px;
  padding-inline: 4px;
  height: 58px;
  min-height: 58px;
  box-sizing: border-box;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transition: background-color var(--t-fast), transform var(--t-fast);
}

.mcb-item:hover {
  background-color: #f1f5fa;
}

.mcb-item:active {
  background-color: #e2e8f0;
  transform: scale(0.96);
}

.mcb-item svg,
.mcb-item .wa-icon {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

.mcb-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
  width: 100%;
  flex: 1;
  overflow: hidden;
  word-break: break-word;
  font-size: 0.70rem;
}

.mcb-item--wa {
  color: #128c7e;
  font-weight: 700;
}

.mcb-item--quote {
  background: linear-gradient(135deg, var(--color-accent), #f3b75f);
  color: var(--color-navy-ink);
  font-weight: 700;
  padding-top: 8px !important;
  padding-bottom: 6px !important;
}

.mcb-item--quote:hover,
.mcb-item--quote:active {
  background: linear-gradient(135deg, #e8a23d, #f5bc6b);
}

.mcb-item--disabled {
  opacity: 0.65;
}

/* ============================================================================
   FORMS
   ========================================================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-md);
  align-items: start;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
  min-width: 0;
}

.field--full,
.field--half {
  grid-column: span 1;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.field-label-text {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.req {
  color: #e11d48;
  font-weight: 700;
  margin-left: 2px;
}

.field-optional {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--slate-500);
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  padding: 0.12rem 0.55rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Control wrapper & icons */
.field-control-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-md);
}

.field-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  pointer-events: none;
  z-index: 2;
  transition: color var(--t-fast), transform var(--t-fast);
}

.field-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.field-control-wrap.is-textarea .field-icon {
  top: 1.15rem;
  transform: none;
}

.field-control-wrap:focus-within .field-icon {
  color: var(--navy-700);
  transform: translateY(-50%) scale(1.08);
}

.field-control-wrap.is-textarea:focus-within .field-icon {
  transform: scale(1.08);
}

/* Inputs, Selects, and Textareas */
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-md);
  font: inherit;
  font-size: 0.95rem;
  color: var(--navy-950);
  background-color: var(--slate-50);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color var(--t-fast), background-color var(--t-fast), box-shadow var(--t-fast);
  box-sizing: border-box;
}

.field-control-wrap.has-icon input,
.field-control-wrap.has-icon select {
  padding-left: 2.75rem;
}

.field-control-wrap.has-icon textarea {
  padding-left: 2.75rem;
  padding-top: 0.95rem;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}

/* Custom Select Dropdown with modern chevron */
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  padding-right: 2.85rem;
}

.field select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23163663' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

/* Hover State */
.field input:hover,
.field select:hover,
.field textarea:hover {
  background-color: #f1f5f9;
  border-color: #94a3b8;
  box-shadow: 0 2px 6px rgba(11, 31, 58, 0.06);
}

/* Focus State */
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(22, 54, 99, 0.12), 0 2px 8px rgba(11, 31, 58, 0.06);
}

/* Autofill styling */
.field input:-webkit-autofill,
.field input:-webkit-autofill:hover {
  -webkit-text-fill-color: var(--navy-950);
  -webkit-box-shadow: 0 0 0 1000px #f8fafc inset !important;
  border-color: var(--slate-300) !important;
  transition: background-color 5000s ease-in-out 0s;
}

.field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--navy-950);
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset, 0 0 0 4px rgba(22, 54, 99, 0.12) !important;
  border-color: var(--navy-700) !important;
}

/* Placeholders */
.field input::placeholder,
.field textarea::placeholder {
  color: #94a3b8;
  opacity: 1;
}

/* Invalid / Error States */
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #e11d48;
  background-color: #fff9f9;
}

.field.is-invalid .field-icon {
  color: #e11d48;
}

.field.is-invalid input:focus,
.field.is-invalid select:focus,
.field.is-invalid textarea:focus {
  border-color: #e11d48;
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.14), 0 2px 8px rgba(225, 29, 72, 0.06);
}

.field-error {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #e11d48;
  font-size: 0.81rem;
  font-weight: 500;
  margin-top: 0.2rem;
}

.field-error::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E") no-repeat 50% 50%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E") no-repeat 50% 50%;
}

.field-hint {
  font-size: 0.79rem;
  color: var(--slate-500);
  line-height: 1.4;
  margin-top: 0.2rem;
}

.radio-row {
  display: flex;
  gap: 0.5rem;
}

.radio-pill {
  position: relative;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.radio-pill span {
  display: inline-flex;
  padding: 0.55rem 1.3rem;
  border: 1.6px solid var(--color-border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-muted);
  transition: all var(--t-fast);
}

.radio-pill input:checked+span {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.radio-pill input:focus-visible+span {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.form-actions {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}

.form-actions .btn,
.form-submit {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  white-space: normal !important;
  word-break: break-word !important;
  text-align: center !important;
  justify-content: center !important;
  padding: 0.85rem 1.15rem !important;
  min-height: 48px;
}

.form-actions .btn span {
  white-space: normal !important;
  word-break: break-word !important;
}

.form-note {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.6rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.form-note svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  color: var(--color-accent-strong);
  margin-top: 0.18em !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
}

.form-note span {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  line-height: 1.5 !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

.form-status {
  margin-top: var(--space-sm);
}

.form-status [role='alert'],
.form-status .status-card {
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  font-size: 0.93rem;
  border: 1px solid;
  animation: toast-in 300ms var(--ease);
}

.status-card--success {
  background: var(--color-success-bg);
  border-color: #bfe6d4;
  color: #0c5f45;
}

.status-card--success strong {
  color: #0a5138;
}

.status-card--error {
  background: var(--color-error-bg);
  border-color: #f0c7c9;
  color: #8f2f33;
}

.status-card .status-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.7rem;
}

/* Quote form sections */
.form-section {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-md) var(--space-sm);
  margin-bottom: var(--space-sm);
  background: #fff;
}

.form-section legend {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--color-primary);
  padding-inline: 0.5rem;
  font-size: 1rem;
}

.form-section legend span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-progress {
  margin-bottom: var(--space-md);
}

.form-progress-track {
  height: 8px;
  border-radius: 999px;
  background: var(--color-border);
  overflow: hidden;
}

.form-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), #ffb648);
  transition: width 400ms var(--ease);
}

.form-progress-label {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.45rem;
}

/* ============================================================================
   GENERIC ANIMATION
   ========================================================================== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
  will-change: opacity, transform;
}

html.animations-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible,
.reveal .reveal,
.hero .reveal,
.page-hero .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.reveal-stagger>* {
  opacity: 1;
  transform: none;
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

html.animations-ready .reveal-stagger:not(.is-visible)>* {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-stagger.is-visible>* {
  opacity: 1 !important;
  transform: none !important;
}

html.js .reveal-stagger.is-visible>*:nth-child(2) {
  transition-delay: 70ms;
}

html.js .reveal-stagger.is-visible>*:nth-child(3) {
  transition-delay: 140ms;
}

html.js .reveal-stagger.is-visible>*:nth-child(4) {
  transition-delay: 210ms;
}

html.js .reveal-stagger.is-visible>*:nth-child(5) {
  transition-delay: 280ms;
}

html.js .reveal-stagger.is-visible>*:nth-child(6) {
  transition-delay: 350ms;
}

html.js .reveal-stagger.is-visible>*:nth-child(7) {
  transition-delay: 420ms;
}

html.js .reveal-stagger.is-visible>*:nth-child(8) {
  transition-delay: 490ms;
}

html.js .reveal-stagger.is-visible>*:nth-child(9) {
  transition-delay: 560ms;
}

html.js .reveal-stagger.is-visible>*:nth-child(10) {
  transition-delay: 630ms;
}

html.js .reveal-stagger.is-visible>*:nth-child(11) {
  transition-delay: 700ms;
}

html.js .reveal-stagger.is-visible>*:nth-child(12) {
  transition-delay: 770ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.js .reveal,
  html.js .reveal-stagger>* {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================================
   i18n — EN / த language toggle & Tamil typography layer
   ========================================================================== */

/* ---------- Toggle: iOS-style pill switch matching user specs ---------- */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 9999px;
  background: #ffffff;
  border: 1.5px solid rgba(11, 31, 58, 0.12);
  box-shadow: 0 1px 3px rgba(11, 31, 58, 0.06), inset 0 1px 2px rgba(0, 0, 0, 0.02);
  flex: none;
  position: relative;
  user-select: none;
}

.lang-btn {
  appearance: none;
  min-width: 38px;
  height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: #5a6578;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}

.lang-btn:hover {
  color: var(--color-primary);
}

.lang-btn.is-active {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 2px 5px rgba(11, 31, 58, 0.25);
}

.lang-btn[data-lang-option="ta"] {
  font-family: 'Noto Sans Tamil', var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
}

/* Dark topbar variant */
.lang-toggle--topbar {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  padding: 2px;
}

.lang-toggle--topbar .lang-btn {
  height: 25px;
  min-width: 33px;
  font-size: 0.74rem;
  color: #b9c6da;
}

.lang-toggle--topbar .lang-btn:hover {
  color: #fff;
}

.lang-toggle--topbar .lang-btn.is-active {
  background: linear-gradient(150deg, #ffb648, var(--color-accent));
  color: var(--color-navy-ink);
  box-shadow: 0 2px 6px -2px rgba(0, 0, 0, 0.5);
}

.topbar-lang {
  display: inline-flex;
  align-items: center;
}

.topbar-lang::before {
  content: '';
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.16);
  margin-right: 0.9rem;
}

/* Drawer variant — touch-sized */
.lang-toggle--drawer {
  display: none;
}

.lang-toggle--drawer .lang-btn {
  height: 34px;
  min-width: 46px;
  font-size: 0.9rem;
}

/* ---------- Tamil typography & language-responsive scaling (html.lang-ta set by i18n.js) ---------- */
/* Uses exact Noto Sans Tamil font analyzed from Annapoorani Trust.
   Latin characters and numerals (0-9) are rendered in Plus Jakarta Sans / Inter first,
   ensuring brand names, emails, proper nouns, and all numbers look 100% identical in both languages. */
html.lang-ta {
  --font-body: 'Plus Jakarta Sans', 'Inter', 'Noto Sans Tamil', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', 'Noto Sans Tamil', system-ui, sans-serif;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

html.lang-ta body {
  letter-spacing: 0.005em;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

/* ============================================================================
   CROSS-LANGUAGE CONSISTENCY: Brand, Email, Proper Nouns & Numbers
   Ensures brand name, email, phone numbers, GST, proper nouns, and all
   digits (0-9) render identically in English and Tamil with zero shrinkage.
   ========================================================================== */

/* Brand name in Header, Preloader, Drawer and Footer */
.brand-name,
.pnav-name,
.preloader-brand-title span,
.footer-brand .brand-name,
[lang="en"].brand-name {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif !important;
  font-size: 1.36rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.1;
}

.brand-sub,
.footer-brand .brand-sub,
.primary-nav-brand .pnav-sub,
[lang="en"].brand-sub {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif !important;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Email and Phone Contact Items */
.topbar-item,
.topbar-email,
.topbar-phone,
a[href^="mailto:"],
a[href^="tel:"],
.footer-contact li a,
.mcb-contact a {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}

.topbar-item {
  font-size: 0.82rem;
}

.topbar-email span,
.topbar-phone span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Numbers across the website: step numbers, counters, stats, GST, pin codes */
.step-num,
.stat-number,
.stat-num,
.hero-stat-num,
.counter,
.footer-gst span,
.badge,
[data-num],
.numeric {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif !important;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}

.step-num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

/* Explicit Tamil language preservation — no shrinkage */
html.lang-ta .brand-name,
html.lang-ta .footer-brand .brand-name,
html.lang-ta .pnav-name,
html.lang-ta .preloader-brand-title span {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px;
}

html.lang-ta .brand-sub,
html.lang-ta .footer-brand .brand-sub,
html.lang-ta .primary-nav-brand .pnav-sub {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em;
}

html.lang-ta .topbar-item,
html.lang-ta .topbar-email,
html.lang-ta .topbar-phone {
  font-size: 0.82rem !important;
  letter-spacing: 0.01em;
}

html.lang-ta .topbar-email span,
html.lang-ta .topbar-phone span,
html.lang-ta a[href^="mailto:"],
html.lang-ta a[href^="tel:"] {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif !important;
  font-size: 0.82rem !important;
}

html.lang-ta .step-num {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  line-height: 1;
}

html.lang-ta .footer-gst span {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 700;
}

/* Latin nouns and technical terms inside Tamil text */
html.lang-ta [lang="en"],
html.lang-ta .latin-noun {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-weight: 600;
}

/* Headings in Tamil: tuned for Tamil word length based on Annapoorani Trust */
html.lang-ta h1,
html.lang-ta .hero-title,
html.lang-ta .page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  line-height: 1.25;
  letter-spacing: normal;
}

html.lang-ta h2,
html.lang-ta .section-title {
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  line-height: 1.3;
  letter-spacing: normal;
}

/* Card & component headings in Tamil: prevent generic h2 clamp from blowing up cards */
html.lang-ta .pillar h2 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: normal;
  text-transform: none;
}

html.lang-ta .contact-card h2,
html.lang-ta .side-card h2 {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: normal;
  text-transform: none;
}

html.lang-ta .contact-form-wrap .section-title {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.35;
}

html.lang-ta .legal-block h2,
html.lang-ta .legal-contact h2 {
  font-size: 1.22rem;
  line-height: 1.38;
}

html.lang-ta h3,
html.lang-ta .sol-card-title,
html.lang-ta .industry-card-title,
html.lang-ta .project-card-title,
html.lang-ta .pillar-title,
html.lang-ta .offer-title,
html.lang-ta .problem-card-title,
html.lang-ta .value-title,
html.lang-ta .step-title,
html.lang-ta .notfound h1 {
  font-size: 1.12rem;
  line-height: 1.38;
}

html.lang-ta .section-eyebrow,
html.lang-ta .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

html.lang-ta .hero-lead,
html.lang-ta .page-hero-lead,
html.lang-ta .section-lead {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.68;
}

html.lang-ta p,
html.lang-ta li {
  line-height: 1.68;
}

/* Buttons and interactive elements in Tamil */
html.lang-ta .btn {
  font-size: 0.9rem;
  padding-block: 0.52rem;
  padding-inline: clamp(0.75rem, 1.4vw, 1.2rem);
  letter-spacing: normal;
}

html.lang-ta .badge,
html.lang-ta .sol-chip,
html.lang-ta .filter-btn {
  font-size: 0.8rem;
  line-height: 1.35;
}

/* Desktop Navbar specific to Tamil */
html.lang-ta .nav-link {
  font-size: 0.86rem;
  padding: 0.48rem clamp(0.3rem, 0.45vw, 0.55rem);
}

html.lang-ta .nav-list {
  gap: clamp(0.06rem, 0.2vw, 0.2rem);
}

@media (min-width: 1221px) {
  html.lang-ta .dropdown {
    min-width: 380px;
  }
}

html.lang-ta .dd-item-name {
  font-size: 0.9rem;
}

html.lang-ta .dd-item-desc {
  font-size: 0.76rem;
  line-height: 1.35;
}

/* Form inputs and labels in Tamil */
html.lang-ta .field label {
  font-size: 0.88rem;
}

html.lang-ta .field-hint {
  font-size: 0.78rem;
}

html.lang-ta .form-section legend {
  font-size: 0.96rem;
}

/* Footer in Tamil */
html.lang-ta .footer-desc {
  font-size: 0.9rem;
  line-height: 1.62;
}

html.lang-ta .footer-col h3 {
  font-size: 0.98rem;
}

html.lang-ta .footer-links a {
  font-size: 0.88rem;
}

html.lang-ta .footer-bottom {
  font-size: 0.84rem;
}

/* Ensure no text overflows cards or containers */
html.lang-ta * {
  overflow-wrap: break-word;
}

/* Ensure language toggle state without shifting layout */
html.lang-ta .lang-btn[lang='ta'] {
  font-weight: 600;
}

/* ============================================================================
   Premium signature details
   ========================================================================== */

/* Tinted scrollbar (WebKit) — quiet navy, amber on hover */
::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: #e9eef6;
}

::-webkit-scrollbar-thumb {
  background: #b9c6da;
  border-radius: 8px;
  border: 3px solid #e9eef6;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-3);
}

/* Scrolled header gains an amber hairline — a small brand signature
   (.site-header is position:sticky, so it already anchors ::after) */
.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 18%, #ffd58a 50%, var(--color-accent) 82%, transparent 100%);
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
  z-index: 1;
  /* Render behind .navbar (z-index: 10) and .dropdown (z-index: 1000) */
}

.site-header.is-scrolled::after {
  opacity: 0.9;
}

/* Primary / WhatsApp buttons get a light-sweep on hover */
.btn--primary,
.btn--wa {
  position: relative;
  overflow: hidden;
}

.btn--primary::after,
.btn--wa::after {
  content: '';
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -70%;
  width: 46%;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  transform: skewX(-22deg);
  transition: left 620ms var(--ease);
  pointer-events: none;
}

.btn--primary:hover::after,
.btn--wa:hover::after {
  left: 135%;
}

/* Cards reveal a slim amber crown on hover */
.sol-card,
.project-card,
.offer-card,
.value-card,
.trust-item {
  position: relative;
}

.sol-card::before,
.project-card::before,
.offer-card::before,
.value-card::before,
.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--color-accent), #ffd58a 55%, var(--color-accent-strong));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms var(--ease);
  z-index: 2;
}

.sol-card:hover::before,
.project-card:hover::before,
.offer-card:hover::before,
.value-card:hover::before,
.trust-item:hover::before {
  transform: scaleX(1);
}

html.lang-ta body {
  text-rendering: optimizeLegibility;
}

/* ============================================================================
   SKELETON SHIMMER & LAZY LOADING
   ========================================================================== */
figure:has(img[loading="lazy"]),
.mini-project-media:has(img[loading="lazy"]),
.page-hero-frame:has(img[loading="lazy"]),
.project-card-media:has(img[loading="lazy"]),
.frame:has(img[loading="lazy"]),
.skeleton-box {
  position: relative;
  background-color: #e6edf6;
  overflow: hidden;
}

figure:has(img[loading="lazy"]):not(.is-loaded)::before,
.mini-project-media:has(img[loading="lazy"]):not(.is-loaded)::before,
.page-hero-frame:has(img[loading="lazy"]):not(.is-loaded)::before,
.project-card-media:has(img[loading="lazy"]):not(.is-loaded)::before,
.frame:has(img[loading="lazy"]):not(.is-loaded)::before,
.skeleton-box::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.55) 50%,
      rgba(255, 255, 255, 0) 100%);
  animation: skeletonShimmer 1.6s infinite ease-in-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes skeletonShimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 350ms var(--ease);
}

img[loading="lazy"].img-loaded,
.is-loaded img[loading="lazy"],
img:not([loading="lazy"]) {
  opacity: 1;
}