/* =============================================
   TIME NOW RENTALS — PROFESSIONAL STYLESHEET
   Clean, modern car rental brand design
   ============================================= */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0c1f3d;
  --navy-mid:  #162d52;
  --navy-light:#1e3a66;
  --gold:      #f59e0b;
  --gold-dark: #d97706;
  --gold-light:#fcd34d;
  --white:     #ffffff;
  --off-white: #f8f9fa;
  --gray-100:  #f1f3f5;
  --gray-200:  #e9ecef;
  --gray-400:  #adb5bd;
  --gray-500:  #868e96;
  --gray-700:  #495057;
  --gray-900:  #212529;
  --text:      #1a2535;
  --text-light:#5a6a7e;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --transition: .22s ease;
  --max-w:     1160px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Utility ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.02em;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.65;
}
.section-subtitle.light { color: rgba(255,255,255,.75); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: .925rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); box-shadow: 0 6px 20px rgba(245,158,11,.3); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn svg, .btn .btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Navigation ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-badge {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .8rem;
  color: var(--navy);
  letter-spacing: .02em;
  flex-shrink: 0;
}
.brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links a.active { color: var(--white); font-weight: 600; }
.nav-cta { margin-left: 8px; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  background-color: var(--navy);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,31,61,0.72);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 24px 60px;
}
.hero-text { max-width: 600px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,.18);
  border: 1px solid rgba(245,158,11,.35);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 24px;
}
.hero-tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-tag span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-heading {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero-heading em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  overflow: hidden;
  width: fit-content;
}
.hero-stat {
  padding: 16px 24px;
  text-align: center;
  min-width: 110px;
}
.hero-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,.12);
  align-self: stretch;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--gold);
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
  border-right: 1px solid rgba(12,31,61,.15);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 15px; height: 15px; opacity: .8; flex-shrink: 0; }

/* ── Sections Common ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── Booking Section ── */
.booking-section {
  padding: 64px 0 80px;
  background: var(--white);
}
.booking-section .container { max-width: 1100px; }
.booking-section .section-header { margin-bottom: 32px; }
.widget-wrapper {
  overflow: visible;
}

wheelbase-rentals-list {
  display: block;
  width: 100%;
}

/* ── Why Section ── */
.why-section { padding: 96px 0; background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-text .section-subtitle { margin-top: 16px; }
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.why-feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.why-feature:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.why-feature-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.why-feature strong {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}
.why-feature span {
  font-size: .825rem;
  color: var(--text-light);
  line-height: 1.5;
}
.why-visual { position: relative; }
.why-photo-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.why-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.why-photo-float {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.float-card-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: -.02em;
  line-height: 1;
}
.float-card-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* ── List Car / Partner Section ── */
.list-car-section {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.list-car-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(245,158,11,.07);
  pointer-events: none;
}
.list-car-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.list-car-text .section-subtitle { margin-top: 16px; color: rgba(255,255,255,.65); }
.list-car-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.list-car-perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
}
.list-car-perks li:hover { background: rgba(255,255,255,.09); border-color: rgba(245,158,11,.3); }
.perk-icon {
  width: 40px; height: 40px;
  background: rgba(245,158,11,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.list-car-perks strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.list-car-perks span {
  font-size: .825rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.list-car-perks .perk-text { flex: 1; }
.list-car-cta { margin-top: 32px; }
.list-car-visual { position: relative; }
.list-car-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.list-car-photo img { width: 100%; height: 100%; object-fit: cover; }
.list-car-badge {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  line-height: 1.3;
  text-align: center;
}

/* ── Reviews ── */
.reviews-section { padding: 96px 0; background: var(--off-white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.review-stars span { color: var(--gold); font-size: 1rem; }
.review-text {
  font-size: .925rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name { font-size: .875rem; font-weight: 700; color: var(--navy); }
.review-meta { font-size: .775rem; color: var(--text-light); }

/* ── Serve Section ── */
.serve-section {
  padding: 96px 0;
  background: var(--white);
}
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.serve-card {
  padding: 32px 28px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition);
  text-align: center;
}
.serve-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.serve-icon {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
}
.serve-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.serve-card p {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,158,11,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .section-title { color: var(--white); margin-bottom: 16px; }
.cta-banner .section-subtitle { color: rgba(255,255,255,.7); margin: 0 auto 36px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer {
  background: #080f1e;
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand-name { color: var(--white); font-size: 1.05rem; margin-top: 10px; display: block; }
.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  margin-top: 12px;
  max-width: 260px;
}
.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
}
.footer-contact-item .fi-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 2px;
  display: block;
}
.footer-contact-item a, .footer-contact-item span { color: rgba(255,255,255,.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}
.footer-badge { display: flex; align-items: center; gap: 8px; }

/* ── About Page ── */
.page-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(245,158,11,.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-title { color: var(--white); margin-bottom: 14px; }
.page-hero .section-subtitle { color: rgba(255,255,255,.7); margin: 0 auto; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 96px 0;
}
.about-visual { position: relative; }
.about-photo-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-secondary {
  position: absolute;
  bottom: -24px;
  right: -20px;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 4/3;
}
.about-photo-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-stat {
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  text-align: center;
}
.about-stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: -.03em;
}
.about-stat-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-value-num {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: .85rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-value-title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.about-value-desc { font-size: .875rem; color: var(--text-light); line-height: 1.6; }

/* ── Fleet Page ── */
.fleet-hero { padding: 120px 0 60px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); text-align: center; }
.fleet-hero .section-title { color: var(--white); margin-bottom: 14px; }
.fleet-hero .section-subtitle { color: rgba(255,255,255,.7); margin: 0 auto; }
.fleet-section { padding: 64px 0 96px; }
.fleet-note {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: .875rem;
  color: var(--text-light);
  margin-bottom: 48px;
}

/* ── Contact Page ── */
.contact-section { padding: 96px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(245,158,11,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info-value { font-size: .95rem; font-weight: 600; color: var(--navy); }
.contact-info-sub { font-size: .825rem; color: var(--text-light); margin-top: 2px; }
.contact-booking-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 8px;
}
.contact-booking-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.contact-booking-card p { font-size: .875rem; color: rgba(255,255,255,.65); margin-bottom: 20px; line-height: 1.65; }
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: .9rem; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--gray-700); letter-spacing: .03em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .why-inner,
  .list-car-inner,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual,
  .list-car-visual { order: -1; }
  .reviews-grid,
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .why-photo-float { bottom: -16px; left: -12px; }
  .about-photo-secondary { display: none; }
  .list-car-badge { top: -12px; right: -12px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { min-height: 85vh; }
  .hero-heading { font-size: 2.4rem; }
  .hero-stats { flex-direction: column; width: 100%; }
  .hero-stat-divider { width: auto; height: 1px; }
  .trust-inner { flex-direction: column; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(12,31,61,.12); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
  .why-features { grid-template-columns: 1fr; }
  .reviews-grid,
  .serve-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .header-inner { padding: 0 16px; }
}

/* ── Scroll animation ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* ── Scrolled nav ── */
.site-header.scrolled .brand-name { color: var(--white); }
