/* ============================================
   A STAR GARAGE V2 — Design System
   Mobile-first, clean, warm, honest
   ============================================ */

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

:root {
  /* Brand */
  --red: #C8102E;
  --red-dark: #A00D24;
  --red-light: #FEF2F2;
  --navy: #0F172A;
  --navy-light: #1E293B;

  /* Neutrals */
  --slate: #334155;
  --slate-light: #64748B;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --white: #FFFFFF;
  --bg: #FAFBFC;

  /* Accent */
  --star: #F59E0B;
  --success: #059669;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Layout */
  --max-width: 1200px;
  --content-padding: 20px;

  /* Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 6px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 16px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 32px rgba(0,0,0,0.1), 0 6px 12px rgba(0,0,0,0.05);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 200ms;
  --duration-slow: 400ms;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: 2rem; letter-spacing: -0.02em; }
h2 { font-size: 1.625rem; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.375rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.25rem; }
}

p { color: var(--slate); line-height: 1.7; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.8125rem; }
.text-light { color: var(--slate-light); }
.text-white { color: var(--white); }
.text-red { color: var(--red); }
.text-center { text-align: center; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--space-4xl) 0; }
  .section-sm { padding: var(--space-3xl) 0; }
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(200, 16, 46, 0.3);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  padding: 8px 0;
  display: none;
}

@media (min-width: 768px) {
  .top-bar { display: block; }
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  transition: color var(--duration) var(--ease);
}

.top-bar-left a:hover { color: var(--white); }

.top-bar-left svg { width: 14px; height: 14px; flex-shrink: 0; }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.top-bar-right a {
  color: rgba(255,255,255,0.6);
  transition: color var(--duration) var(--ease);
}

.top-bar-right a:hover { color: var(--white); }

.top-bar-right svg { width: 16px; height: 16px; }

/* --- Header --- */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--duration) var(--ease);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 768px) {
  .header .container { height: 72px; }
}

.header-logo img {
  height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .header-logo img { height: 48px; }
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate);
  transition: color var(--duration) var(--ease);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform var(--duration) var(--ease);
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
  border: 1px solid var(--gray-200);
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--slate);
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
}

.nav-dropdown-menu a:hover {
  background: var(--gray-100);
  color: var(--red);
}

/* Mobile menu button */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--navy);
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.menu-toggle svg { width: 24px; height: 24px; }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  padding: var(--space-lg);
  overflow-y: auto;
  animation: slideIn var(--duration-slow) var(--ease);
}

.nav-mobile.open { display: block; }

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--gray-200);
}

.nav-mobile-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-mobile-close svg { width: 24px; height: 24px; }

.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
}

.nav-mobile a:hover { color: var(--red); }

.nav-mobile-services {
  padding-left: var(--space-lg);
}

.nav-mobile-services a {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--slate);
}

.nav-mobile-cta {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta { display: inline-flex; }
}

/* --- Promo Banner --- */
.promo-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 10px var(--content-padding);
  font-size: 0.875rem;
  font-weight: 500;
}

.promo-banner strong {
  font-weight: 700;
}

.promo-banner a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #263752 100%);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,16,46,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero { padding: var(--space-4xl) 0 var(--space-3xl); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.6s var(--ease) both;
}

.hero-badge svg { width: 14px; height: 14px; }

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.6s var(--ease) 0.1s both;
}

.hero h1 span {
  color: var(--star);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s var(--ease) 0.2s both;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.2rem; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s var(--ease) 0.3s both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
  animation: fadeInUp 0.6s var(--ease) 0.4s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.hero-trust-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--star); }

.hero-stars {
  display: flex;
  gap: 2px;
}

.hero-stars svg { width: 14px; height: 14px; color: var(--star); fill: var(--star); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Hero Split Layout --- */
.hero-split { padding: var(--space-2xl) 0; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-illustration {
  display: none;
}

@media (min-width: 768px) {
  .hero-split { padding: var(--space-3xl) 0; }
  .hero-illustration { display: block; }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .hero-split { padding: var(--space-4xl) 0 var(--space-3xl); }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

.hero-illustration img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

/* --- Trust Strip --- */
.trust-strip {
  background: var(--white);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--gray-200);
}

.trust-strip .grid {
  gap: var(--space-xl);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.trust-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.trust-item h4 {
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 0.8125rem;
  color: var(--slate-light);
  line-height: 1.5;
}

/* --- Service Cards --- */
.services-section {
  background: var(--bg);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.section-header p {
  margin-top: var(--space-sm);
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--gray-200);
  transition: all var(--duration-slow) var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: var(--space-md);
}

.service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: 0.875rem;
  flex: 1;
  margin-bottom: var(--space-md);
}

.service-card-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: var(--space-md);
}

.service-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--duration) var(--ease);
}

.service-card:hover .service-card-link {
  gap: 10px;
}

.service-card-link svg { width: 16px; height: 16px; }

/* --- Testimonials --- */
.testimonials {
  background: var(--white);
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--gray-200);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: var(--star);
  fill: var(--star);
}

.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
}

.testimonial-rating-summary {
  text-align: center;
  margin-top: var(--space-xl);
}

.testimonial-rating-summary .stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-sm);
}

.testimonial-rating-summary .stars svg {
  width: 24px;
  height: 24px;
  color: var(--star);
  fill: var(--star);
}

/* --- How It Works / Steps --- */
.steps-section {
  background: var(--bg);
}

/* --- Pricing Cards --- */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.pricing-card-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.pricing-card-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.pricing-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-card-featured {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.12);
  position: relative;
}

.step-card {
  text-align: center;
  padding: var(--space-lg);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto var(--space-md);
}

.step-card h3 {
  margin-bottom: var(--space-sm);
}

.step-card p {
  font-size: 0.875rem;
}

/* --- FAQ --- */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 768px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-lg) 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: color var(--duration) var(--ease);
}

.faq-question:hover { color: var(--red); }

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
  color: var(--slate-light);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: var(--space-lg);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: var(--space-3xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-brand img {
  height: 40px;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin-bottom: var(--space-lg);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}

.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}

.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: var(--space-2xl);
  padding: var(--space-lg) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer-payments {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.footer-payments img {
  height: 24px;
  opacity: 0.5;
}

/* --- Sticky Mobile Bar --- */
.sticky-mobile {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 10px var(--content-padding);
  gap: var(--space-sm);
  z-index: 90;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}

.sticky-mobile .btn { flex: 1; }

@media (min-width: 768px) {
  .sticky-mobile { display: none; }
}

body { padding-bottom: 70px; }

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 80;
  transition: all var(--duration) var(--ease);
  animation: pulse 3s infinite;
}

@media (min-width: 768px) {
  .whatsapp-float { bottom: 24px; right: 24px; }
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 28px; height: 28px; color: var(--white); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6); }
}

/* --- Service Page Hero --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: var(--space-2xl) 0;
  text-align: center;
}

@media (min-width: 768px) {
  .page-hero { padding: var(--space-3xl) 0; }
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  font-size: 1.1rem;
}

.page-hero-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
}

.page-hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* --- Hero Clean (bold minimal style) --- */
.hero-clean {
  padding: var(--space-4xl) 0 var(--space-3xl);
  background: var(--white);
}

.hero-clean-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-clean-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.hero-clean-description {
  max-width: 42rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-light);
}

.hero-clean-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
}

@media (min-width: 640px) {
  .hero-clean-actions {
    flex-direction: row;
  }
}

/* --- MOT Checker Panel --- */
.mot-checker-panel {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.mot-checker-panel h2 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.mot-checker-panel > .container > p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
}

.mot-checker-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .mot-checker-form {
    flex-direction: row;
    justify-content: center;
  }
}

.reg-plate-input {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.reg-plate-badge {
  background: #003399;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  line-height: 1;
}

.reg-plate-star {
  color: #FFD700;
  font-size: 1.1rem;
}

.reg-plate-country {
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
}

.reg-plate-input input {
  width: 220px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-sm) var(--space-md);
  border: none;
  outline: none;
}

.mot-checker-footnote {
  color: rgba(255,255,255,0.4) !important;
  font-size: 0.85rem !important;
  margin-top: var(--space-lg) !important;
  margin-bottom: 0 !important;
}

/* --- Booking Steps (compact) --- */
.booking-steps {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--gray-200);
  margin: calc(-1 * var(--space-xl)) auto var(--space-2xl);
  max-width: 800px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

/* --- Content Section --- */
.content-section {
  background: var(--white);
}

.content-section h2 {
  margin-bottom: var(--space-lg);
}

.content-section p + p {
  margin-top: var(--space-md);
}

.content-section ul {
  list-style: none;
  padding: 0;
}

.content-section ul li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  color: var(--slate);
  font-size: 0.9375rem;
}

.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

/* --- Contact Info Block --- */
.contact-block {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.contact-block h3 {
  margin-bottom: var(--space-md);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* --- Map Section --- */
.map-section {
  background: var(--gray-100);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
}

.area-tag {
  background: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  color: var(--slate);
  border: 1px solid var(--gray-200);
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 768px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: 1.375rem;
}

.legal-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-md);
}

.legal-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.legal-content ul li {
  padding: 4px 0;
  color: var(--slate);
  font-size: 0.9375rem;
  position: relative;
  padding-left: var(--space-md);
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0 var(--space-lg);
  font-size: 0.9375rem;
}

.legal-content th,
.legal-content td {
  text-align: left;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--border);
}

.legal-content th {
  font-weight: 600;
  color: var(--heading);
  background: var(--light-bg, #f8f8f8);
}

.legal-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  text-decoration: none;
}

/* --- Utilities --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.mt-auto { margin-top: auto; }

/* --- Animations on scroll --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
