/* ============================================================
   SKM DRIVING SCHOOL — Design System
   Body     : White #FFFFFF
   Header   : White #FFFFFF
   Accent   : Yellow #FEE100
   Display  : Barlow Condensed
   Body     : Plus Jakarta Sans

   FONT WEIGHT SYSTEM:
   Hero title          → --fw-hero:    700  (confident, not heavy)
   Section titles      → --fw-section: 500  (refined, editorial)
   Sub-headings        → --fw-heading: 600  (mid weight)
   Body / UI text      → --fw-body:    400
   Labels / Buttons    → --fw-strong:  700
   Stats / Numbers     → --fw-number:  900  (impact for numerics only)
   Badges / Chips      → --fw-badge:   800
============================================================ */

/* ── :root Tokens ── */
:root {

  /* ── Font Families ── */
  --font-display: 'Barlow Condensed', 'Arial Black', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* ── Font Sizes — Fluid Type Scale ── */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* ── Font Weights — Named Semantic Tokens ── */
  --fw-body: 400;
  --fw-medium: 500;
  --fw-heading: 600;
  --fw-strong: 700;
  --fw-hero: 700;
  --fw-badge: 800;
  --fw-number: 900;

  /* ── Line Heights ── */
  --lh-tight: 1.04;
  --lh-heading: 1.12;
  --lh-base: 1.6;
  --lh-relaxed: 1.75;

  /* ── Letter Spacing ── */
  --ls-tight: -0.02em;
  --ls-normal: 0em;
  --ls-wide: 0.03em;
  --ls-wider: 0.08em;
  --ls-widest: 0.12em;

  /* ── 4px Spacing ── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* ── Yellow Palette ── */
  --yellow: #FEE100;
  --yellow-hover: #FED800;
  --yellow-active: #FCCF00;
  --yellow-nav: #e6bf00;
  --yellow-nav-hover: #e7bd00;
  --yellow-light: #FFFDE6;
  --yellow-pale: #FFF8B0;
  --yellow-border: rgba(254, 225, 0, 0.35);
  --yellow-glow: rgba(254, 225, 0, 0.30);
  --yellow-shadow: rgba(254, 225, 0, 0.40);

  /* ── Neutrals ── */
  --black: #111111;
  --grey-900: #1C1C1C;
  --grey-800: #2E2E2E;
  --grey-700: #444444;
  --grey-600: #585858;
  --grey-500: #777777;
  --grey-400: #9A9A9A;
  --grey-300: #C2C2C2;
  --grey-200: #E0E0E0;
  --grey-100: #F4F4F4;
  --grey-50: #FAFAFA;
  --white: #FFFFFF;

  /* ── Semantic Roles ── */
  --color-bg: var(--white);
  --color-surface: var(--grey-50);
  --color-surface-2: var(--grey-100);
  --color-text: var(--black);
  --color-text-muted: var(--grey-600);
  --color-text-faint: var(--grey-400);
  --color-text-inverse: var(--white);
  --color-border: rgba(0, 0, 0, 0.08);
  --color-divider: rgba(0, 0, 0, 0.06);

  /* ── Radius ── */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

  /* ── Transitions ── */
  --ease: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-slow: 320ms cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Layout ── */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1300px;
  --header-h: 90px;
}

/* ============================================================
   BASE RESET
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-body);
  color: var(--color-text);
  background-color: var(--white);
  line-height: var(--lh-base);
  min-height: 100dvh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: var(--lh-heading);
}

p,
li,
figcaption {
  font-family: var(--font-body);
  font-weight: var(--fw-body);
  text-wrap: pretty;
  max-width: 72ch;
}

a,
button,
[role="button"] {
  transition:
    color var(--ease), background var(--ease),
    border-color var(--ease), box-shadow var(--ease),
    transform var(--ease), opacity var(--ease);
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: var(--yellow-glow);
  color: var(--color-text);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.skip-link {
  position: absolute;
  top: -999px;
  left: var(--space-4);
  background: var(--yellow);
  color: var(--black);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  z-index: 9999;
}

.skip-link:focus {
  top: var(--space-4);
}

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
.ann-bar {
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.ann-bar i {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ============================================================
   SITE HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background-color: var(--white);
  border-bottom: 1.5px solid var(--grey-200);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
}

.header-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-8);
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-8);
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ── Nav ── */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
  flex-wrap: nowrap;
}

.nav-link {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--grey-600);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  white-space: nowrap;
  letter-spacing: var(--ls-normal);
  text-decoration: none;
  background: transparent;
}

.nav-link:hover {
  color: var(--yellow-nav-hover);
}

.nav-link.active {
  color: var(--yellow-nav);
  font-weight: var(--fw-heading);
}

/* ── Actions ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

/* ── Call Us ── */
.btn-call {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  cursor: pointer;
}

.call-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px var(--yellow-glow);
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.call-icon-wrap i {
  width: 16px;
  height: 16px;
  color: var(--black);
}

.btn-call:hover .call-icon-wrap {
  background: var(--yellow-hover);
  box-shadow: 0 4px 14px var(--yellow-glow);
  transform: scale(1.06);
}

.call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.call-hint {
  font-size: 10px;
  font-weight: var(--fw-heading);
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

.call-num {
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  color: var(--black);
  letter-spacing: var(--ls-wide);
  white-space: nowrap;
}

.btn-call:hover .call-num {
  color: var(--yellow-nav);
}

/* ── Book Now ── */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: 0 2px 10px var(--yellow-glow);
  white-space: nowrap;
  text-decoration: none;
}

.btn-book:hover {
  background: var(--yellow-hover);
  box-shadow: 0 4px 18px var(--yellow-shadow);
  transform: translateY(-1px);
}

.btn-book:active {
  background: var(--yellow-active);
  transform: translateY(0);
  box-shadow: 0 1px 6px var(--yellow-glow);
}

.btn-book i {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── Hamburger ── */
.btn-menu {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  color: var(--grey-700);
  background: var(--grey-100);
  flex-shrink: 0;
  border: none;
}

.btn-menu i {
  width: 20px;
  height: 20px;
}

.btn-menu:hover {
  background: var(--yellow-light);
  color: var(--yellow-nav);
}

/* ============================================================
   MOBILE NAV DRAWER
============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  flex-direction: column;
}

.mobile-nav.open {
  display: flex;
}

.mob-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.mob-panel {
  position: relative;
  z-index: 1;
  width: min(300px, 88vw);
  height: 100%;
  background: var(--white);
  border-right: 2.5px solid var(--yellow);
  padding: var(--space-5) var(--space-5) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.mob-logo {
  height: 34px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.mob-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-500);
  background: var(--grey-100);
  flex-shrink: 0;
}

.mob-close i {
  width: 17px;
  height: 17px;
}

.mob-close:hover {
  color: var(--yellow-nav);
  background: var(--yellow-light);
}

.mob-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.mob-links a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--grey-700);
  border-radius: var(--radius-md);
  text-decoration: none;
}

.mob-links a:hover {
  color: var(--yellow-nav-hover);
  background: var(--yellow-light);
}

.mob-links a.active {
  color: var(--yellow-nav);
  background: var(--yellow-pale);
  font-weight: var(--fw-heading);
}

.mob-links a i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--grey-400);
}

.mob-links a:hover i,
.mob-links a.active i {
  color: var(--yellow-hover);
}

.mob-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.btn-book.mob-book {
  justify-content: center;
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
}

.btn-call-mob {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border: 1.5px solid var(--yellow-border);
  border-radius: var(--radius-lg);
  color: var(--yellow-nav);
  font-size: var(--text-sm);
  font-weight: var(--fw-heading);
  background: var(--yellow-light);
  text-decoration: none;
}

.btn-call-mob i {
  width: 15px;
  height: 15px;
  color: var(--yellow-hover);
}

.btn-call-mob:hover {
  background: var(--yellow-pale);
  border-color: var(--yellow-hover);
  color: var(--yellow-nav-hover);
}

/* ============================================================
   PAGE UTILITIES
============================================================ */
.section {
  padding-block: clamp(var(--space-12), 7vw, var(--space-24));
  padding-inline: var(--space-6);
}

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
}

.container--default {
  max-width: var(--content-default);
  margin-inline: auto;
}

.container--narrow {
  max-width: var(--content-narrow);
  margin-inline: auto;
}

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--yellow-nav);
  margin-bottom: var(--space-3);
}

/* ── Section Title — 500 weight for all sections ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.2rem + 1.8vw, 3rem);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section-title .highlight {
  color: var(--yellow-nav);
}

/* ── Section Desc ── */
.section-desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-body);
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: var(--lh-relaxed);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card--accent {
  border-top: 3px solid var(--yellow);
}

/* ── Icon Badge ── */
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.icon-badge i {
  width: 22px;
  height: 22px;
  color: var(--yellow-nav);
}

/* ── Global Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 2px 10px var(--yellow-glow);
}

.btn-primary:hover {
  background: var(--yellow-hover);
  box-shadow: 0 4px 18px var(--yellow-shadow);
  transform: translateY(-1px);
}

.btn-primary:active {
  background: var(--yellow-active);
  transform: translateY(0);
}

.btn-secondary {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--grey-800);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--yellow-nav);
  border: 1.5px solid var(--yellow-border);
}

.btn-outline:hover {
  background: var(--yellow-light);
  border-color: var(--yellow);
  color: var(--yellow-nav-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
}

.btn-ghost:hover {
  color: var(--color-text);
  border-color: var(--grey-300);
  background: var(--grey-50);
}

/* ── Tags ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 3px var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.tag--yellow {
  background: var(--yellow-light);
  color: var(--yellow-nav);
  border: 1px solid var(--yellow-border);
}

.tag--dark {
  background: var(--black);
  color: var(--yellow);
}

.tag--grey {
  background: var(--grey-100);
  color: var(--grey-600);
  border: 1px solid var(--color-border);
}

hr.divider {
  height: 1px;
  background: var(--color-divider);
  border: none;
  margin-block: var(--space-8);
}

/* ============================================================
   HEADER RESPONSIVE - FINAL FIX
============================================================ */

/* ---------- Large tablets / small desktops ---------- */
@media (max-width: 1140px) {
  .header-inner {
    padding-inline: var(--space-5);
    gap: var(--space-5);
  }

  .logo-img {
    height: 72px;
    max-width: 180px;
  }

  .header-nav ul {
    gap: 0;
  }

  .nav-link {
    padding: var(--space-2) clamp(0.4rem, 0.5vw, var(--space-3));
    font-size: clamp(0.78rem, 0.5rem + 0.6vw, 0.9rem);
  }

  .header-actions {
    gap: var(--space-3);
  }
.mob-logo {
    height: 70px;
    max-width: 115px;
  }
  .btn-book {
    padding: var(--space-2) var(--space-4);
  }
}

/* ---------- Tablet / mobile ---------- */
@media (max-width: 960px) {
  :root {
    --header-h: 75px;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    position: relative;
    max-width: 100%;
    height: 100%;
    padding-inline: 1rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
  }

  .header-nav,
  .btn-call {
    display: none !important;
  }

  .header-logo {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    z-index: 2;
  }

  .logo-img {
    height: 65px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 2;
  }

  .btn-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    margin: 0;
    border-radius: 12px;
    background: var(--grey-100);
    color: var(--grey-700);
    border: none;
    z-index: 3;
  }

  .btn-menu i,
  .btn-menu svg {
    width: 18px;
    height: 18px;
  }

  /* Header icon-only booking button */
  .header-actions > .btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    margin: 0;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--yellow-glow);
  }

  .header-actions > .btn-book .book-lbl {
    display: none;
  }

  .header-actions > .btn-book i,
  .header-actions > .btn-book svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  /* Drawer CTA button */
  .btn-book.mob-book {
    width: 100%;
    min-height: 48px;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1rem;
    margin: 0;
    border-radius: 14px;
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 6px 18px rgba(254, 225, 0, 0.28);
  }
.mob-logo {
    height: 70px;
    max-width: 115px;
  }
  .btn-book.mob-book .book-lbl {
    display: inline;
  }

  .btn-book.mob-book i,
  .btn-book.mob-book svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
}
@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    padding-inline: 0.95rem;
  }

  .btn-menu {
    left: 0.95rem;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 11px;
  }

  .header-actions > .btn-book {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 11px;
  }

  .btn-menu i,
  .btn-menu svg,
  .header-actions > .btn-book i,
  .header-actions > .btn-book svg {
    width: 17px;
    height: 17px;
  }

  .logo-img {
    height: 60px;
    max-width: 126px;
  }

  .mob-panel {
    width: min(300px, 88vw);
  }
.mob-logo {
    height: 70px;
    max-width: 115px;
  }
  .btn-book.mob-book {
    min-height: 46px;
    padding: 0.85rem 1rem;
    border-radius: 13px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 70px;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    padding-inline: 0.8rem;
  }

  .btn-menu {
    left: 0.8rem;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    border-radius: 10px;
  }

  .header-actions > .btn-book {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    border-radius: 10px;
  }

  .btn-menu i,
  .btn-menu svg,
  .header-actions > .btn-book i,
  .header-actions > .btn-book svg {
    width: 16px;
    height: 16px;
  }

  .logo-img {
    height: 60px;
    max-width: 112px;
  }

  .mob-panel {
    width: min(280px, 90vw);
    padding: var(--space-4) var(--space-4) var(--space-6);
  }

  .mob-logo {
    height: 60px;
    max-width: 115px;
  }

  .btn-book.mob-book {
    min-height: 44px;
    padding: 0.82rem 0.95rem;
    border-radius: 12px;
  }
}


  /* ═══════════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════════ */
.page-header {
  position: relative;
  width: 100%;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

/* BG image layer */
.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.6) saturate(0.8);
  transition: transform 6s ease;
}

.page-header:hover .page-header-bg img {
  transform: scale(1.04);
}

/* dark gradient overlay */
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.20) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.78) 100%
  );
  z-index: 1;
}

/* Inner content sits above bg and overlay */
.page-header-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* ── Breadcrumb ── */
.page-header-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.page-header-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--ease);
}

.page-header-breadcrumb a:hover {
  color: var(--yellow);
}

.page-header-breadcrumb a i {
  width: 13px;
  height: 13px;
}

.page-header-sep {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.35);
}

.page-header-breadcrumb span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  color: var(--yellow);
  letter-spacing: 0.03em;
}

/* ── Content ── */
.page-header-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 720px;
}

/* Label on dark bg */
.page-header-label {
  background: rgba(254, 225, 0, 0.10);
  color: var(--yellow);
  border: 1px solid rgba(254, 225, 0, 0.18);
}

.page-header-label i {
  color: var(--yellow);
}

/* Title */
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.2rem + 1.8vw, 3rem);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: var(--ls-tight);
  color: var(--white);
  margin: 0;
}

.page-header-title .highlight {
  color: var(--yellow);
}

/* Description */
.page-header-desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-body);
  color: rgba(255, 255, 255, 0.68);
  line-height: var(--lh-relaxed);
  max-width: 60ch;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .page-header {
    min-height: 300px;
  }

  .page-header-inner {
    padding-top: clamp(3.5rem, 7vw, 5rem);
    padding-bottom: var(--space-8);
  }
}

@media (max-width: 480px) {
  .page-header {
    min-height: 260px;
  }

  .page-header-title {
    font-size: clamp(1.5rem, 1rem + 2.5vw, 2rem);
  }
}


/* ============================================================
DRIVING RULES HERO SECTION
Uses existing SKM design system
============================================================ */

.rules-hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.rules-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rules-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.94)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.rules-hero-bg-accent {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 420px;
  height: 420px;
  background: var(--yellow);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.92;
  z-index: 1;
}

.rules-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2vh, 1.4rem);
  text-align: center;
}

.rules-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--grey-600);
}

.rules-hero-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(254, 225, 0, 0.28);
}

.rules-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 1.5rem + 2.6vw, 4.4rem);
  font-weight: var(--fw-hero);
  line-height: var(--lh-tight);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}

.rules-hero-highlight {
  color: var(--yellow);
  position: relative;
  display: inline-block;
}
.rules-hero-desc {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 0.78rem + 0.4vw, 1rem);
  font-weight: var(--fw-body);
  color: var(--grey-600);
  max-width: 60ch;
  line-height: var(--lh-relaxed);
  margin: 0;
}

.rules-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.rules-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: var(--fw-strong);
  line-height: 1;
  color: var(--black);
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(254, 225, 0, 0.38);
  transition:
    background var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    transform var(--ease);
}

.rules-hero-btn-primary i,
.rules-hero-btn-primary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.rules-hero-btn-primary:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  box-shadow: 0 6px 24px rgba(254, 225, 0, 0.48);
  transform: translateY(-2px);
}

.rules-hero-btn-primary:active {
  background: var(--yellow-active);
  border-color: var(--yellow-active);
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(254, 225, 0, 0.28);
}

.rules-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: var(--fw-strong);
  line-height: 1;
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--black);
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  transition:
    background var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    transform var(--ease);
}

.rules-hero-btn-secondary i,
.rules-hero-btn-secondary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.rules-hero-btn-secondary:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.rules-hero-btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}
.rules-hero-video-wrap {
  width: 100%;
  max-width: 980px;
  margin-top: 0.5rem;
}

.rules-hero-video-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--black);
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(254, 225, 0, 0.10);
}

.rules-hero-video-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(17, 17, 17, 0.76);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.rules-hero-video-badge i,
.rules-hero-video-badge svg {
  width: 13px;
  height: 13px;
  color: var(--yellow);
  flex-shrink: 0;
}

.rules-hero-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.rules-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 1100px) {
  .rules-hero-bg-accent {
    width: 320px;
    height: 320px;
    top: -50px;
    right: -50px;
  }

  .rules-hero-title {
    font-size: clamp(2.2rem, 1.2rem + 2.4vw, 3.6rem);
  }
}

@media (max-width: 768px) {
  .rules-hero {
    padding-block: 4rem 3.5rem;
  }

  .rules-hero-inner {
    padding-inline: 1.25rem;
    gap: 1.1rem;
  }

  .rules-hero-title {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
    max-width: 100%;
  }

  .rules-hero-desc {
    text-align: center;
    max-width: 100%;
  }

  .rules-hero-ctas {
    justify-content: center;
  }

  .rules-hero-bg-accent {
    width: 200px;
    height: 200px;
    top: -20px;
    right: -20px;
    opacity: 0.8;
  }

  .rules-hero-video-card {
    border-radius: 16px;
  }

  .rules-hero-video-badge {
    top: 0.75rem;
    left: 0.75rem;
  }
}

@media (max-width: 480px) {
  .rules-hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .rules-hero-btn-primary,
  .rules-hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================================
WHY ROAD SAFETY MATTERS — IMPROVED VERSION
Cleaner hierarchy, better card balance, premium feature row
============================================================ */

.road-why-v2 {
  background: var(--grey-50);
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.road-why-v2__header {
  max-width: 700px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.road-why-v2__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  align-items: stretch;
}

.road-why-v2__card {
  min-height: 320px;
  border-radius: 22px;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.road-why-v2__card:hover {
  transform: translateY(-4px);
}

.road-why-v2__card--yellow {
  background: var(--yellow);
  border: 1px solid var(--yellow-hover);
  box-shadow: 0 10px 30px rgba(254, 225, 0, 0.18);
}

.road-why-v2__card--light {
  background: var(--white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.road-why-v2__card--dark {
  background: var(--black);
  border: 1px solid var(--grey-800);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.20);
}

.road-why-v2__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.road-why-v2__icon svg {
  width: 24px;
  height: 24px;
  color: var(--black);
}

.road-why-v2__icon--soft {
  background: var(--yellow-light);
  border: 1px solid var(--yellow-border);
}

.road-why-v2__icon--soft svg {
  color: var(--yellow-nav);
}

.road-why-v2__icon--dark {
  background: rgba(255, 255, 255, 0.08);
}

.road-why-v2__icon--dark svg {
  color: var(--yellow);
}

.road-why-v2__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.road-why-v2__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1rem + 0.9vw, 2rem);
  font-weight: var(--fw-medium);
  line-height: 1.06;
  color: var(--black);
  letter-spacing: -0.01em;
}

.road-why-v2__title--inv {
  color: var(--white);
}

.road-why-v2__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: var(--lh-relaxed);
  color: rgba(0, 0, 0, 0.68);
  max-width: 100%;
}

.road-why-v2__desc--inv {
  color: rgba(255, 255, 255, 0.72);
}

.road-why-v2__footer {
  margin-top: auto;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  color: rgba(0, 0, 0, 0.58);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.road-why-v2__card--light .road-why-v2__footer {
  color: var(--yellow-nav);
}

.road-why-v2__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
}

.road-why-v2__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.road-why-v2__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.8rem + 1.8vw, 3.5rem);
  font-weight: var(--fw-number);
  line-height: 1;
  color: var(--yellow);
  letter-spacing: var(--ls-tight);
}

.road-why-v2__stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--fw-strong);
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

.road-why-v2__feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: var(--space-6);
  align-items: center;
  background: linear-gradient(135deg, var(--white) 0%, #fcfcfc 100%);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.road-why-v2__feature-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.road-why-v2__feature-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  background: var(--yellow-light);
  border: 1px solid var(--yellow-border);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--yellow-nav);
}

.road-why-v2__feature-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.2rem + 1vw, 2.3rem);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--black);
  letter-spacing: var(--ls-tight);
  max-width: 16ch;
}

.road-why-v2__feature-desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: var(--lh-relaxed);
  color: var(--grey-600);
  max-width: 58ch;
}

.road-why-v2__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: var(--space-2) 0 0;
  padding: 0;
  list-style: none;
}

.road-why-v2__points li {
  position: relative;
  padding-left: 1rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: 1.5;
  color: var(--grey-700);
}

.road-why-v2__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(254, 225, 0, 0.18);
}

.road-why-v2__feature-right {
  display: flex;
  justify-content: center;
}

.road-why-v2__feature-stat {
  width: min(100%, 220px);
  min-height: 190px;
  border-radius: 22px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.road-why-v2__feature-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 2rem + 2vw, 4rem);
  font-weight: var(--fw-number);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  color: var(--yellow);
}

.road-why-v2__feature-stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--fw-strong);
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  text-align: center;
}

@media (max-width: 1024px) {
  .road-why-v2__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .road-why-v2__feature {
    grid-template-columns: 1fr;
  }

  .road-why-v2__feature-title,
  .road-why-v2__feature-desc {
    max-width: 100%;
  }

  .road-why-v2__feature-right {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .road-why-v2__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .road-why-v2__card {
    min-height: auto;
    padding: var(--space-5);
    border-radius: 18px;
  }

  .road-why-v2__top {
    align-items: center;
  }

  .road-why-v2__stat {
    align-items: flex-end;
  }

  .road-why-v2__feature {
    padding: var(--space-5);
    border-radius: 18px;
    gap: var(--space-5);
  }

  .road-why-v2__feature-stat {
    width: 100%;
    min-height: 150px;
  }

  .road-why-v2__points {
    flex-direction: column;
    gap: 0.55rem;
  }
}

/* ============================================================
TRAFFIC SIGNS & SYMBOLS — SYMBOL GRID VERSION
============================================================ */

.traffic-signs-v2 {
  background: var(--white);
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.traffic-signs-v2__header {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.traffic-signs-v2__groups {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.traffic-signs-v2__group {
  background: var(--grey-50);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: clamp(1.25rem, 2vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.traffic-signs-v2__group--dark {
  background: var(--black);
  border-color: var(--grey-800);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.20);
}

.traffic-signs-v2__group-head {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.traffic-signs-v2__group-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.traffic-signs-v2__group-icon svg {
  width: 24px;
  height: 24px;
}

.traffic-signs-v2__group-icon--yellow {
  background: var(--yellow);
  color: var(--black);
}

.traffic-signs-v2__group-icon--light {
  background: var(--yellow-light);
  border: 1px solid var(--yellow-border);
  color: var(--yellow-nav);
}

.traffic-signs-v2__group-icon--dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
}

.traffic-signs-v2__group-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 0.8vw, 2rem);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--black);
}

.traffic-signs-v2__group-title--inv {
  color: var(--white);
}

.traffic-signs-v2__group-desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: var(--lh-relaxed);
  color: var(--grey-600);
  max-width: 60ch;
}

.traffic-signs-v2__group-desc--inv {
  color: rgba(255, 255, 255, 0.68);
}

.traffic-signs-v2__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--space-4);
}

.sign-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  min-height: 170px;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.sign-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.sign-card--dark {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.sign-symbol {
  position: relative;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.sign-symbol span {
  font-family: var(--font-body);
  font-weight: var(--fw-strong);
  line-height: 1;
}

/* stop */
.sign-symbol--stop {
  background: #c62828;
  clip-path: polygon(
    30% 0%, 70% 0%,
    100% 30%, 100% 70%,
    70% 100%, 30% 100%,
    0% 70%, 0% 30%
  );
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 2px #c62828;
}

.sign-symbol--stop span {
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

/* no entry */
.sign-symbol--no-entry {
  border-radius: 50%;
  background: #d32f2f;
  border: 5px solid #ffffff;
  box-shadow: 0 0 0 2px #d32f2f;
}

.sign-symbol--no-entry::before {
  content: "";
  width: 44px;
  height: 10px;
  border-radius: 999px;
  background: #ffffff;
  position: absolute;
}

/* give way */
.sign-symbol--give-way {
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #ffffff;
  border: 5px solid #d32f2f;
  display: grid;
  place-items: center;
}

.sign-symbol--give-way span {
  color: var(--black);
  font-size: 0.72rem;
  text-align: center;
  line-height: 1.05;
  transform: translateY(4px);
}

/* speed limit */
.sign-symbol--speed-limit {
  border-radius: 50%;
  background: #ffffff;
  border: 6px solid #d32f2f;
}

.sign-symbol--speed-limit span {
  font-size: 1.3rem;
  font-weight: var(--fw-badge);
  color: var(--black);
}

/* no parking */
.sign-symbol--no-parking {
  border-radius: 50%;
  background: #ffffff;
  border: 6px solid #d32f2f;
}

.sign-symbol--no-parking::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 4px;
  background: #d32f2f;
  transform: rotate(-45deg);
  border-radius: 999px;
}

.sign-symbol--no-parking span {
  font-size: 1.9rem;
  font-weight: var(--fw-badge);
  color: #1565c0;
}

/* one way */
.sign-symbol--one-way {
  width: 92px;
  height: 56px;
  border-radius: 10px;
  background: #1565c0;
}

.sign-symbol--one-way span {
  color: #ffffff;
  font-size: 2rem;
  font-weight: var(--fw-number);
}

/* warning triangle generic */
.sign-symbol--triangle {
  clip-path: polygon(50% 6%, 4% 92%, 96% 92%);
  background: #ffffff;
  border: 5px solid #d32f2f;
  display: grid;
  place-items: center;
}

.sign-symbol--triangle span {
  font-size: 1.5rem;
  color: var(--black);
  transform: translateY(8px);
}

/* info signs */
.sign-symbol--info-square {
  border-radius: 12px;
  background: #1565c0;
  border: 4px solid rgba(255, 255, 255, 0.18);
}

.sign-symbol--info-square span {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: var(--fw-badge);
}

.sign-symbol--info-arrow {
  width: 96px;
  height: 56px;
  border-radius: 10px;
  background: #1e8e3e;
}

.sign-symbol--info-arrow span {
  color: #ffffff;
  font-size: 2rem;
  font-weight: var(--fw-number);
}

.sign-label {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  line-height: 1.45;
  color: var(--black);
  max-width: 14ch;
}

.sign-label--inv {
  color: var(--white);
}

@media (max-width: 1200px) {
  .traffic-signs-v2__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .traffic-signs-v2__group-head {
    flex-direction: column;
    margin-bottom: var(--space-4);
  }

  .traffic-signs-v2__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
  }

  .sign-card {
    min-height: 155px;
    padding: var(--space-3);
  }

  .sign-symbol {
    width: 74px;
    height: 74px;
  }

  .sign-symbol--one-way,
  .sign-symbol--info-arrow {
    width: 84px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .traffic-signs-v2__group {
    border-radius: 18px;
    padding: var(--space-4);
  }

  .traffic-signs-v2__grid {
    grid-template-columns: 1fr 1fr;
  }

  .sign-label {
    font-size: 0.82rem;
  }
}

/* ============================================================
ROAD MARKINGS & SIGNAL MEANINGS
============================================================ */

.road-markings {
  background: var(--grey-50);
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.road-markings__header {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.road-markings__layout {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: var(--space-5);
  align-items: start;
}

.road-markings__panel {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: clamp(1.25rem, 2vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.road-markings__panel--dark {
  background: var(--black);
  border-color: var(--grey-800);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.20);
}

.road-markings__panel-head {
  margin-bottom: var(--space-5);
}

.road-markings__panel-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 0.8vw, 2rem);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--black);
}

.road-markings__panel-title--inv {
  color: var(--white);
}

.road-markings__panel-desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: var(--lh-relaxed);
  color: var(--grey-600);
  max-width: 56ch;
}

.road-markings__panel-desc--inv {
  color: rgba(255, 255, 255, 0.68);
}

.road-markings__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.marking-card {
  background: var(--grey-50);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 220px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.marking-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.marking-visual {
  position: relative;
  height: 96px;
  border-radius: 14px;
  background: linear-gradient(180deg, #3b3b3b 0%, #232323 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marking-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--black);
}

.marking-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: var(--lh-relaxed);
  color: var(--grey-600);
  max-width: 100%;
}

/* stop line */
.road-lane--vertical {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.16) 49%, rgba(255,255,255,0.16) 51%, transparent 51%);
}

.stop-line-bar {
  width: 78%;
  height: 8px;
  background: #ffffff;
  border-radius: 999px;
  position: relative;
  top: 16px;
}

/* zebra */
.marking-visual--zebra {
  gap: 7px;
}

.zebra-band {
  width: 14px;
  height: 72px;
  background: #ffffff;
  border-radius: 4px;
  transform: skewX(-16deg);
}

/* broken line */
.dash-line {
  width: 80%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #ffffff 0 22px,
    transparent 22px 38px
  );
  border-radius: 999px;
}

/* solid line */
.solid-line {
  width: 80%;
  height: 5px;
  background: #ffffff;
  border-radius: 999px;
}

/* double line */
.marking-visual--double-line {
  flex-direction: column;
  gap: 12px;
}

.double-line {
  width: 80%;
  height: 4px;
  background: #ffffff;
  border-radius: 999px;
}

/* edge line */
.marking-visual--edge-line {
  justify-content: flex-start;
}

.road-strip {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 78%, rgba(255,255,255,0.08) 78% 100%);
}

.edge-line {
  position: absolute;
  right: 16px;
  top: 12px;
  bottom: 12px;
  width: 5px;
  background: #ffffff;
  border-radius: 999px;
}

/* give way */
.marking-visual--give-way {
  gap: 14px;
}

.give-way-tri {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 22px solid #ffffff;
  opacity: 0.95;
}

/* yellow box */
.yellow-box {
  position: absolute;
  inset: 18px;
  border: 4px solid #f4c400;
}

.yellow-cross {
  position: absolute;
  width: 72px;
  height: 4px;
  background: #f4c400;
  border-radius: 999px;
}

.yellow-cross--one {
  transform: rotate(45deg);
}

.yellow-cross--two {
  transform: rotate(-45deg);
}

/* signals */
.signal-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.signal-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.signal-card--flash {
  align-items: flex-start;
}

.signal-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.signal-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: var(--white);
  line-height: var(--lh-heading);
}

.signal-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.7);
  max-width: 100%;
}

.signal-light {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,0.08), 0 8px 20px rgba(0,0,0,0.18);
}

.signal-light--red {
  background: radial-gradient(circle at 35% 35%, #ff8686 0%, #d62828 55%, #9d1010 100%);
}

.signal-light--amber {
  background: radial-gradient(circle at 35% 35%, #ffe08a 0%, #ffb300 55%, #d18700 100%);
}

.signal-light--green {
  background: radial-gradient(circle at 35% 35%, #8ef3aa 0%, #1faa59 55%, #13753b 100%);
}

.signal-flash-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.signal-light--flash-red {
  background: radial-gradient(circle at 35% 35%, #ff8686 0%, #d62828 55%, #9d1010 100%);
  opacity: 0.75;
}

.signal-light--flash-amber {
  background: radial-gradient(circle at 35% 35%, #ffe08a 0%, #ffb300 55%, #d18700 100%);
  opacity: 0.78;
}

.signal-tip {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: rgba(254, 225, 0, 0.10);
  border: 1px solid rgba(254, 225, 0, 0.18);
  border-radius: 16px;
}

.signal-tip__label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--yellow);
}

.signal-tip__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1024px) {
  .road-markings__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .road-markings__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .marking-card {
    min-height: auto;
  }

  .road-markings__panel,
  .road-markings__panel--dark {
    border-radius: 18px;
    padding: var(--space-4);
  }

  .signal-card {
    align-items: flex-start;
  }
}


/* ============================================================
BASIC DRIVING RULES IN INDIA
============================================================ */

.driving-rules {
  background: var(--white);
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.driving-rules__header {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.driving-rules__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* RULES GRID — 4 col */
.driving-rules__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.rule-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  overflow: hidden;
  min-height: 240px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.rule-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rule-card--yellow {
  background: var(--yellow);
  border-color: var(--yellow);
}

.rule-card--dark {
  background: var(--black);
  border-color: var(--grey-800);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.rule-card__num {
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: var(--fw-number);
  line-height: 1;
  color: rgba(0, 0, 0, 0.08);
  letter-spacing: -0.02em;
  user-select: none;
}

.rule-card__num--inv {
  color: rgba(255, 255, 255, 0.08);
}

.rule-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.08);
  color: var(--black);
}

.rule-card--yellow .rule-card__icon {
  background: rgba(0, 0, 0, 0.12);
  color: var(--black);
}

.rule-card__icon--soft {
  background: var(--yellow-light);
  color: var(--yellow-nav);
  border: 1px solid var(--yellow-border);
}

.rule-card__icon--dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
}

.rule-card__icon svg {
  width: 22px;
  height: 22px;
}

.rule-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 0.9rem + 0.55vw, 1.5rem);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--black);
  letter-spacing: var(--ls-normal);
}

.rule-card--yellow .rule-card__title {
  color: var(--black);
}

.rule-card__title--inv {
  color: var(--white);
}

.rule-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: var(--lh-relaxed);
  color: var(--grey-600);
  flex: 1;
}

.rule-card--yellow .rule-card__desc {
  color: rgba(0, 0, 0, 0.7);
}

.rule-card__desc--inv {
  color: rgba(255, 255, 255, 0.72);
}

.rule-card__tag {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--grey-500);
}

.rule-card--yellow .rule-card__tag {
  color: rgba(0, 0, 0, 0.56);
}

.rule-card__tag--yellow {
  color: var(--yellow) !important;
}

/* FEATURE ROW */
.driving-rules__feature-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-5);
  align-items: stretch;
}

.driving-rules__feature {
  border-radius: 24px;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.driving-rules__feature--grey {
  background: var(--grey-50);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.driving-rules__feature--black {
  background: var(--black);
  border: 1px solid var(--grey-800);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.driving-rules__feature-top {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.driving-rules__feature-badge {
  display: inline-flex;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.06);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--grey-700);
}

.driving-rules__feature-badge--yellow {
  background: rgba(254, 225, 0, 0.12);
  border: 1px solid rgba(254, 225, 0, 0.24);
  color: var(--yellow);
}

.driving-rules__feature-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 0.8vw, 2rem);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--black);
  max-width: 26ch;
}

.driving-rules__feature-title--inv {
  color: var(--white);
}

.driving-rules__feature-desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: var(--lh-relaxed);
  color: var(--grey-600);
  max-width: 58ch;
}

.driving-rules__checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: 0;
  margin: 0;
  list-style: none;
}

.driving-rules__checklist li {
  position: relative;
  padding-left: 1.25rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  color: var(--grey-700);
  line-height: 1.55;
}

.driving-rules__checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(254, 225, 0, 0.18);
}

/* PENALTY TABLE */
.penalty-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-2);
}

.penalty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) 0;
}

.penalty-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  color: rgba(255, 255, 255, 0.78);
}

.penalty-amount {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.9rem + 0.5vw, 1.5rem);
  font-weight: var(--fw-number);
  color: var(--yellow);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.penalty-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .driving-rules__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .driving-rules__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .driving-rules__feature-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .driving-rules__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .rule-card {
    min-height: auto;
    border-radius: 18px;
    padding: var(--space-4);
  }

  .driving-rules__feature {
    border-radius: 18px;
    padding: var(--space-4);
  }
}

/* ============================================================
SAFE DRIVING TIPS & BEST PRACTICES
============================================================ */

.safe-driving {
  background: var(--grey-50);
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.safe-driving__header {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.safe-driving__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.safe-tip-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 230px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.safe-tip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.safe-tip-card--yellow {
  background: var(--yellow);
  border-color: var(--yellow);
}

.safe-tip-card--dark {
  background: var(--black);
  border-color: var(--grey-800);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.20);
}

.safe-tip-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
  color: var(--black);
  flex-shrink: 0;
}

.safe-tip-card__icon--soft {
  background: var(--yellow-light);
  color: var(--yellow-nav);
  border: 1px solid var(--yellow-border);
}

.safe-tip-card__icon--dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
}

.safe-tip-card__icon svg {
  width: 24px;
  height: 24px;
}

.safe-tip-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 0.95rem + 0.55vw, 1.55rem);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--black);
}

.safe-tip-card__title--inv {
  color: var(--white);
}

.safe-tip-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: var(--lh-relaxed);
  color: var(--grey-600);
  flex: 1;
}

.safe-tip-card__desc--inv {
  color: rgba(255, 255, 255, 0.72);
}

.safe-tip-card__tag {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--grey-500);
}

.safe-tip-card--yellow .safe-tip-card__tag {
  color: rgba(0, 0, 0, 0.58);
}

.safe-tip-card__tag--yellow {
  color: var(--yellow);
}

/* Feature row */
.safe-driving__feature-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-5);
  align-items: stretch;
}

.safe-driving__feature {
  border-radius: 24px;
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.safe-driving__feature--grey {
  background: var(--white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.safe-driving__feature--black {
  background: var(--black);
  border: 1px solid var(--grey-800);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.safe-driving__feature-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.06);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--grey-700);
}

.safe-driving__feature-badge--yellow {
  background: rgba(254, 225, 0, 0.12);
  border: 1px solid rgba(254, 225, 0, 0.24);
  color: var(--yellow);
}

.safe-driving__feature-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 1.15rem + 0.85vw, 2.1rem);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--black);
  max-width: 24ch;
}

.safe-driving__feature-title--inv {
  color: var(--white);
}

.safe-driving__feature-desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: var(--lh-relaxed);
  color: var(--grey-600);
  max-width: 56ch;
}

.safe-driving__feature-desc--inv {
  color: rgba(255, 255, 255, 0.72);
}

.safe-driving__checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: 0;
  margin: 0;
  list-style: none;
}

.safe-driving__checklist li {
  position: relative;
  padding-left: 1.35rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: 1.6;
  color: var(--grey-700);
}

.safe-driving__checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(254, 225, 0, 0.18);
}

.safe-driving__stat-box {
  margin-top: auto;
  padding: 1.4rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.safe-driving__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 2rem + 1.6vw, 4rem);
  font-weight: var(--fw-number);
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -0.02em;
}

.safe-driving__stat-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  max-width: 26ch;
}

@media (max-width: 1100px) {
  .safe-driving__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .safe-driving__feature-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .safe-driving__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .safe-tip-card {
    min-height: auto;
    padding: var(--space-4);
    border-radius: 18px;
  }

  .safe-driving__feature {
    padding: var(--space-4);
    border-radius: 18px;
  }
}


/* ============================================================
COMMON DRIVING MISTAKES TO AVOID
============================================================ */

.driving-mistakes {
  background: var(--white);
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.driving-mistakes__header {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.driving-mistakes__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.mistake-card {
  background: var(--grey-50);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 220px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.mistake-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mistake-card--yellow {
  background: var(--yellow);
  border-color: var(--yellow);
}

.mistake-card--dark {
  background: var(--black);
  border-color: var(--grey-800);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.mistake-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
  color: var(--black);
  flex-shrink: 0;
}

.mistake-card__icon--soft {
  background: var(--yellow-light);
  color: var(--yellow-nav);
  border: 1px solid var(--yellow-border);
}

.mistake-card__icon--dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
}

.mistake-card__icon svg {
  width: 24px;
  height: 24px;
}

.mistake-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 0.92rem + 0.55vw, 1.5rem);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--black);
}

.mistake-card__title--inv {
  color: var(--white);
}

.mistake-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: var(--lh-relaxed);
  color: var(--grey-600);
  flex: 1;
}

.mistake-card__desc--inv {
  color: rgba(255, 255, 255, 0.72);
}

.mistake-card__tag {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--grey-500);
}

.mistake-card--yellow .mistake-card__tag {
  color: rgba(0, 0, 0, 0.58);
}

.mistake-card__tag--yellow {
  color: var(--yellow);
}

/* Feature row */
.driving-mistakes__feature-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-5);
  align-items: stretch;
}

.driving-mistakes__feature {
  border-radius: 24px;
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.driving-mistakes__feature--grey {
  background: var(--grey-50);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.driving-mistakes__feature--black {
  background: var(--black);
  border: 1px solid var(--grey-800);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.driving-mistakes__feature-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.06);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--grey-700);
}

.driving-mistakes__feature-badge--yellow {
  background: rgba(254, 225, 0, 0.12);
  border: 1px solid rgba(254, 225, 0, 0.24);
  color: var(--yellow);
}

.driving-mistakes__feature-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 1.15rem + 0.85vw, 2.1rem);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  color: var(--black);
  max-width: 24ch;
}

.driving-mistakes__feature-title--inv {
  color: var(--white);
}

.driving-mistakes__feature-desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: var(--lh-relaxed);
  color: var(--grey-600);
  max-width: 56ch;
}

.driving-mistakes__feature-desc--inv {
  color: rgba(255, 255, 255, 0.72);
}

.driving-mistakes__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: 0;
  margin: 0;
  list-style: none;
}

.driving-mistakes__list li {
  position: relative;
  padding-left: 1.35rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: 1.6;
  color: var(--grey-700);
}

.driving-mistakes__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(254, 225, 0, 0.18);
}

.driving-mistakes__quote-box {
  margin-top: auto;
  padding: 1.35rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.driving-mistakes__quote-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: var(--fw-number);
  flex-shrink: 0;
}

.driving-mistakes__quote-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1200px) {
  .driving-mistakes__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .driving-mistakes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .driving-mistakes__feature-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .driving-mistakes__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .mistake-card {
    min-height: auto;
    padding: var(--space-4);
    border-radius: 18px;
  }

  .driving-mistakes__feature {
    border-radius: 18px;
    padding: var(--space-4);
  }
}

/* ============================================================
   FLOATING ACTION BUTTONS
   WhatsApp (bottom-left) + Back to Top (bottom-right)
============================================================ */

/* Shared base */
.fab-whatsapp,
.fab-backtotop {
  position: fixed;
  bottom: 1.5rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 220ms ease;
}

/* ---- WhatsApp ---- */
.fab-whatsapp {
  left: 1.5rem;
  background: #25D366;
  color: #ffffff;
}

.fab-whatsapp svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.fab-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.fab-whatsapp:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.30);
}

/* Tooltip */
.fab-tooltip {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: #111111;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: var(--fw-strong);
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.fab-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: #111111;
}

.fab-whatsapp:hover .fab-tooltip {
  opacity: 1;
}

/* ---- Back to Top ---- */
.fab-backtotop {
  right: 1.5rem;
  background: var(--yellow);
  color: var(--black);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.fab-backtotop svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.fab-backtotop.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fab-backtotop:hover {
  background: var(--yellow-hover);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px var(--yellow-shadow);
}

.fab-backtotop:active {
  background: var(--yellow-active);
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px var(--yellow-glow);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .fab-whatsapp,
  .fab-backtotop {
    bottom: 1.25rem;
    width: 48px;
    height: 48px;
  }

  .fab-whatsapp {
    left: 1.25rem;
  }

  .fab-backtotop {
    right: 1.25rem;
  }

  .fab-whatsapp svg {
    width: 23px;
    height: 23px;
  }

  .fab-backtotop svg {
    width: 18px;
    height: 18px;
  }

  .fab-tooltip {
    display: none;
  }
}


/* ═══════════════════════════════════════════
   FOOTER WITH FLOATING CTA
════════════════════════════════════════════ */
.site-footer {
  position: relative;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  z-index: 1;
}

/* floating CTA */
.footer-cta-wrap {
  position: relative;
  z-index: 5;
  margin-bottom: -95px;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(1.25rem, 2.4vw, 2.5rem);
  align-items: center;
  background: #fee100;
  border-radius: 22px;
  padding: 1.6rem 2rem;
  box-shadow:
    0 20px 55px rgba(254, 225, 0, 0.26),
    0 12px 30px rgba(0, 0, 0, 0.12);
}

.footer-cta-left {
  min-width: 0;
}

.footer-cta-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.48);
}

.footer-cta-title {
  margin: 0;
  font-size: clamp(1.7rem, 1.1rem + 1.5vw, 2.45rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #111111;
}

.footer-cta-text {
  margin: 0.9rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.60);
  max-width: 60ch;
}

.footer-cta-right {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-cta-actions .btn {
  min-height: 52px;
  padding: 0 1.25rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.28s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, box-shadow, background-color, border-color, color;
}

.footer-cta-actions .btn-primary {
  background: #111111;
  color: #ffffff;
  border: 2px solid #111111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.footer-cta-actions .btn-primary:hover {
  background: #1d1d1d;
  border-color: #1d1d1d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.footer-cta-phone {
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.footer-cta-phone:hover {
  background: #ffffff;
  color: #111111;
  border-color: rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.footer-cta-btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* footer body */
.site-footer-main {
  position: relative;
  background: #050505;
  padding-top: clamp(8rem, 11vw, 10rem);
  padding-bottom: 1.4rem;
  overflow: hidden;
}

.site-footer-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(254, 225, 0, 0.18), transparent 35%);
  pointer-events: none;
}

.site-footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.72fr 1fr;
  gap: clamp(1.8rem, 3vw, 3.4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-title {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 1.2rem + 0.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.footer-brand-desc {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.58);
  max-width: 34ch;
}

.footer-col-title {
  position: relative;
  margin: 0 0 1.35rem;
  padding-bottom: 0.6rem;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fee100;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: #fee100;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.footer-links a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.45;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #fee100;
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.28s ease;
}

.footer-socials a:hover {
  background: #fee100;
  border-color: #fee100;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(254, 225, 0, 0.20);
}

.footer-socials a i {
  font-size: 17px;
  line-height: 1;
}

.footer-contact-list {
  display: grid;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(254, 225, 0, 0.07);
  border: 1px solid rgba(254, 225, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fee100;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact-item small {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.55;
}

.footer-contact-item a:hover {
  color: #fee100;
}

.site-footer-bottom {
  position: relative;
  z-index: 1;
  padding-top: 1.8rem;
  margin-top: 0.35rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-bottom-text {
  margin: 0;
  padding-inline: 1rem;
  max-width: 900px;
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.42);
}

.footer-bottom-text a {
  color: #fee100;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.footer-bottom-text a:hover {
  color: #fff06a;
}
/* responsive */
@media (max-width: 1100px) {
  .footer-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-cta-title,
  .footer-cta-text {
    max-width: 100%;
  }

  .footer-cta-right,
  .footer-cta-actions {
    justify-content: center;
  }

  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-cta-wrap {
    margin-bottom: -68px;
  }

  .footer-cta {
    border-radius: 18px;
    padding: 1.25rem;
  }

  .footer-cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .footer-cta-actions .btn {
    width: 100%;
  }

  .site-footer-main {
    padding-top: 7.6rem;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-cta-wrap {
    margin-bottom: -58px;
  }

  .footer-cta-title {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .footer-cta-text,
  .footer-links a,
  .footer-contact-item a,
  .footer-contact-item span,
  .footer-brand-desc {
    font-size: 0.96rem;
  }

  .footer-col-title {
    font-size: 0.92rem;
  }

  .site-footer-main {
    padding-top: 7rem;
  }
}


@media (max-width: 768px) {
  .site-footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-text {
    font-size: 0.92rem;
  }
}