/* ============================================================
   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);
  }
}


/* ==========================================
   RTO HERO — IMAGE BASED
========================================== */
.rto-hero {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(254, 225, 0, 0.16), transparent 26%),
    linear-gradient(180deg, #fffef7 0%, #ffffff 72%);
  overflow: hidden;
}

.rto-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
}

.rto-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rto-hero-title {
  max-width: 20ch;
  margin-bottom: var(--space-4);
}

.rto-hero-desc {
  max-width: 58ch;
  margin-bottom: var(--space-6);
}

.rto-hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.rto-hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.rto-hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-xs);
  font-weight: var(--fw-heading);
  color: var(--grey-600);
  letter-spacing: var(--ls-wide);
}

.rto-hero-trust-item i,
.rto-hero-trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--yellow-nav);
  flex-shrink: 0;
}

/* right visual */
.rto-hero-visual {
  position: relative;
  min-height: 520px;
}

.rto-hero-img-main {
  position: relative;
  z-index: 2;
  width: 80%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}

.rto-hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rto-hero-img-secondary {
  position: absolute;
  right: 0;
  bottom: 42px;
  z-index: 3;
  width: 48%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.16),
    0 0 0 4px var(--white);
}

.rto-hero-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rto-hero-badge {
  position: absolute;
  top: 24px;
  right: 14px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1.1rem;
  background: var(--yellow);
  border-radius: 14px;
  box-shadow:
    0 8px 24px rgba(254, 225, 0, 0.34),
    0 2px 10px rgba(0, 0, 0, 0.08);
}

.rto-hero-badge-num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.2rem + 1vw, 2.3rem);
  font-weight: var(--fw-number);
  line-height: 1;
  color: var(--black);
  letter-spacing: var(--ls-tight);
}

.rto-hero-badge-text {
  font-size: 0.72rem;
  font-weight: var(--fw-strong);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: rgba(0, 0, 0, 0.62);
}

.rto-hero-deco {
  position: absolute;
  left: -14px;
  top: 68px;
  width: 6px;
  height: 64px;
  border-radius: 999px;
  background: var(--yellow);
  opacity: 0.9;
  z-index: 1;
}

/* responsive */
@media (max-width: 1024px) {
  .rto-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .rto-hero-visual {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }

  .rto-hero-title,
  .rto-hero-desc {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .rto-hero {
    text-align: center;
  }

  .rto-hero-content {
    align-items: center;
  }

  .rto-hero-ctas,
  .rto-hero-trust {
    justify-content: center;
  }

  .rto-hero-visual {
    min-height: 360px;
  }

  .rto-hero-img-main {
    width: 78%;
  }

  .rto-hero-img-secondary {
    width: 46%;
    bottom: 14px;
  }

  .rto-hero-badge {
    top: 10px;
    right: 8px;
    padding: 0.7rem 0.9rem;
  }

  .rto-hero-deco {
    display: none;
  }
}

@media (max-width: 480px) {
  .rto-hero-ctas {
    width: 100%;
    flex-direction: column;
  }

  .rto-hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .rto-hero-visual {
    min-height: 300px;
  }

  .rto-hero-img-main {
    width: 82%;
  }

  .rto-hero-img-secondary {
    width: 50%;
    right: 0;
    bottom: 8px;
  }

  .rto-hero-trust {
    gap: 0.85rem;
  }
}


/* ==========================================
   RTO SERVICES GRID
========================================== */
.rto-services {
  background: var(--white);
}

.rto-services-header {
  max-width: 680px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.rto-srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: stretch;
}

.rto-srv-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  height: 100%;
}

.rto-srv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.rto-srv-card--featured {
  border: 2px solid var(--yellow);
  background: var(--yellow-light);
}

.rto-srv-card--featured:hover {
  box-shadow: 0 8px 30px var(--yellow-glow);
}

.rto-srv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.rto-srv-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--yellow-light);
  border: 1.5px solid var(--yellow-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rto-srv-icon-wrap i,
.rto-srv-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--yellow-nav);
}

.rto-srv-card--featured .rto-srv-icon-wrap {
  background: var(--yellow);
  border-color: var(--yellow-hover);
}

.rto-srv-card--featured .rto-srv-icon-wrap i,
.rto-srv-card--featured .rto-srv-icon-wrap svg {
  color: var(--black);
}

.rto-srv-badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--fw-badge);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: 3px var(--space-3);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.rto-srv-badge--yellow {
  background: var(--yellow);
  color: var(--black);
  border: 1px solid var(--yellow-hover);
}

.rto-srv-badge--grey {
  background: var(--grey-100);
  color: var(--grey-600);
  border: 1px solid var(--color-border);
}

.rto-srv-badge--dark {
  background: var(--black);
  color: var(--yellow);
}

.rto-srv-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.rto-srv-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-normal);
  color: var(--black);
  margin: 0;
}

.rto-srv-desc {
  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%;
  margin: 0;
}

.rto-srv-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.rto-srv-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  color: var(--grey-700);
  line-height: 1.5;
}

.rto-srv-list li i,
.rto-srv-list li svg {
  width: 15px;
  height: 15px;
  color: var(--yellow-nav);
  flex-shrink: 0;
  margin-top: 2px;
}

.rto-srv-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-wide);
  text-decoration: none;
  margin-top: auto;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease), color var(--ease);
}

.rto-srv-cta i,
.rto-srv-cta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform var(--ease);
}

.rto-srv-cta:hover i,
.rto-srv-cta:hover svg {
  transform: translateX(4px);
}

.rto-srv-cta--primary {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
  box-shadow: 0 4px 16px var(--yellow-glow);
}

.rto-srv-cta--primary:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  box-shadow: 0 6px 22px var(--yellow-shadow);
  transform: translateY(-1px);
}

.rto-srv-cta--outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--color-border);
}

.rto-srv-cta--outline:hover {
  background: var(--yellow-light);
  border-color: var(--yellow);
  color: var(--yellow-nav);
}

.rto-srv-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: var(--space-5) var(--space-8);
  background: var(--grey-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}

.rto-srv-bottom-text {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--grey-700);
}

.rto-srv-bottom-text i,
.rto-srv-bottom-text svg {
  width: 20px;
  height: 20px;
  color: var(--yellow-nav);
  flex-shrink: 0;
}

/* responsive */
@media (max-width: 1024px) {
  .rto-srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rto-srv-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .rto-srv-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .rto-srv-card--featured {
    grid-column: span 1;
  }

  .rto-srv-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-4) var(--space-5);
  }

  .rto-srv-bottom .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================
   RTO HOW IT WORKS SECTION
   Standalone CSS for this section only
========================================== */
.rto-hiw {
  background: var(--grey-50);
}

.rto-hiw .hiw-header {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.rto-hiw .hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  position: relative;
}

.rto-hiw .hiw-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  min-width: 0;
}

.rto-hiw .hiw-step-top {
  display: flex;
  align-items: center;
  gap: 0;
}

.rto-hiw .hiw-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--fw-number);
  color: var(--grey-400);
  letter-spacing: var(--ls-tight);
  line-height: 1;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}

.rto-hiw .hiw-step-num--yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 16px var(--yellow-glow);
}

.rto-hiw .hiw-connector {
  height: 2px;
  flex: 1;
  margin-left: var(--space-3);
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(254, 225, 0, 0.95) 0%,
      rgba(254, 225, 0, 0.35) 55%,
      rgba(0, 0, 0, 0.08) 100%
    );
}

.rto-hiw .hiw-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.rto-hiw .hiw-icon-wrap i,
.rto-hiw .hiw-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--yellow-nav);
  flex-shrink: 0;
}

.rto-hiw .hiw-icon-wrap--yellow {
  background: var(--yellow);
  border-color: var(--yellow-hover);
  box-shadow: 0 6px 18px var(--yellow-glow);
}

.rto-hiw .hiw-icon-wrap--yellow i,
.rto-hiw .hiw-icon-wrap--yellow svg {
  color: var(--black);
}

.rto-hiw .hiw-step-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.rto-hiw .hiw-step-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: var(--black);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-normal);
  margin: 0;
}

.rto-hiw .hiw-step-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  color: var(--grey-600);
  line-height: var(--lh-relaxed);
  max-width: 100%;
  margin: 0;
}

.rto-hiw .hiw-step-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  margin-top: auto;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-heading);
  color: var(--grey-500);
  letter-spacing: var(--ls-wide);
}

.rto-hiw .hiw-step-tag i,
.rto-hiw .hiw-step-tag svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--grey-400);
}

.rto-hiw .hiw-step-tag--yellow {
  color: var(--yellow-nav);
  font-weight: var(--fw-strong);
}

.rto-hiw .hiw-step-tag--yellow i,
.rto-hiw .hiw-step-tag--yellow svg {
  color: var(--yellow-nav);
}

/* banner */
.rto-hiw .hiw-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: var(--space-6) var(--space-8);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}

.rto-hiw .hiw-banner-left {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex: 1;
  min-width: 240px;
}

.rto-hiw .hiw-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--yellow-glow);
}

.rto-hiw .hiw-banner-icon i,
.rto-hiw .hiw-banner-icon svg {
  width: 22px;
  height: 22px;
  color: var(--black);
}

.rto-hiw .hiw-banner-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.rto-hiw .hiw-banner-text strong {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: var(--white);
  line-height: 1.2;
  max-width: 22ch;
}

.rto-hiw .hiw-banner-text span {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 60ch;
}

.rto-hiw .hiw-banner-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* local button styling so section works independently */
.rto-hiw .hiw-banner-ctas .btn {
  display: inline-flex;
  align-items: center;
  justify-content: 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);
  text-decoration: none;
  white-space: nowrap;
  transition:
    color var(--ease),
    background var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    transform var(--ease);
}

.rto-hiw .hiw-banner-ctas .btn i,
.rto-hiw .hiw-banner-ctas .btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.rto-hiw .hiw-banner-ctas .btn-primary {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
  box-shadow: 0 2px 10px var(--yellow-glow);
}

.rto-hiw .hiw-banner-ctas .btn-primary:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  box-shadow: 0 4px 18px var(--yellow-shadow);
  transform: translateY(-1px);
}

.rto-hiw .hiw-banner-ctas .btn-primary:active {
  background: var(--yellow-active);
  transform: translateY(0);
}

.rto-hiw .hiw-banner-ctas .btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}

.rto-hiw .hiw-banner-ctas .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  transform: translateY(-1px);
}

/* hover polish */
.rto-hiw .hiw-step:hover .hiw-icon-wrap {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.rto-hiw .hiw-step:hover .hiw-step-num {
  border-color: var(--yellow-border);
}

/* responsive */
@media (max-width: 1024px) {
  .rto-hiw .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6) var(--space-8);
  }

  .rto-hiw .hiw-step:nth-child(2) .hiw-connector,
  .rto-hiw .hiw-step:nth-child(4) .hiw-connector {
    display: none;
  }
}

@media (max-width: 640px) {
  .rto-hiw .hiw-steps {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .rto-hiw .hiw-connector {
    display: none;
  }

  .rto-hiw .hiw-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-5);
    gap: var(--space-4);
  }

  .rto-hiw .hiw-banner-left {
    align-items: flex-start;
  }

  .rto-hiw .hiw-banner-ctas {
    width: 100%;
    flex-direction: column;
  }

  .rto-hiw .hiw-banner-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================
   RTO FAQ SECTION
   Standalone CSS for this section only
========================================== */
.rto-faq {
  background: var(--white);
}

.rto-faq .rto-faq-head {
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.rto-faq .rto-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  align-items: start;
}

.rto-faq .rto-faq-col {
  display: grid;
  gap: var(--space-4);
}

.rto-faq .rto-faq-item {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition:
    box-shadow var(--ease),
    border-color var(--ease),
    transform var(--ease);
}

.rto-faq .rto-faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.rto-faq .rto-faq-item.active {
  border-color: var(--yellow-border);
  box-shadow: 0 6px 24px rgba(254, 225, 0, 0.10);
}

.rto-faq .rto-faq-question {
  width: 100%;
  padding: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
}

.rto-faq .rto-faq-question > span:first-child {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-strong);
  color: var(--black);
  line-height: 1.5;
  max-width: 34ch;
}

.rto-faq .rto-faq-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grey-100);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background var(--ease),
    border-color var(--ease),
    transform var(--ease);
}

.rto-faq .rto-faq-icon i,
.rto-faq .rto-faq-icon svg {
  width: 17px;
  height: 17px;
  color: var(--grey-600);
  transition:
    color var(--ease),
    transform var(--ease);
}

.rto-faq .rto-faq-item.active .rto-faq-icon {
  background: var(--yellow);
  border-color: var(--yellow);
}

.rto-faq .rto-faq-item.active .rto-faq-icon i,
.rto-faq .rto-faq-item.active .rto-faq-icon svg {
  color: var(--black);
  transform: rotate(45deg);
}

.rto-faq .rto-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.rto-faq .rto-faq-answer p {
  padding: 0 var(--space-5) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  color: var(--grey-600);
  line-height: var(--lh-relaxed);
  max-width: 100%;
  margin: 0;
}

/* optional subtle active body tint */
.rto-faq .rto-faq-item.active .rto-faq-answer p {
  color: var(--grey-700);
}

/* responsive */
@media (max-width: 900px) {
  .rto-faq .rto-faq-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 640px) {
  .rto-faq .rto-faq-question {
    padding: var(--space-4);
  }

  .rto-faq .rto-faq-answer p {
    padding: 0 var(--space-4) var(--space-4);
  }

  .rto-faq .rto-faq-question > span:first-child {
    font-size: var(--text-sm);
    max-width: 100%;
  }

  .rto-faq .rto-faq-icon {
    width: 34px;
    height: 34px;
  }
}

/* ==========================================
   RTO FINAL CTA WITH BACKGROUND IMAGE
========================================== */
.rto-final-cta {
  position: relative;
  overflow: hidden;
  background: #111111;
  text-align: center;
  isolation: isolate;
  padding-block: clamp(4rem, 8vw, 6rem);
}

.rto-final-cta__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/rto-services-banner.png");
  background-size: cover;
  background-position: center center;
  transform: scale(1.05);
}

.rto-final-cta__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.74) 0%,
      rgba(0, 0, 0, 0.82) 42%,
      rgba(0, 0, 0, 0.90) 100%
    );
}

.rto-final-cta__bg-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 34%, rgba(254, 225, 0, 0.14), transparent 42%);
  pointer-events: none;
}

.rto-final-cta__container {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.rto-final-cta__inner {
  max-width: 880px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.rto-final-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(254, 225, 0, 0.14);
  border: 1px solid rgba(254, 225, 0, 0.18);
  padding: 0.42rem 1rem;
  border-radius: 9999px;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fee100;
  backdrop-filter: blur(4px);
}

.rto-final-cta__badge svg {
  width: 14px;
  height: 14px;
  color: #fee100;
  flex-shrink: 0;
}

.rto-final-cta__title {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Black", sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.rto-final-cta__title .highlight {
  color: #fee100;
}

.rto-final-cta__desc {
  margin: 0;
  max-width: 62ch;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.08rem);
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.74);
}

.rto-final-cta__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
  padding: 1rem 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  backdrop-filter: blur(6px);
}

.rto-cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-width: 92px;
}

.rto-cta-stat__num {
  min-height: 1em;
  font-family: "Barlow Condensed", "Arial Black", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
  color: #fee100;
  letter-spacing: -0.02em;
}

.rto-cta-stat__label {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.60);
}

.rto-cta-stat__divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.14);
}

.rto-final-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.rto-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.7rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition:
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1),
    background 180ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms cubic-bezier(0.16, 1, 0.3, 1),
    color 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.rto-cta-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.rto-cta-btn--primary {
  background: #fee100;
  color: #111111;
  border: 2px solid #fee100;
  box-shadow: 0 4px 14px rgba(254, 225, 0, 0.32);
}

.rto-cta-btn--primary:hover {
  background: #fed800;
  border-color: #fed800;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(254, 225, 0, 0.42);
}

.rto-cta-btn--outline {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
}

.rto-cta-btn--outline:hover {
  background: rgba(254, 225, 0, 0.12);
  border-color: #fee100;
  color: #fee100;
  transform: translateY(-2px);
}

.rto-final-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.rto-final-cta__trust > span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
  white-space: nowrap;
}

.rto-final-cta__trust svg {
  width: 14px;
  height: 14px;
  color: #fee100;
  flex-shrink: 0;
}

/* responsive */
@media (max-width: 768px) {
  .rto-final-cta {
    padding-block: 3.5rem;
  }

  .rto-final-cta__title {
    max-width: 100%;
  }

  .rto-final-cta__stats {
    gap: 1rem;
    padding: 0.9rem 1rem;
  }

  .rto-cta-stat__divider {
    display: none;
  }

  .rto-final-cta__buttons {
    flex-direction: column;
    width: 100%;
  }

  .rto-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .rto-final-cta__trust {
    gap: 0.8rem;
  }

  .rto-final-cta__trust > span {
    white-space: normal;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .rto-final-cta__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    width: 100%;
  }

  .rto-cta-stat:last-child {
    grid-column: 1 / -1;
  }

  .rto-final-cta__badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.85rem;
  }

  .rto-final-cta__desc {
    font-size: 0.96rem;
  }
}

/* ============================================================
   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;
  }
}