/* ============================================================
   CARGIANT – LUXURY CAR RENTAL | Global Stylesheet
   Design: Skin/Cream · Gold · Black · Champagne
   ============================================================ */

/* ─── Google Fonts Import ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  /* Color Palette */
  --clr-gold: #C9A84C;
  --clr-gold-light: #E8C97A;
  --clr-gold-dark: #9A7A2E;
  --clr-gold-pale: #F5E6C0;
  --clr-black: #0A0A0A;
  --clr-dark: #111111;
  --clr-dark-2: #1A1A1A;
  --clr-skin: #FAF6EF;
  --clr-skin-2: #F2EBD9;
  --clr-skin-3: #E8DECA;
  --clr-white: #FFFFFF;
  --clr-text: #2C2C2C;
  --clr-text-muted: #6B6B6B;
  --clr-border: rgba(201, 168, 76, 0.25);
  --clr-border-dark: rgba(201, 168, 76, 0.5);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  --grad-gold-v: linear-gradient(180deg, #C9A84C 0%, #9A7A2E 100%);
  --grad-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
  --grad-skin: linear-gradient(135deg, #FAF6EF 0%, #F2EBD9 100%);
  --grad-hero: linear-gradient(135deg, #0A0A0A 0%, #1a1208 50%, #0D0D0D 100%);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;

  /* Spacing Scale */
  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;
  --sp-5xl: 8rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.3);
  --shadow-gold-lg: 0 8px 40px rgba(201, 168, 76, 0.4);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-slow: cubic-bezier(0.25, 0.1, 0.25, 1);
  --dur-fast: 0.2s;
  --dur-base: 0.35s;
  --dur-slow: 0.6s;
  --dur-slower: 1s;

  /* Layout */
  --max-width: 1400px;
  --header-h: 80px;
}

/* ─── CSS Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--clr-skin);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ─── Custom Scrollbar ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--clr-skin-2);
}

::-webkit-scrollbar-thumb {
  background: var(--grad-gold);
  border-radius: 100px;
}

/* ─── Selection ─── */
::selection {
  background: rgba(201, 168, 76, 0.3);
  color: var(--clr-dark);
}

/* ─── Layout Utilities ─── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.section {
  padding-block: clamp(var(--sp-3xl), 8vw, var(--sp-5xl));
}

.section-sm {
  padding-block: clamp(var(--sp-2xl), 5vw, var(--sp-3xl));
}

/* ─── Typography ─── */
.display-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--dur-base) var(--ease-spring);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
}

.btn:hover::before {
  opacity: 1;
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--clr-black);
  box-shadow: var(--shadow-gold);
}

.btn-gold::before {
  background: linear-gradient(135deg, #E8C97A, #C9A84C);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--clr-black);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline-gold {
  background: transparent;
  color: var(--clr-gold);
  border: 1.5px solid var(--clr-gold);
  box-shadow: none;
}

.btn-outline-gold::before {
  background: rgba(201, 168, 76, 0.08);
}

.btn-outline-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-dark {
  background: var(--clr-dark);
  color: var(--clr-white);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
  transform: translateY(-2px);
  background: var(--clr-dark-2);
}

.btn-sm {
  padding: 0.65rem 1.6rem;
  font-size: 0.72rem;
}

.btn-lg {
  padding: 1.1rem 3rem;
  font-size: 0.85rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Dividers & Lines ─── */
.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 100px;
}

.gold-line-center {
  margin-inline: auto;
}

/* ─── Gold Badge / Tag ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.badge-gold {
  background: rgba(201, 168, 76, 0.12);
  color: var(--clr-gold-dark);
  border: 1px solid var(--clr-border-dark);
}

/* ─── Cards ─── */
.card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.card-dark {
  background: var(--clr-dark-2);
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-3xl);
}

.section-header .eyebrow {
  margin-bottom: var(--sp-md);
}

.section-header .section-title {
  margin-bottom: var(--sp-md);
}

.section-header .gold-line {
  margin: var(--sp-md) auto var(--sp-lg);
}

.section-header .section-subtitle {
  max-width: 55ch;
  margin-inline: auto;
}

/* ─── Header / Navigation ─── */
#header {
  position: fixed;
  top: 25px;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: all var(--dur-base) var(--ease);
}

#header.scrolled {
  top: 20px;
  background: transparent;
  height: 68px;
}

#header.scrolled .nav {
  background: rgba(250, 246, 239, 0.94);
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: var(--shadow-md), 0 0 0 0 transparent;
}

#header.dark-nav {
  background: transparent;
}

#header.dark-nav.scrolled .nav {
  background: rgba(10, 10, 10, 0.88);
  border-color: rgba(201, 168, 76, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  min-width: 0;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(201, 168, 76, 0.55);
  border-radius: 50px;
  padding-inline: 1.5rem;
  padding-block: 10px;
  box-shadow: 0 2px 20px rgba(201, 168, 76, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all var(--dur-base) var(--ease);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--grad-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav-logo-text .brand {
  color: var(--clr-dark);
}

.nav-logo-text .accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dark-nav .nav-logo-text .brand {
  color: var(--clr-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--grad-gold);
  border-radius: 100px;
  transition: width var(--dur-base) var(--ease-spring);
}

.nav-link:hover {
  color: var(--clr-gold-dark);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--clr-gold-dark);
}

.nav-link.active::after {
  width: 100%;
}

.dark-nav .nav-link {
  color: rgba(255, 255, 255, 0.7);
}

.dark-nav .nav-link:hover {
  color: var(--clr-gold-light);
}

.dark-nav.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.75);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.nav-phone {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dark-nav .nav-phone {
  color: rgba(255, 255, 255, 0.6);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease);
}

.dark-nav .hamburger span {
  background: var(--clr-white);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(250, 246, 239, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-lg) 0;
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  transition: all var(--dur-base) var(--ease);
  pointer-events: none;
}

.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  padding: 0 var(--sp-xl);
}

.mobile-nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--dur-fast);
}

.mobile-nav-link:hover {
  color: var(--clr-gold-dark);
}

/* ─── Form Elements ─── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-size: 0.9rem;
  color: var(--clr-text);
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border-dark);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.form-input:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ─── Stats Row ─── */
.stats-bar {
  background: var(--clr-dark);
  padding-block: var(--sp-2xl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  text-align: center;
}

.stat-item {
  padding: var(--sp-lg);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── Fleet Cards ─── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.fleet-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: all var(--dur-base) var(--ease);
  position: relative;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--clr-border-dark);
}

.fleet-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  overflow: hidden;
  background: linear-gradient(135deg, var(--clr-skin-2), var(--clr-skin-3));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fleet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.fleet-card:hover .fleet-card-image img {
  transform: scale(1.05);
}

.fleet-card-tag {
  position: absolute;
  top: var(--sp-md);
  left: var(--sp-md);
  z-index: 2;
}

.fleet-card-body {
  padding: var(--sp-lg) var(--sp-xl);
}

.fleet-card-brand {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold-dark);
  margin-bottom: var(--sp-xs);
}

.fleet-card-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: var(--sp-md);
}

.fleet-card-specs {
  display: flex;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--clr-border);
}

.spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-value {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-dark);
}

.spec-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.fleet-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1;
}

.price-period {
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
}

/* ─── Feature Items ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
}

.feature-item {
  padding: var(--sp-xl);
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-border);
  text-align: center;
  transition: all var(--dur-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform var(--dur-base) var(--ease-spring);
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--clr-gold-pale);
  border: 1px solid var(--clr-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-lg);
  font-size: 1.6rem;
  transition: all var(--dur-base) var(--ease);
}

.feature-item:hover .feature-icon {
  background: var(--grad-gold);
  transform: scale(1.1);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: var(--sp-sm);
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ─── Steps / How It Works ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 2px solid var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-lg);
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-gold-dark);
  box-shadow: var(--shadow-gold);
  transition: all var(--dur-base) var(--ease);
}

.step-item:hover .step-number {
  background: var(--grad-gold);
  color: var(--clr-black);
  transform: scale(1.1);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: var(--sp-sm);
}

.step-desc {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ─── Testimonials ─── */
.testimonials-track {
  display: flex;
  gap: var(--sp-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: var(--sp-md);
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-border);
  padding: var(--sp-xl);
  transition: all var(--dur-base) var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-border-dark);
}

.testimonial-stars {
  color: var(--clr-gold);
  font-size: 0.9rem;
  margin-bottom: var(--sp-md);
  display: flex;
  gap: 2px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--clr-black);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-dark);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--clr-dark);
  border-radius: var(--radius-xl);
  padding: clamp(var(--sp-3xl), 6vw, var(--sp-4xl));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--sp-2xl);
  max-width: 50ch;
  margin-inline: auto;
}

/* ─── Footer ─── */
#footer {
  background: var(--clr-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--sp-4xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-block: var(--sp-lg);
  max-width: 30ch;
}

.footer-socials {
  display: flex;
  gap: var(--sp-sm);
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--dur-fast) var(--ease);
}

.social-link:hover {
  background: var(--grad-gold);
  border-color: transparent;
  color: var(--clr-black);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--dur-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link:hover {
  color: var(--clr-gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-lg);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: var(--sp-lg);
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--dur-fast);
}

.footer-bottom-link:hover {
  color: var(--clr-gold);
}

/* ─── Responsive ─── */

/* ── Tablet (max 1024px) ── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2xl);
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mid (max 900px) ── */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-item:nth-child(even) {
    border-bottom: none;
  }

  /* Hide desktop nav, show hamburger */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Nav box sizing on tablet */
  .nav {
    padding-inline: 1rem;
    padding-block: 8px;
  }
}

/* ── Mobile (max 768px) ── */
@media (max-width: 768px) {
  :root {
    --header-h: 72px;
  }

  /* ─ Container ─ */
  .container {
    padding-inline: var(--sp-lg);
  }

  /* ─ Nav box ─ */
  .nav {
    padding-inline: 0.75rem;
    padding-block: 6px;
    border-radius: 40px;
  }

  /* ─ Header gap ─ */
  #header {
    top: 12px;
  }

  #header.scrolled {
    top: 10px;
  }

  /* ─ Typography ─ */
  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  /* ─ Buttons ─ */
  .btn {
    padding: 0.75rem 1.6rem;
    font-size: 0.72rem;
  }

  .btn-lg {
    padding: 0.9rem 2rem;
  }

  /* ─ Fleet grid: 1 col ─ */
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  /* ─ Features: 1 col ─ */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* ─ Steps: 1 col ─ */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* ─ Stats: 2 col ─ */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ─ Testimonials: 1 col ─ */
  .testimonials-track {
    grid-template-columns: 1fr;
  }

  /* ─ Why Us: stack ─ */
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-us-img-accent {
    display: none;
  }

  .why-us-stat-badge {
    left: auto;
    right: 1rem;
    top: auto;
    bottom: 1rem;
  }

  /* ─ CTA / Newsletter ─ */
  .newsletter-form {
    flex-direction: column;
  }

  /* ─ Footer ─ */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--sp-md);
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-md);
  }

  /* ─ Section spacing ─ */
  .section {
    padding-block: var(--sp-3xl);
  }

  /* ─ Mobile menu full width ─ */
  .mobile-menu {
    top: 85px;
    left: 1rem;
    right: 1rem;
    border-radius: var(--radius-xl);
  }
}

/* ── Small Mobile (max 480px) ── */
@media (max-width: 480px) {
  .container {
    padding-inline: var(--sp-md);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .cta-banner {
    padding: var(--sp-2xl) var(--sp-lg);
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}