/* ============================================================
   THE CAR CARE KSA — International Standard Formal Luxury Design System
   Formal Type System: Plus Jakarta Sans (Precision Automotive Engineering)
   Brand Palette: Deep Obsidian Navy + Imperial Gold Accent
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Core Backgrounds & Surfaces (Obsidian Navy Spectrum) */
  --color-bg-primary: #070B1E;
  /* Deepest obsidian navy — page canvas */
  --color-bg-secondary: #0D1433;
  /* Rich dark navy — section & base card */
  --color-bg-tertiary: #121C42;
  /* Elevated navy — sub-cards & headers */
  --color-bg-surface: rgba(13, 20, 51, 0.75);
  /* Translucent glass surface */
  --color-bg-elevated: #162250;
  /* Highlighted interactive surfaces */
  --color-bg-input: rgba(4, 7, 20, 0.85);

  /* Imperial Gold Accent Spectrum */
  --color-gold: #D4A017;
  /* Imperial Gold — primary accent */
  --color-gold-hover: #E5B32A;
  /* Brightened gold for hover states */
  --color-gold-light: #F3D47F;
  /* Pale champagne gold for text/badges */
  --color-gold-deep: #A97E0E;
  /* Deep burnished gold for borders/shadows */
  --color-gold-subtle: rgba(212, 160, 23, 0.14);
  /* Ambient gold tint */
  --color-gold-glow: rgba(212, 160, 23, 0.32);
  /* Glow shadow color */

  /* Neutral Typography & Contrast */
  --color-white: #FFFFFF;
  /* Headings, prominent text (100%) */
  --color-white-soft: rgba(245, 247, 250, 0.92);
  /* Body copy / secondary (WCAG AAA) */
  --color-muted: rgba(220, 226, 235, 0.65);
  /* Labels / subtle info */
  --color-dim: rgba(255, 255, 255, 0.35);
  /* Placeholders / dividers */

  /* Fuel-Type Accent Lines */
  --color-petrol: #FFB703;
  /* Petrol cars (Warm Amber) */
  --color-diesel: #E63946;
  /* Diesel cars (Crimson) */
  --color-ev: #3A86FF;
  /* Electric cars (Cobalt Blue) */

  /* Status Colors */
  --ok: #34D399;
  /* Success mint */
  --warn: #FBBF24;
  /* Warning amber */
  --bad: #F87171;
  /* Error red */

  /* Hairlines & Borders */
  --color-line: rgba(212, 160, 23, 0.28);
  /* Gold hairline */
  --color-line-soft: rgba(255, 255, 255, 0.12);
  /* Neutral soft hairline */
  --color-line-gold-strong: rgba(212, 160, 23, 0.55);
  --color-line-active: rgba(212, 160, 23, 0.85);

  /* Shadows & Depth */
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 14px 36px -10px rgba(0, 0, 0, 0.7);
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.9);
  --shadow-lift: 0 32px 70px -20px rgba(0, 0, 0, 0.98), 0 0 0 1px var(--color-line);
  --shadow-gold: 0 12px 36px -8px var(--color-gold-glow);

  /* Border Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Formal Typography: Plus Jakarta Sans */
  --display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Easing */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce-subtle: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Legacy Aliases */
  --ink: var(--color-bg-primary);
  --ink-2: var(--color-bg-secondary);
  --ink-3: var(--color-bg-tertiary);
  --ink-4: var(--color-bg-elevated);
  --line: var(--color-line);
  --line-soft: var(--color-line-soft);
  --fg: var(--color-white);
  --fg-muted: var(--color-white-soft);
  --gold: var(--color-gold);
  --gold-deep: var(--color-gold-deep);
  --gold-light: var(--color-gold-light);
  --gold-glow: var(--color-gold-glow);
}

/* ---------- 2. Base & Resets ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--color-bg-primary);
  color: var(--color-white);
  font-family: var(--body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease-smooth);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 3px;
}

/* ---------- 3. Layout & Global Typography ---------- */
.shell {
  width: min(1240px, 91vw);
  margin-inline: auto;
}

.display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
  color: var(--color-white);
}

h1.display {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h2.display {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h3.display,
.h3-display {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 1rem;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--r-full);
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid var(--color-line);
  color: var(--color-gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 10px var(--color-gold);
  animation: pulseDot 2.4s ease-in-out infinite;
}

@keyframes pulseDot {

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

  50% {
    opacity: 0.45;
    transform: scale(0.8);
  }
}

.muted {
  color: var(--color-white-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.section {
  padding: clamp(5rem, 8.5vw, 8.5rem) 0;
  position: relative;
}

.band {
  background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
  border-top: 1px solid var(--color-line-soft);
  border-bottom: 1px solid var(--color-line-soft);
}

.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-line-gold-strong) 50%, transparent 100%);
  opacity: 0.75;
}

/* ---------- 4. Scroll Reveal Animations ---------- */
.reveal {
  transition: opacity 0.85s var(--ease-smooth), transform 0.85s var(--ease-smooth);
}

.js-modules .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js-modules .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-modules .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- 5. Button Component System ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.75rem;
  min-height: 48px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
  user-select: none;
  transition: transform 0.28s var(--ease-smooth),
    box-shadow 0.28s var(--ease-smooth),
    background 0.28s var(--ease-smooth),
    border-color 0.28s var(--ease-smooth),
    color 0.28s var(--ease-smooth);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* Primary Button: Imperial Gold */
.btn-gold {
  background: linear-gradient(135deg, #E0AC20 0%, #C69412 100%);
  color: #060A1D;
  font-weight: 700;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px -6px var(--color-gold-glow);
}

.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, transparent 100%);
  border-radius: var(--r-full) var(--r-full) 0 0;
  pointer-events: none;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ECBA2F 0%, #D8A418 100%);
  box-shadow: 0 12px 32px -6px rgba(212, 160, 23, 0.45), 0 0 0 1px var(--color-gold-light);
  color: #040714;
}

/* Secondary Button: Clean Hairline Outline */
.btn-outline {
  background: rgba(13, 20, 51, 0.5);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  background: rgba(212, 160, 23, 0.12);
  box-shadow: 0 8px 26px -8px var(--color-gold-glow);
}

/* Tertiary Ghost Button */
.btn-ghost {
  background: transparent;
  border-color: var(--color-line-soft);
  color: var(--color-white-soft);
  padding: 0.62rem 1.25rem;
  min-height: 40px;
  font-size: 0.85rem;
}

.btn-ghost:hover {
  border-color: var(--color-line);
  color: var(--color-gold-light);
  background: rgba(212, 160, 23, 0.08);
}

.btn-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  transition: transform 0.25s var(--ease-smooth);
}

.btn:hover .btn-icon {
  transform: translateX(2px);
}

.w-full {
  width: 100%;
}

/* ---------- 6. Header & Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 11, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  transition: all 0.35s var(--ease-smooth);
}

.site-header.stuck {
  background: rgba(7, 11, 30, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(212, 160, 23, 0.4);
  box-shadow: 0 12px 34px -10px rgba(0, 0, 0, 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
  transition: padding 0.35s var(--ease-smooth);
}

.site-header.stuck .header-inner {
  padding: 0.7rem 0;
}

/* Brand Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  height: 46px;
  max-height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s var(--ease-smooth), filter 0.3s var(--ease-smooth);
}

.brand:hover .brand-logo {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 14px var(--color-gold-glow));
}

.brand-fallback {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--color-white);
}

.brand-fallback em {
  color: var(--color-gold);
  font-style: normal;
}

/* Always-visible brand name text beside logo */
.brand-name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-white);
  white-space: nowrap;
  line-height: 1.1;
}

.brand-name em {
  color: var(--color-gold);
  font-style: normal;
  font-weight: 800;
}

/* Shrink brand text on small screens so it fits beside burger */
@media (max-width: 480px) {
  .brand-name {
    font-size: 0.85rem;
    letter-spacing: 0.02em;
  }
}

/* Tablet & Mobile Navigation Adjustments (max-width: 1080px) */
@media (max-width: 1080px) {
  .burger {
    display: flex !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-auth-desktop {
    display: none !important;
  }

  .nav-book-btn {
    display: inline-flex !important;
    padding: 0.42rem 0.85rem !important;
    font-size: 0.78rem !important;
    min-height: 34px !important;
  }
}

/* Desktop Navigation (min-width: 1081px) */
@media (min-width: 1081px) {
  .site-header .shell {
    width: 96%;
    max-width: 1520px;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 0.75rem;
    width: 100%;
  }

  .brand {
    flex-shrink: 0;
    margin-right: 0.5rem;
    gap: 0.65rem;
  }

  .brand-logo {
    height: 38px;
    max-height: 38px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    margin: 0 0.5rem;
  }

  /* Hide mobile-only drawer elements on desktop */
  .nav-drawer-header,
  .drawer-bookings-banner,
  .nav-auth-mobile,
  .drawer-contact-bar,
  .nav-close,
  .nav .nav-chevron,
  .nav .nav-link-icon svg,
  .lang-toggle-mobile {
    display: none !important;
  }

  .nav-links-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
  }

  .nav-link-icon {
    display: inline-flex;
    align-items: center;
  }

  .nav a.nav-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.65rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(245, 247, 250, 0.88);
    letter-spacing: 0.01em;
    position: relative;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--r-full);
    white-space: nowrap !important;
    text-decoration: none;
    min-height: auto;
    width: auto;
    transition: all 0.25s var(--ease-smooth);
  }

  .nav a.nav-link-btn::after {
    display: none;
  }

  .nav a.nav-link-btn:hover {
    color: var(--color-gold-light);
    background: rgba(212, 160, 23, 0.12);
    border-color: rgba(212, 160, 23, 0.32);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px -4px rgba(212, 160, 23, 0.25);
  }

  .nav a.nav-link-btn.active {
    color: var(--color-gold-light);
    background: rgba(212, 160, 23, 0.18);
    border-color: var(--color-gold);
    font-weight: 700;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
    margin-left: 0.5rem;
  }

  .header-actions .lang-toggle {
    padding: 2px;
  }

  .header-actions .lang-opt {
    padding: 4px 10px;
    font-size: 0.74rem;
  }

  .nav-auth-desktop {
    display: inline-flex !important;
    padding: 0.42rem 0.85rem !important;
    font-size: 0.82rem !important;
    min-height: 36px !important;
  }

  .nav-book-btn {
    display: inline-flex !important;
    padding: 0.45rem 1.05rem !important;
    font-size: 0.84rem !important;
    font-weight: 700 !important;
    min-height: 36px !important;
  }

  .burger {
    display: none !important;
  }
}

.nav-bookings-btn {
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
  min-height: 40px;
  border-color: var(--color-line);
  color: var(--color-gold-light);
  background: rgba(212, 160, 23, 0.1);
}

.nav-bookings-btn:hover {
  background: rgba(212, 160, 23, 0.2);
  border-color: var(--color-gold);
  box-shadow: 0 0 16px var(--color-gold-glow);
}

.nav-book-btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  min-height: 40px;
}

/* Hamburger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-line-soft);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 10px;
  transition: background 0.25s var(--ease-smooth), border-color 0.25s;
}

.burger:hover {
  background: rgba(212, 160, 23, 0.12);
  border-color: var(--color-gold);
}

.burger span {
  width: 100%;
  height: 2px;
  background: var(--color-white);
  display: block;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-smooth), opacity 0.3s;
}

.nav-close {
  display: none;
}

/* ---------- 7. Cinematic Hero Section ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: flex;
  align-items: flex-end;
  padding-top: 130px;
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1552519507-da3b142c6e3d?auto=format&fit=crop&w=2000&q=80") center 35%/cover no-repeat;
  filter: brightness(1.05) saturate(0.9);
  transform: scale(1.04);
  animation: heroDrift 24s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroDrift {
  to {
    transform: scale(1.12) translate3d(-1.5%, -0.8%, 0);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 15% 30%, rgba(212, 160, 23, 0.12), transparent 70%),
    linear-gradient(90deg, rgba(7, 11, 30, 0.97) 0%, rgba(7, 11, 30, 0.82) 48%, rgba(7, 11, 30, 0.28) 100%),
    linear-gradient(0deg, var(--color-bg-primary) 0%, rgba(7, 11, 30, 0.4) 40%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero .display {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.hero .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.68;
  color: var(--color-white-soft);
  max-width: 60ch;
  margin: 1.5rem 0 2.4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-cta {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-bottom: 3.2rem;
}

/* Trust Strip */
.trust {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  padding: 1.2rem 1.6rem;
  border-radius: var(--r-lg);
  background: rgba(13, 20, 51, 0.55);
  border: 1px solid var(--color-line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.trust-val {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-gold-light);
  letter-spacing: -0.02em;
}

.trust-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
}

.trust-sep {
  width: 1px;
  height: 32px;
  background: var(--color-line);
}

.trust-stars {
  display: flex;
  gap: 2px;
  color: var(--color-gold);
}

.trust-stars svg {
  width: 15px;
  height: 15px;
}

/* ---------- 8. Section Headers ---------- */
.head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.head-note {
  max-width: 48ch;
  color: var(--color-white-soft);
  margin: 0;
  font-size: 1rem;
  line-height: 1.68;
}

.stars {
  color: var(--color-gold);
  letter-spacing: 0.2em;
}

/* ---------- 9. Services Section ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1100px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.svc {
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, var(--color-bg-tertiary) 0%, var(--color-bg-secondary) 100%);
  border: 1px solid var(--color-line-soft);
  box-shadow: var(--shadow);
  transition: transform 0.45s var(--ease-smooth),
    box-shadow 0.45s var(--ease-smooth),
    border-color 0.45s var(--ease-smooth);
}

.svc::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(800px 300px at 50% -20%, var(--color-gold-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
}

.svc:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift), 0 0 40px -15px var(--color-gold-glow);
  border-color: var(--color-line-gold-strong);
}

.svc:hover::before {
  opacity: 0.65;
}

.svc-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  z-index: 2;
  background: var(--color-bg-primary);
}

.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-smooth);
}

.svc:hover .svc-img {
  transform: scale(1.06);
}

.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 11, 30, 0.9) 100%);
  pointer-events: none;
}

.svc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.38rem 0.85rem;
  border-radius: var(--r-full);
  background: rgba(7, 11, 30, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-line);
  color: var(--color-gold-light);
  font-weight: 700;
}

.svc-body {
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  z-index: 2;
}

.svc h3 {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--color-white);
  line-height: 1.25;
}

.svc p {
  color: var(--color-white-soft);
  font-size: 0.95rem;
  line-height: 1.68;
  margin: 0;
  flex: 1;
}

.svc-footer {
  padding: 1.4rem 2rem;
  border-top: 1px solid var(--color-line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
  background: rgba(4, 7, 20, 0.35);
}

.svc .price {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
}

.svc .price b {
  display: block;
  font-family: var(--display);
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--color-gold-light);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 0 24px rgba(212, 160, 23, 0.25);
}

.svc .btn {
  white-space: nowrap;
  padding: 0.75rem 1.4rem;
  font-size: 0.85rem;
}

/* ---------- 10. Why Choose Us Section (Full Width 2x2 Grid — Spacious, Elegant & Unclipped) ---------- */
.why-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.why-card {
  padding: 2.6rem 2.4rem;
  border-radius: var(--r-xl);
  background: linear-gradient(165deg, #10193E 0%, #080D26 100%);
  border: 1px solid var(--color-line-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.38s var(--ease-smooth),
    border-color 0.38s var(--ease-smooth),
    box-shadow 0.38s var(--ease-smooth);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.38s var(--ease-smooth);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-lift), 0 0 32px -8px var(--color-gold-glow);
}

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

.why-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.why-card .why-ico {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid var(--color-line);
  color: var(--color-gold-light);
  transition: all 0.3s var(--ease-smooth);
}

.why-card .why-ico svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card:hover .why-ico {
  background: rgba(212, 160, 23, 0.25);
  border-color: var(--color-gold);
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 0 20px var(--color-gold-glow);
}

.why-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.95rem;
  border-radius: var(--r-full);
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid var(--color-line);
  color: var(--color-gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.why-card-title {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: var(--color-white);
  line-height: 1.25;
}

.why-card-text {
  margin: 0;
  color: var(--color-white-soft);
  font-size: 1.02rem;
  line-height: 1.72;
  flex: 1;
}

/* ---------- 11. How It Works (Process) ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 0;
  margin: 0;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-line-gold-strong) 0%, var(--color-line-soft) 50%, var(--color-line-gold-strong) 100%);
  opacity: 0.65;
}

.steps li {
  position: relative;
  padding-top: 0;
}

.step-n {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 24px -4px rgba(212, 160, 23, 0.35);
  margin-bottom: 1.2rem;
}

.steps h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 0.4rem;
  color: var(--color-white);
}

.steps p {
  margin: 0;
  color: var(--color-white-soft);
  font-size: 0.92rem;
  line-height: 1.62;
}

.how-note {
  margin-top: 3.8rem;
  padding: 2rem 2.4rem;
  border: 1px solid var(--color-line);
  border-radius: var(--r-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(212, 160, 23, 0.08) 0%, rgba(13, 20, 51, 0.6) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.how-note p {
  margin: 0;
  color: var(--color-white);
  font-size: 1.05rem;
  max-width: 54ch;
}

/* ---------- 12. Testimonials Section ---------- */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tst {
  padding: 2.4rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--color-line-soft);
  background: linear-gradient(160deg, var(--color-bg-tertiary) 0%, var(--color-bg-secondary) 100%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform 0.4s var(--ease-smooth),
    border-color 0.4s var(--ease-smooth),
    box-shadow 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.tst::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tst-accent, var(--color-gold));
  opacity: 0.65;
  transition: opacity 0.4s;
}

.tst:hover::before {
  opacity: 1;
}

.tst:hover {
  transform: translateY(-6px);
  border-color: var(--color-line);
  box-shadow: var(--shadow);
}

.tst .stars {
  font-size: 1.1rem;
  color: var(--color-gold);
}

.tst .q {
  font-family: var(--body);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.68;
  color: var(--color-white);
  flex: 1;
  margin: 0;
}

.tst .who {
  font-size: 0.88rem;
  color: var(--color-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--color-line-soft);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.tst .who b {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
}

/* ---------- 13. Coverage Section ---------- */
.cov-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.cov {
  padding: 2.2rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--color-line-soft);
  background: linear-gradient(160deg, var(--color-bg-tertiary) 0%, var(--color-bg-secondary) 100%);
  transition: transform 0.38s var(--ease-smooth),
    border-color 0.38s var(--ease-smooth),
    box-shadow 0.38s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.cov::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold), var(--color-gold-deep));
  opacity: 0;
  transition: opacity 0.38s;
}

.cov:hover {
  transform: translateY(-6px);
  border-color: var(--color-line);
  box-shadow: var(--shadow-md);
}

.cov:hover::before {
  opacity: 1;
}

.cov h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 1.25rem;
  color: var(--color-gold-light);
}

.cov ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cov li {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-white-soft);
  border: 1px solid var(--color-line-soft);
  border-radius: var(--r-full);
  padding: 0.38rem 0.95rem;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s;
}

.cov:hover li {
  border-color: rgba(212, 160, 23, 0.22);
}

.cov li:hover {
  color: var(--color-gold-light);
  border-color: var(--color-gold);
  background: rgba(212, 160, 23, 0.1);
  transform: translateY(-2px);
}

.cov-foot {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 2.4rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--color-line);
  background: linear-gradient(120deg, rgba(212, 160, 23, 0.08) 0%, rgba(13, 20, 51, 0.65) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cov-foot p {
  margin: 0;
  font-size: 1.05rem;
  max-width: 58ch;
  color: var(--color-white);
}

/* ---------- 14. Quote & Vehicle Selection ---------- */
.quote-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5.5vw, 5.5rem);
  align-items: start;
}

.veh-cards {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.veh {
  padding: 1.5rem 1.8rem;
  border-left: 3px solid var(--veh-accent, var(--color-gold));
  background: linear-gradient(100deg, rgba(212, 160, 23, 0.06) 0%, var(--color-bg-secondary) 100%);
  border-radius: 0 var(--r) var(--r) 0;
  border-top: 1px solid var(--color-line-soft);
  border-right: 1px solid var(--color-line-soft);
  border-bottom: 1px solid var(--color-line-soft);
  transition: transform 0.3s var(--ease-smooth),
    border-color 0.3s var(--ease-smooth),
    background 0.3s var(--ease-smooth);
}

.veh:hover {
  transform: translateX(8px);
  border-left-color: var(--veh-accent, var(--color-gold));
  background: linear-gradient(100deg, rgba(212, 160, 23, 0.12) 0%, var(--color-bg-secondary) 100%);
}

.veh:nth-child(1) {
  --veh-accent: var(--color-petrol);
}

.veh:nth-child(2) {
  --veh-accent: var(--color-diesel);
}

.veh:nth-child(3) {
  --veh-accent: var(--color-ev);
}

.veh h4 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--color-white);
}

.veh p {
  margin: 0;
  color: var(--color-white-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Quote Form Card */
.form-card {
  padding: 2.6rem;
  border-radius: var(--r-xl);
  background: linear-gradient(165deg, var(--color-bg-tertiary) 0%, var(--color-bg-secondary) 100%);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow);
}

.form-card h3 {
  font-family: var(--display);
  font-size: 1.75rem;
  margin: 0 0 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white-soft);
  margin-bottom: 1.15rem;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.9rem 1.15rem;
  border-radius: var(--r-sm);
  background: var(--color-bg-input);
  border: 1px solid var(--color-line-soft);
  color: var(--color-white);
  font-family: var(--body);
  font-size: 0.95rem;
  letter-spacing: normal;
  text-transform: none;
  color-scheme: dark;
  transition: border-color 0.25s var(--ease-smooth),
    box-shadow 0.25s var(--ease-smooth),
    background 0.25s var(--ease-smooth);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
  background: rgba(4, 7, 20, 0.95);
}

/* Date input custom luxury icon styling */
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon input,
.input-with-icon select {
  padding-right: 3rem;
}

.input-with-icon .input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-25%);
  color: var(--color-gold);
  pointer-events: none;
  display: grid;
  place-items: center;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-25%);
  width: 24px;
  height: 24px;
  opacity: 0;
  cursor: pointer;
}

select option {
  background: var(--color-bg-secondary);
  color: var(--color-white);
}

.form-msg {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-msg.ok {
  color: var(--ok);
}

.form-msg.err {
  color: var(--bad);
}

/* ---------- 15. Final CTA Section ---------- */
.final {
  background:
    radial-gradient(900px 450px at 50% 0%, rgba(212, 160, 23, 0.12), transparent 70%),
    radial-gradient(700px 350px at 80% 100%, rgba(212, 160, 23, 0.06), transparent 60%),
    var(--color-bg-secondary);
  border-top: 1px solid var(--color-line-soft);
}

.final-inner {
  text-align: center;
  max-width: 920px;
  margin-inline: auto;
}

.final .muted {
  margin: 1.4rem auto 0;
  max-width: 62ch;
  color: var(--color-white-soft);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin: 3.2rem 0;
}

.stats div {
  padding: 2.2rem 1.6rem;
  border: 1px solid var(--color-line-soft);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(18, 28, 66, 0.6) 0%, rgba(10, 15, 44, 0.4) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease-smooth), border-color 0.35s;
}

.stats div:hover {
  transform: translateY(-4px);
  border-color: var(--color-line);
}

.stats b {
  display: block;
  font-family: var(--display);
  font-size: 2.85rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(212, 160, 23, 0.25);
}

.stats span {
  font-size: 0.88rem;
  color: var(--color-white-soft);
}

/* ---------- 16. Agency-Standard Multi-Column Footer ---------- */
.site-footer {
  border-top: 1px solid var(--color-line);
  padding: 4.5rem 0 2.5rem;
  background: #040714;
  position: relative;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.foot-brand p {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.68;
  max-width: 34ch;
  margin: 1.2rem 0 0;
}

.foot-col h4 {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin: 0 0 1.4rem;
}

.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.foot-col a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white-soft);
  transition: color 0.25s, transform 0.25s;
  display: inline-block;
}

.foot-col a:hover {
  color: var(--color-gold);
  transform: translateX(3px);
}

.foot-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-white-soft);
  margin-bottom: 0.75rem;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--color-line-soft);
}

.foot-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.foot-copy a {
  color: var(--color-white-soft);
  margin: 0 0.25rem;
}

.foot-copy a:hover {
  color: var(--color-gold);
}

/* ---------- 17. Floating Action CTAs ---------- */
.floaters {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
  color: #060A1D;
  box-shadow: 0 14px 34px -10px rgba(0, 0, 0, 0.9), 0 0 20px -4px var(--color-gold-glow);
  transition: transform 0.3s var(--ease-bounce-subtle), box-shadow 0.3s;
  font-weight: 700;
}

.float:hover {
  transform: scale(1.1);
  box-shadow: 0 18px 40px -8px var(--color-gold-glow);
}

.float.wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFFFFF;
  box-shadow: 0 14px 34px -10px rgba(0, 0, 0, 0.9), 0 0 20px -4px rgba(37, 211, 102, 0.4);
}

.float.wa:hover {
  box-shadow: 0 18px 40px -8px rgba(37, 211, 102, 0.6);
}

/* ---------- 18. Modals & Luxury Booking Form ---------- */
[hidden] {
  display: none !important;
}

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.4rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.modal {
  position: relative;
  width: min(620px, 95vw);
  padding: 2.6rem 2.4rem;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--r-xl);
  animation: modalPop 0.35s var(--ease-smooth);
  background: linear-gradient(165deg, #0F1738 0%, #080D26 100%);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-lift);
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal .x {
  position: absolute;
  top: 20px;
  right: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-line-soft);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  z-index: 20;
}

.modal .x:hover {
  color: var(--color-gold-light);
  border-color: var(--color-gold);
  background: rgba(212, 160, 23, 0.2);
  transform: rotate(90deg);
}

/* Modal Header — Executive, Clean & Beautiful */
.modal-header-box {
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--color-line-soft);
  padding-right: 3rem;
}

.modal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.45rem;
}

.modal-header-box h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin: 0 0 0.8rem;
  line-height: 1.15;
}

.modal-header-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.modal-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-full);
  background: rgba(212, 160, 23, 0.14);
  border: 1px solid var(--color-line);
  color: var(--color-gold-light);
  font-size: 0.82rem;
  font-weight: 700;
}

.modal-header-sub {
  font-size: 0.84rem;
  color: var(--color-white-soft);
  margin: 0;
}

/* Form Row Grid */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 0;
}

@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

/* Promo Code Collapsible Section */
.promo-toggle-wrap {
  margin: 0.4rem 0 1rem;
}

.promo-toggle-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-gold-light);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.promo-toggle-btn:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

.promo-expand {
  margin-top: 0.75rem;
}

.coupon-row {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.coupon-row input {
  margin-top: 0;
}

.coupon-row .btn {
  white-space: nowrap;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
}

/* Summary Card */
.summary {
  border: 1px solid var(--color-line);
  border-radius: var(--r);
  padding: 1.2rem 1.4rem;
  margin: 1.4rem 0;
  font-size: 0.92rem;
  background: rgba(4, 7, 20, 0.6);
}

.summary .l {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  color: var(--color-white-soft);
}

.summary .l.total {
  color: var(--color-white);
  font-weight: 700;
  border-top: 1px solid var(--color-line-soft);
  margin-top: 0.6rem;
  padding-top: 0.8rem;
  align-items: center;
}

.summary .l.total b {
  color: var(--color-gold-light);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 800;
}

.booking-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.95rem;
  font-size: 0.78rem;
  color: var(--color-muted);
  text-align: center;
}

.booking-guarantee svg {
  width: 14px;
  height: 14px;
  color: var(--ok);
}

/* ---------- 19. Rich Luxury Confirmation Screen ---------- */
.confirm-screen {
  text-align: center;
  padding: 0.5rem 0.2rem;
  animation: confirmPop 0.45s var(--ease-smooth);
}

@keyframes confirmPop {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.confirm-seal-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.4rem;
  display: grid;
  place-items: center;
}

.confirm-seal-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.3) 0%, transparent 70%);
  animation: pulseSeal 2s ease-in-out infinite;
}

@keyframes pulseSeal {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

.confirm-seal-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981 0%, #047857 100%);
  display: grid;
  place-items: center;
  color: #040714;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 32px -4px rgba(16, 185, 129, 0.45);
}

.confirm-seal-icon svg {
  width: 38px;
  height: 38px;
  stroke: #022010;
  stroke-width: 3.2;
}

.confirm-title {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin: 0 0 0.4rem;
}

.confirm-sub {
  color: var(--color-white-soft);
  font-size: 0.92rem;
  margin: 0 0 1.6rem;
  line-height: 1.55;
}

/* Digital Receipt Box */
.receipt-box {
  background: rgba(4, 7, 20, 0.75);
  border: 1px solid var(--color-line);
  border-radius: var(--r);
  padding: 1.3rem 1.4rem;
  margin-bottom: 1.8rem;
  text-align: left;
}

.receipt-ref-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--color-line-soft);
  margin-bottom: 0.9rem;
}

.receipt-ref-lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  font-weight: 700;
}

.receipt-ref-code {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  background: rgba(212, 160, 23, 0.14);
  border: 1px solid var(--color-line);
  border-radius: var(--r-xs);
  color: var(--color-gold-light);
  font-family: monospace;
  font-size: 0.92rem;
  font-weight: 700;
}

.receipt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.receipt-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.receipt-item-lbl {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  font-weight: 600;
}

.receipt-item-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.receipt-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.9rem;
  border-top: 1px solid var(--color-line-soft);
}

.receipt-total-val {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-gold-light);
}

/* ---------- 20. "My Appointments" / Bookings History Modal (Ultra Luxury) ---------- */
.history-modal-wrap {
  animation: modalPop 0.35s var(--ease-smooth);
}

.history-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--color-line-soft);
  padding-right: 2.8rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.history-head h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  margin: 0 0 0.3rem;
  color: var(--color-white);
  line-height: 1.2;
}

.history-guarantee-banner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-radius: var(--r-sm);
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid var(--color-line);
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: var(--color-white-soft);
}

.history-guarantee-banner svg {
  color: var(--color-gold);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-height: 62vh;
  overflow-y: auto;
  padding-right: 0.4rem;
}

.history-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--color-line-gold-strong);
  background: linear-gradient(160deg, #10193E 0%, #080D26 100%);
  padding: 1.6rem 1.7rem;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: visible;
  /* Prevent any content clipping */
}

.history-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.8;
}

.history-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 0 24px -8px var(--color-gold-glow);
}

.history-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--color-line-soft);
  flex-wrap: wrap;
}

.history-card-id {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: monospace;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-gold-light);
  background: rgba(212, 160, 23, 0.16);
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-xs);
  border: 1px solid var(--color-line);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-badge.confirmed {
  background: rgba(52, 211, 153, 0.16);
  border: 1px solid rgba(52, 211, 153, 0.5);
  color: #34D399;
}

.status-badge.cancelled {
  background: rgba(248, 113, 113, 0.16);
  border: 1px solid rgba(248, 113, 113, 0.5);
  color: #F87171;
}

.history-card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}

.history-card-title {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0;
}

.history-card-price {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-gold-light);
}

/* 3-Step Live Progress Tracker */
.history-tracker {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
  background: rgba(4, 7, 20, 0.75);
  border: 1px solid var(--color-line);
  border-radius: var(--r);
  padding: 0.95rem 1.1rem;
  margin-bottom: 1.2rem;
}

.tracker-step {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
}

.tracker-step-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.tracker-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-line-soft);
}

.tracker-step.done .tracker-step-dot {
  background: var(--ok);
  box-shadow: 0 0 8px var(--ok);
}

.tracker-step.active .tracker-step-dot {
  background: var(--color-gold);
  box-shadow: 0 0 8px var(--color-gold);
  animation: pulseDot 1.8s infinite;
}

.tracker-step-title {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.tracker-step.done .tracker-step-title {
  color: var(--ok);
}

.tracker-step.active .tracker-step-title {
  color: var(--color-gold-light);
}

.tracker-step-desc {
  font-size: 0.76rem;
  color: var(--color-white-soft);
}

.history-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  background: rgba(4, 7, 20, 0.6);
  padding: 1rem 1.2rem;
  border-radius: var(--r);
  border: 1px solid var(--color-line-soft);
}

.history-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #FFFFFF;
}

.history-detail-item svg {
  width: 17px;
  height: 17px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.history-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-line-soft);
  flex-wrap: wrap;
}

.history-action-btns {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-wa-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(37, 211, 102, 0.16);
  border: 1px solid rgba(37, 211, 102, 0.5);
  color: #34D399;
  padding: 0.5rem 1rem;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-wa-action:hover {
  background: rgba(37, 211, 102, 0.3);
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.45);
  color: #FFFFFF;
}

.btn-cancel-appt {
  background: transparent;
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #F87171;
  padding: 0.5rem 1rem;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cancel-appt:hover {
  background: rgba(248, 113, 113, 0.2);
  border-color: #F87171;
}

.empty-history-box {
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.empty-history-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1.4rem;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.18) 0%, rgba(13, 20, 51, 0.5) 100%);
  border: 1px solid var(--color-line);
  display: grid;
  place-items: center;
  color: var(--color-gold-light);
  box-shadow: 0 0 24px -4px var(--color-gold-glow);
}

.empty-history-icon svg {
  width: 34px;
  height: 34px;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 250;
  padding: 0.85rem 1.6rem;
  border-radius: var(--r-full);
  background: rgba(13, 20, 51, 0.98);
  border: 1px solid var(--color-gold);
  color: var(--color-white);
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  max-width: 90vw;
  text-align: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---------- 21. Responsive Media Queries & Mobile/Tablet Drawer (100% Solid & Luxury) ---------- */
@media (max-width: 1024px) {

  .svc-grid,
  .tst-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .why-wrap,
  .quote-wrap {
    grid-template-columns: 1fr;
  }

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

  .steps::before {
    display: none;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 1080px) {
  html {
    scroll-padding-top: 60px;
  }

  .site-header .header-inner {
    padding: 0.4rem 0;
  }

  .site-header.stuck .header-inner {
    padding: 0.35rem 0;
  }

  .brand-logo {
    height: 32px;
    max-height: 32px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  /* Hide desktop buttons from header on mobile so header is clean and uncrowded */
  .nav-auth-desktop,
  .nav-book-btn,
  .nav-bookings-btn {
    display: none !important;
  }

  .burger {
    display: flex !important;
    width: 36px;
    height: 36px;
    padding: 7px;
    gap: 4px;
    margin-left: 0;
  }

  /* Mobile Drawer Container — 100% Solid Obsidian Luxury Surface */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #070B1E !important;
    /* 100% Solid Obsidian Navy */
    z-index: 99999 !important;
    display: flex;
    flex-direction: column;
    padding: 1.4rem 1.4rem 2.4rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-smooth);
    border-left: 1px solid var(--color-line);
    box-shadow: -12px 0 45px rgba(0, 0, 0, 0.95);
  }

  .nav.open {
    transform: translateX(0);
  }

  /* Drawer Top Bar */
  .nav-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.2rem;
    margin-bottom: 1.4rem;
    border-bottom: 1px solid var(--color-line-soft);
    width: 100%;
  }

  .nav-drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .nav-drawer-brand img {
    height: 38px !important;
    max-height: 38px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain !important;
  }

  .nav-close {
    display: grid !important;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-line);
    color: var(--color-white);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.2s;
  }

  .nav-close:hover {
    color: var(--color-gold-light);
    border-color: var(--color-gold);
    background: rgba(212, 160, 23, 0.2);
  }

  /* Top Feature: My Appointments & Service History Banner (Prominent & Luxury) */
  .drawer-bookings-banner {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    width: 100%;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1.4rem;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.18) 0%, rgba(18, 28, 66, 0.9) 100%);
    border: 1px solid var(--color-gold);
    box-shadow: 0 8px 24px -6px var(--color-gold-glow);
    cursor: pointer;
    transition: all 0.28s var(--ease-smooth);
    text-align: left;
  }

  .drawer-bookings-banner:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.26) 0%, rgba(22, 34, 80, 0.95) 100%);
    box-shadow: 0 12px 30px -4px rgba(212, 160, 23, 0.45);
  }

  .drawer-bookings-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.2);
    border: 1px solid var(--color-gold);
    display: grid;
    place-items: center;
    color: var(--color-gold-light);
    flex-shrink: 0;
  }

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

  .drawer-bookings-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .drawer-bookings-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--display);
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
  }

  .drawer-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34D399;
    box-shadow: 0 0 8px #34D399;
  }

  .drawer-bookings-desc {
    font-size: 0.8rem;
    color: var(--color-white-soft);
    line-height: 1.35;
  }

  .drawer-bookings-arrow {
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.25s;
  }

  .drawer-bookings-banner:hover .drawer-bookings-arrow {
    transform: translateX(4px);
  }

  /* Navigation Links List (Long, Spacious & Elegant) */
  .nav-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    margin-bottom: 1.8rem;
  }

  .nav a.nav-link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 60px;
    /* Long, spacious button height */
    padding: 1.15rem 1.4rem;
    border-radius: var(--r);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    background: linear-gradient(135deg, rgba(18, 28, 66, 0.7) 0%, rgba(10, 16, 46, 0.85) 100%);
    border: 1px solid rgba(212, 160, 23, 0.25);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    transition: all 0.25s var(--ease-smooth);
  }

  .nav a.nav-link-btn::after {
    display: none;
  }

  .nav a.nav-link-btn:hover,
  .nav a.nav-link-btn.active {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.18) 0%, rgba(22, 34, 80, 0.9) 100%);
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    transform: translateX(4px);
    box-shadow: 0 6px 20px -4px var(--color-gold-glow);
  }

  .nav a .nav-link-icon {
    display: flex;
    align-items: center;
    gap: 0.95rem;
  }

  .nav a .nav-link-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-gold);
    flex-shrink: 0;
  }

  .nav a .nav-chevron {
    color: var(--color-gold);
    font-size: 1.4rem;
    font-weight: 700;
  }

  /* Drawer Action Buttons (Tall, Long & Luxury) */
  .nav-auth-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    width: 100%;
    padding-top: 1.4rem;
    border-top: 1px solid var(--color-line-soft);
    margin-top: auto;
  }

  .nav-drawer-cta {
    min-height: 56px !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    width: 100% !important;
    border-radius: var(--r-full) !important;
    box-shadow: 0 10px 28px -6px var(--color-gold-glow) !important;
  }

  .nav-drawer-secondary {
    min-height: 52px !important;
    font-size: 0.98rem !important;
    width: 100% !important;
    border-radius: var(--r-full) !important;
  }

  .drawer-contact-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-top: 1.2rem;
    width: 100%;
  }

  .drawer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 50px;
    padding: 0.85rem 1rem;
    border-radius: var(--r);
    background: rgba(4, 7, 20, 0.8);
    border: 1px solid var(--color-line-soft);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-white-soft);
    text-decoration: none;
    transition: all 0.2s;
  }

  .drawer-contact-item:hover {
    border-color: var(--color-gold);
    color: #FFFFFF;
  }

  .drawer-contact-item.wa {
    color: #34D399;
    border-color: rgba(52, 211, 153, 0.4);
    background: rgba(52, 211, 153, 0.1);
  }

  .drawer-contact-item.wa:hover {
    background: rgba(52, 211, 153, 0.2);
    border-color: #34D399;
    box-shadow: 0 0 16px rgba(52, 211, 153, 0.35);
  }

  .burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .svc-grid,
  .tst-grid,
  .cov-grid,
  .stats,
  .why-grid-2x2,
  .steps {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 2rem 1.6rem;
  }

  .hero {
    min-height: 94svh;
    padding-bottom: 3.5rem;
  }

  .hero-inner {
    max-width: 100%;
  }

  .trust {
    width: 100%;
    gap: 1.2rem;
  }

  .trust-sep {
    display: none;
  }

  .head-row {
    margin-bottom: 2.2rem;
  }

  .form-card {
    padding: 1.8rem;
  }

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

  .floaters {
    right: 16px;
    bottom: 16px;
  }

  .receipt-grid,
  .history-details-grid {
    grid-template-columns: 1fr;
  }

  .history-tracker {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .history-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .history-action-btns {
    width: 100%;
  }

  .history-action-btns .btn-wa-action,
  .history-action-btns .btn-cancel-appt {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.85rem 1.4rem;
    font-size: 0.88rem;
    width: 100%;
  }

  .hero-cta {
    flex-direction: column;
  }

  .trust {
    padding: 1.1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .trust-item.trust-rating {
    grid-column: 1 / -1;
  }

  .modal {
    padding: 2rem 1.3rem;
  }
}

/* ============================================================
   SERVICE BANNERS HERO CAROUSEL
   ============================================================ */

/* --- Container --- */
.banners-carousel {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: var(--color-bg-primary);
  /* Gold border accent at bottom — the key "banner" visual separator */
  border-bottom: 3px solid var(--color-gold);
  /* Drop shadow toward the hero below, giving depth + separation */
  box-shadow:
    0 6px 40px -4px rgba(212, 160, 23, 0.30),
    0 20px 60px -20px rgba(0, 0, 0, 0.9);
  /* Subtle inner top glow so the carousel reads as a lit "stage" */
  isolation: isolate;
}

/* Gold shimmer line AT the very top edge of the carousel (below nav) */
.banners-carousel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(212, 160, 23, 0.6) 20%,
      var(--color-gold) 50%,
      rgba(212, 160, 23, 0.6) 80%,
      transparent 100%);
  z-index: 20;
}

.banners-carousel:hover .carousel-arrow {
  opacity: 1;
  pointer-events: auto;
}

/* --- Track wrapper --- */
.carousel-track-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* --- Track --- */
.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

/* --- Individual Slide (crossfade) --- */
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 0;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* --- Full-bleed background image with subtle zoom --- */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 6s ease-out;
}

.carousel-slide.is-active .slide-bg {
  transform: scale(1);
}

/* --- Gradient Overlays --- */
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide-overlay--left {
  background: linear-gradient(105deg,
      rgba(7, 11, 30, 0.92) 0%,
      rgba(10, 15, 44, 0.82) 38%,
      rgba(10, 15, 44, 0.30) 60%,
      transparent 100%);
}

.slide-overlay--right {
  background: linear-gradient(255deg,
      rgba(7, 11, 30, 0.92) 0%,
      rgba(10, 15, 44, 0.82) 38%,
      rgba(10, 15, 44, 0.30) 60%,
      transparent 100%);
}

/* --- Slide Content --- */
.slide-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 2.5rem 4rem;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.slide-content--left {
  left: 0;
  right: auto;
  text-align: left;
  align-items: flex-start;
}

.slide-content--right {
  right: 0;
  left: auto;
  text-align: right;
  align-items: flex-end;
}

/* Text entrance animation */
.carousel-slide .slide-content {
  opacity: 0;
  transform: translateY(calc(-50% + 20px));
  transition: opacity 0.55s ease 0.12s, transform 0.55s var(--ease-smooth) 0.12s;
}

.carousel-slide.is-active .slide-content {
  opacity: 1;
  transform: translateY(-50%);
}

/* --- Eyebrow --- */
.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(212, 160, 23, 0.14);
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: var(--r-full);
  padding: 0.35rem 1rem;
}

/* --- Tagline --- */
.slide-tagline {
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

/* --- Sub text --- */
.slide-sub {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--color-white-soft);
  margin: 0;
  line-height: 1.5;
}

.slide-sub strong {
  color: var(--color-gold-light);
  font-weight: 700;
}

/* --- CTA --- */
.slide-cta {
  margin-top: 0.25rem;
}

/* --- Arrow Controls --- */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 160, 23, 0.55);
  background: rgba(7, 11, 30, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.28s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.carousel-arrow svg {
  width: 22px;
  height: 22px;
}

.carousel-arrow--prev {
  left: 1.5rem;
}

.carousel-arrow--next {
  right: 1.5rem;
}

.carousel-arrow:hover {
  background: rgba(212, 160, 23, 0.18);
  border-color: var(--color-gold);
  transform: translateY(-50%) scale(1.1);
}

/* --- Dot Indicators --- */
.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  padding: 0;
  transition: background 0.28s ease, transform 0.28s ease, width 0.3s ease;
}

.carousel-dot.active {
  background: var(--color-gold);
  width: 28px;
  border-radius: var(--r-full);
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.65);
  transform: scale(1.25);
}

/* ============================================================
   CAROUSEL — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .banners-carousel {
    height: 380px;
  }

  /* Full-width bottom gradient on mobile */
  .slide-overlay--left,
  .slide-overlay--right {
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(7, 11, 30, 0.30) 30%,
        rgba(7, 11, 30, 0.88) 65%,
        rgba(7, 11, 30, 0.95) 100%);
  }

  /* Content to bottom center on mobile */
  .slide-content {
    top: auto !important;
    bottom: 0;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    max-width: 100%;
    padding: 1.5rem 1.4rem 3.8rem;
    text-align: left;
    align-items: flex-start;
  }

  .carousel-slide .slide-content {
    opacity: 0;
    transform: translateY(12px) !important;
    transition: opacity 0.5s ease 0.1s, transform 0.5s var(--ease-smooth) 0.1s;
  }

  .carousel-slide.is-active .slide-content {
    opacity: 1;
    transform: translateY(0) !important;
  }

  .slide-tagline {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  }

  .slide-sub {
    font-size: 0.875rem;
  }

  /* Bigger tap targets for dots */
  .carousel-dot {
    width: 12px;
    height: 12px;
  }

  .carousel-dot::before {
    content: '';
    position: absolute;
    inset: -10px;
  }

  .carousel-dot.active {
    width: 30px;
    height: 12px;
  }

  /* Hide arrows — swipe only on mobile */
  .carousel-arrow {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .banners-carousel {
    height: 340px;
  }

  .slide-content {
    padding: 1.2rem 1rem 3.5rem;
    gap: 0.75rem;
  }
}

/* ============================================================
   "THERE'S A CarcareKSA FOR EVERY NEED" SECTION
   Matches Amaron.com reference: clean white bg, icon grid
   ============================================================ */

.every-need {
  background: #FFFFFF;
  padding: 3.5rem 0 3rem;
  position: relative;
  z-index: 2;
}

/* --- Header --- */
.every-need-header {
  text-align: left;
  margin-bottom: 2.2rem;
  padding: 0 0.5rem;
}

.every-need-title {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  color: #1A1A2E;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.every-need-brand {
  color: var(--color-gold);
  font-weight: 800;
}

/* Horizontal line under heading */
.every-need-line {
  height: 2px;
  background: linear-gradient(90deg,
      var(--color-gold) 0%,
      var(--color-gold) 30%,
      #E8E8E8 30%,
      #E8E8E8 100%);
  border-radius: 2px;
}

/* --- Grid: 3 columns on mobile, 6 on desktop --- */
.every-need-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* --- Individual Card --- */
.need-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 1.2rem 0.5rem;
  border-radius: var(--r);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.need-card:hover {
  background: #F5F0E5;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.10);
}

/* --- Icon container --- */
.need-icon {
  width: 72px;
  height: 54px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3A3A4A;
  transition: color 0.25s ease;
}

.need-card:hover .need-icon {
  color: var(--color-gold-deep);
}

.need-icon svg {
  width: 100%;
  height: 100%;
}

/* --- Label --- */
.need-label {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 500;
  color: #3A3A4A;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.need-card:hover .need-label {
  color: #1A1A2E;
  font-weight: 600;
}

/* ============================================================
   EVERY NEED — DESKTOP
   ============================================================ */
@media (min-width: 769px) {
  .every-need {
    padding: 3.5rem 0;
  }

  .every-need-header {
    text-align: left;
    max-width: 480px;
    margin-bottom: 2.5rem;
  }

  .every-need-title {
    font-size: 1.7rem;
  }

  .every-need-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
  }

  .need-icon {
    width: 88px;
    height: 66px;
    margin-bottom: 1rem;
  }

  .need-label {
    font-size: 0.88rem;
  }
}

/* ============================================================
   EVERY NEED — SMALL MOBILE
   ============================================================ */
@media (max-width: 400px) {
  .every-need {
    padding: 2.5rem 0 2rem;
  }

  .every-need-title {
    font-size: 1.25rem;
  }

  .every-need-grid {
    gap: 0.5rem;
  }

  .need-icon {
    width: 60px;
    height: 45px;
  }

  .need-label {
    font-size: 0.76rem;
  }

  .need-card {
    padding: 0.8rem 0.3rem;
  }
}

/* ============================================================
   AD GALLERY — Premium Advertisement Poster Cards
   Images contain all text/badges/accents baked in.
   CSS handles only grid layout, card shape, and hover effects.
   ============================================================ */

/* ---------- Grid Layout ---------- */
.ad-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ---------- Base Poster Card ---------- */
.ad-poster {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-lg);
  overflow: visible;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  text-decoration: none;
  background: var(--color-surface-elevated, #131722);
  transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth);
}

.ad-poster:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(212, 160, 23, 0.3);
}

/* Poster image layer — 100% full view, zero cutting or cropping */
.ad-poster__img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  border-radius: var(--r-lg);
  transition: opacity 0.3s var(--ease-smooth);
}

/* ---------- Responsive: Tablet (2 columns) ---------- */
@media (max-width: 960px) {
  .ad-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

/* ---------- Responsive: Mobile (1 column) ---------- */
@media (max-width: 600px) {
  .ad-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================
   LANGUAGE TOGGLE — Premium Pill Switcher
   ============================================================ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-line-soft);
  border-radius: var(--r-full);
  padding: 3px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 10;
}

.lang-toggle:hover {
  border-color: var(--color-gold-deep);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.12);
}

.lang-opt {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  color: var(--color-muted);
  background: transparent;
  transition: all 0.3s var(--ease-smooth);
  white-space: nowrap;
  line-height: 1.4;
}

.lang-opt:hover {
  color: var(--color-white-soft);
}

.lang-opt.active {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
  color: #0a0a12;
  box-shadow: 0 2px 12px rgba(212, 160, 23, 0.35);
}

.lang-opt-ar {
  font-family: "Tajawal", "Cairo", "Segoe UI", Tahoma, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Mobile & Tablet Header & Drawer Lang Toggle */
@media (max-width: 1080px) {
  .header-actions {
    display: flex !important;
    align-items: center;
    gap: 0.65rem;
  }

  .header-actions .lang-toggle {
    display: inline-flex !important;
    padding: 2px;
  }

  .header-actions .lang-opt {
    padding: 4px 10px;
    font-size: 0.72rem;
  }

  .nav .lang-toggle-mobile {
    display: flex;
    justify-content: center;
    padding: 0.8rem 1.2rem;
  }

  .nav .lang-toggle-mobile .lang-toggle {
    display: inline-flex;
    transform: scale(1.1);
  }
}

/* ============================================================
   ARABIC / RTL TYPOGRAPHY & LAYOUT OVERRIDES
   ============================================================ */

/* Arabic font family when active */
.lang-arabic {
  font-family: "Tajawal", "Cairo", "Segoe UI", Tahoma, "Plus Jakarta Sans", sans-serif;
}

.lang-arabic h1,
.lang-arabic h2,
.lang-arabic h3,
.lang-arabic h4,
.lang-arabic .display,
.lang-arabic .slide-tagline {
  font-family: "Cairo", "Tajawal", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.4;
}

.lang-arabic p,
.lang-arabic span,
.lang-arabic a,
.lang-arabic label,
.lang-arabic button,
.lang-arabic li,
.lang-arabic .head-note,
.lang-arabic .muted {
  line-height: 1.6;
}

.lang-arabic .slide-tagline {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  line-height: 1.35;
}

/* RTL Direction Overrides */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .header-inner {
  flex-direction: row-reverse;
}

[dir="rtl"] .header-actions {
  flex-direction: row-reverse;
}

[dir="rtl"] .brand {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav-link-btn {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav-link-icon {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav-chevron {
  transform: rotate(180deg);
}

[dir="rtl"] .drawer-bookings-arrow {
  transform: rotate(180deg);
}

[dir="rtl"] .drawer-bookings-banner {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .head-row {
  text-align: right;
}

[dir="rtl"] .head-note {
  text-align: right;
}

/* RTL: Carousel slide content */
[dir="rtl"] .slide-content {
  text-align: right;
}

[dir="rtl"] .slide-content--left {
  align-items: flex-end;
  right: auto;
  left: auto;
}

[dir="rtl"] .slide-content--right {
  align-items: flex-start;
}

/* RTL: Buttons */
[dir="rtl"] .btn {
  flex-direction: row-reverse;
}

[dir="rtl"] .btn-icon {
  transform: scaleX(-1);
}

[dir="rtl"] .btn svg:first-child {
  margin-right: 0;
  margin-left: 0.5rem;
}

/* RTL: Steps (How It Works) */
[dir="rtl"] .steps {
  padding-right: 0;
  padding-left: 2rem;
}

[dir="rtl"] .steps li {
  padding-right: 2rem;
  padding-left: 0;
  border-right: 2px solid var(--color-line);
  border-left: none;
}

[dir="rtl"] .step-n {
  right: -1.1rem;
  left: auto;
}

/* RTL: Form layouts */
[dir="rtl"] .form-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .quote-wrap {
  flex-direction: row-reverse;
}

[dir="rtl"] label {
  text-align: right;
}

/* RTL: Footer */
[dir="rtl"] .foot-grid {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .foot-brand {
  text-align: right;
}

[dir="rtl"] .foot-contact-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .foot-contact-item svg {
  margin-right: 0;
  margin-left: 0.6rem;
}

/* RTL: Every Need Grid */
[dir="rtl"] .every-need-grid {
  direction: rtl;
}

/* RTL: Stats */
[dir="rtl"] .stats {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .stats > div {
  text-align: center;
}

/* RTL: Row buttons */
[dir="rtl"] .row-btns {
  flex-direction: row-reverse;
}

/* RTL: Drawer contact bar */
[dir="rtl"] .drawer-contact-bar {
  flex-direction: row-reverse;
}

[dir="rtl"] .drawer-contact-item {
  flex-direction: row-reverse;
}

/* RTL: Why grid */
[dir="rtl"] .why-card {
  text-align: right;
}

[dir="rtl"] .why-card-top {
  flex-direction: row-reverse;
}

/* RTL: Coverage */
[dir="rtl"] .cov ul {
  padding-right: 1.2rem;
  padding-left: 0;
}

/* RTL: Service cards */
[dir="rtl"] .svc-body {
  text-align: right;
}

[dir="rtl"] .svc-footer {
  flex-direction: row-reverse;
}

/* RTL: Testimonials */
[dir="rtl"] .tst {
  text-align: right;
}

/* RTL: Final CTA */
[dir="rtl"] .final-inner {
  text-align: right;
}

[dir="rtl"] .final-inner .row-btns {
  justify-content: center;
}

/* RTL: Mobile nav */
[dir="rtl"] .nav-drawer-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav-auth-mobile {
  text-align: right;
}

/* RTL: Veh cards in quote */
[dir="rtl"] .veh-cards {
  direction: rtl;
}

[dir="rtl"] .veh {
  text-align: right;
}

/* RTL: Modal */
[dir="rtl"] .modal {
  text-align: right;
}

[dir="rtl"] .modal .x {
  left: 1rem;
  right: auto;
}

/* RTL: Nav links list for mobile drawer */
[dir="rtl"] .nav-links-list {
  text-align: right;
}

/* Smooth text transition when swapping languages */
[data-i18n] {
  transition: opacity 0.2s ease;
}

/* RTL: Floaters positioning */
[dir="rtl"] .floaters {
  left: 1.2rem;
  right: auto;
}

@media (max-width: 768px) {
  [dir="rtl"] .floaters {
    left: 0.8rem;
    right: auto;
  }
}