/* ==========================================================================
   WEST COAST AUTO SHOP - DESIGN SYSTEM & STYLESHEET
   Aesthetics: Luxury Automotive Dark Mode with High-Energy Crimson Accents
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-darkest: #07090c;
  --bg-darker: #0c0f14;
  --bg-card: #131720;
  --bg-card-hover: #181d28;
  --bg-card-featured: #171b26;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --border-highlight: rgba(225, 29, 72, 0.35);

  /* Crimson Accent Tokens */
  --crimson-primary: #dc2626;
  --crimson-vibrant: #ef4444;
  --crimson-deep: #b91c1c;
  --crimson-glow: rgba(220, 38, 38, 0.25);
  --crimson-subtle: rgba(220, 38, 38, 0.12);

  /* Neutral Typography Tokens */
  --text-pure: #ffffff;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Typography Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radius & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px var(--crimson-glow);
  --shadow-modal: 0 25px 50px -12px rgba(0, 0, 0, 0.85);

  /* Layout */
  --max-width: 1200px;
  --header-height: 74px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 38px);
  background-color: var(--bg-darkest);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-darkest);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.text-center {
  text-align: center;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: rgba(12, 15, 20, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text-main);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulseAnimation 2s infinite ease-in-out;
}

@keyframes pulseAnimation {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

.top-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-info span, .top-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-phone:hover {
  color: var(--crimson-vibrant);
}

.separator {
  color: var(--text-dim);
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(7, 9, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(7, 9, 12, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(220, 38, 38, 0.2);
}

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

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-pure);
}

.logo-emblem {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--crimson-primary), var(--crimson-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 14px var(--crimson-glow);
  transition: transform var(--transition-fast);
}

.brand-logo:hover .logo-emblem {
  transform: rotate(6deg) scale(1.04);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-primary {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-pure);
  line-height: 1.1;
}

.logo-secondary {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--crimson-vibrant);
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--crimson-primary);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--crimson-vibrant), var(--crimson-primary));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px var(--crimson-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f43f5e, var(--crimson-vibrant));
  box-shadow: 0 6px 22px rgba(225, 29, 72, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-pure);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: #0c0f14;
  border-color: #ffffff;
}

.btn-banner-white {
  background: #ffffff;
  color: #881337;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 34px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.btn-banner-white:hover {
  background: #fdf2f8;
  color: #9f1239;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-toggle .bar {
  width: 24px;
  height: 2px;
  background-color: var(--text-pure);
  transition: all var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-darker);
  border-left: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: right var(--transition-normal);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer-close {
  font-size: 2rem;
  color: var(--text-muted);
  line-height: 1;
}

.mobile-nav-links {
  list-style: none;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: none;
}

.drawer-backdrop.open {
  display: block;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 66%;
  filter: brightness(0.85) contrast(1.1);
  transform: scale(1.02);
  transition: transform 8s ease-out;
}

.hero-section:hover .hero-img {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(
      90deg,
      rgba(7, 9, 12, 0.94) 0%,
      rgba(7, 9, 12, 0.85) 30%,
      rgba(7, 9, 12, 0.45) 58%,
      rgba(7, 9, 12, 0.15) 78%,
      rgba(7, 9, 12, 0.5) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 9, 12, 0.8) 0%,
      transparent 25%,
      transparent 65%,
      rgba(7, 9, 12, 0.95) 100%
    );
}

.hero-radial-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 55%, rgba(220, 38, 38, 0.28) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.35);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--crimson-vibrant);
  box-shadow: 0 0 8px var(--crimson-vibrant);
}

.pill-text {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fda4af;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-pure);
  margin-bottom: 22px;
  text-transform: uppercase;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 40%, #fca5a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-main);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 34px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Hero Trust Bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 24px;
  background: rgba(12, 15, 20, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  width: fit-content;
  flex-wrap: wrap;
}

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

.trust-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-rating .stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.trust-rating .score {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-pure);
}

.trust-stat {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-pure);
  line-height: 1;
}

.trust-badge-icon {
  color: var(--crimson-vibrant);
  margin-bottom: 2px;
}

.trust-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background-color: var(--border-subtle);
}

/* ==========================================================================
   SECTION COMMON HEADERS
   ========================================================================== */
.section-header {
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--crimson-vibrant);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-pure);
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 110px 0 100px;
  background: var(--bg-darker);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-card), 0 0 20px rgba(220, 38, 38, 0.15);
}

.service-card.featured {
  background: var(--bg-card-featured);
  border-color: rgba(220, 38, 38, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(220, 38, 38, 0.12);
}

.service-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--crimson-vibrant), var(--crimson-primary));
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px var(--crimson-glow);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--crimson-subtle);
  border: 1px solid rgba(220, 38, 38, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson-vibrant);
  transition: transform var(--transition-fast);
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(3deg);
  background: rgba(220, 38, 38, 0.2);
}

.service-price-tag {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: right;
  font-family: var(--font-heading);
}

.service-price-tag span {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-pure);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 12px;
}

.service-text {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-features li svg {
  color: var(--crimson-vibrant);
  flex-shrink: 0;
  margin-top: 4px;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.btn-card-action {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-pure);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-card-action:hover {
  color: var(--crimson-vibrant);
  gap: 12px;
}

/* ==========================================================================
   RESULTS GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: 110px 0 100px;
  background: var(--bg-darkest);
}

/* Filter Controls */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--text-pure);
}

.filter-btn.active {
  background: var(--crimson-primary);
  border-color: var(--crimson-vibrant);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--crimson-glow);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 26px;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000000;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.gallery-card:hover .card-media img {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 12, 0.6);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-card:hover .card-overlay {
  opacity: 1;
}

.overlay-icon {
  align-self: flex-end;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.overlay-tag {
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-info {
  padding: 20px 22px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 6px;
}

.card-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.reviews-section {
  padding: 110px 0 100px;
  background: var(--bg-darker);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.review-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.review-card.highlighted {
  border-color: rgba(220, 38, 38, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(220, 38, 38, 0.1);
}

.review-badge {
  position: absolute;
  top: -11px;
  right: 24px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.review-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-quote {
  font-size: 1.02rem;
  color: var(--text-main);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid var(--border-strong);
  color: var(--text-pure);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-pure);
}

.author-vehicle {
  font-size: 0.8rem;
  color: var(--crimson-vibrant);
  font-weight: 500;
}

/* ==========================================================================
   APPOINTMENT / CONTACT BANNER (Vibrant Crimson Box matching IMG_4122.JPG)
   ========================================================================== */
.appointment-banner-section {
  padding: 60px 0 100px;
  background: var(--bg-darkest);
}

.appointment-banner {
  background: linear-gradient(135deg, #991b1b 0%, #b91c1c 45%, #dc2626 100%);
  border-radius: var(--radius-lg);
  padding: 64px 44px;
  box-shadow: 0 20px 45px rgba(185, 28, 28, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.banner-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fee2e2;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.banner-subtitle {
  font-size: 1.08rem;
  color: #fee2e2;
  max-width: 650px;
  margin: 0 auto 46px;
  line-height: 1.55;
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.channel-card {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.channel-card:hover {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #ffffff;
}

.channel-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #fecdd3;
  margin-bottom: 4px;
}

.channel-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  word-break: break-all;
}

.channel-action {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffe4e6;
  opacity: 0.85;
}

.banner-cta-wrapper {
  margin-top: 10px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 100px 0 110px;
  background: var(--bg-darker);
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-item.active {
  border-color: rgba(220, 38, 38, 0.4);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-pure);
  transition: color var(--transition-fast);
}

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

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--crimson-subtle);
  color: var(--crimson-vibrant);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px;
}

/* Ready to Book Bottom Box */
.ready-to-book-card {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.ready-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-pure);
  margin-bottom: 4px;
}

.ready-text {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #040608;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 2.7fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 18px 0 24px;
  max-width: 320px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-icon.instagram-icon {
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(225, 29, 72, 0.35);
  color: #fca5a5;
}

.social-icon.instagram-icon:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 4px 18px rgba(220, 39, 67, 0.45);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-pure);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li {
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

.footer-action-col .footer-subtext {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-legal a:hover {
  color: var(--text-main);
}

/* ==========================================================================
   FULLSCREEN LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  font-size: 2.2rem;
  color: #ffffff;
  line-height: 1;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.lightbox-close:hover {
  opacity: 1;
  color: var(--crimson-vibrant);
}

.lightbox-img-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  max-height: 75vh;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-modal);
}

.lightbox-img-wrapper img {
  width: auto;
  height: 100%;
  max-height: 75vh;
  max-width: 100%;
  object-fit: contain;
}

.lightbox-caption {
  width: 100%;
  padding: 16px 4px 0;
  text-align: left;
}

.lightbox-caption h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-pure);
  margin-bottom: 4px;
}

.lightbox-caption p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ==========================================================================
   BOOKING MODAL DIALOG
   ========================================================================== */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.booking-modal.open {
  display: flex;
}

.booking-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.booking-dialog {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  padding: 34px;
  box-shadow: var(--shadow-modal), 0 0 35px rgba(220, 38, 38, 0.18);
  max-height: 92vh;
  overflow-y: auto;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.booking-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--crimson-vibrant);
}

.booking-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.2;
}

.booking-close {
  font-size: 2rem;
  color: var(--text-muted);
  line-height: 1;
}

.booking-close:hover {
  color: #ffffff;
}

/* Form Styling */
.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-pure);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  background: rgba(10, 13, 18, 0.85);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-pure);
  font-family: inherit;
  font-size: 0.94rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--crimson-vibrant);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

/* Services Select Chips */
.service-selector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.select-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-content {
  background: rgba(10, 13, 18, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.select-chip:hover .chip-content {
  border-color: var(--border-strong);
}

.select-chip input:checked + .chip-content {
  background: rgba(220, 38, 38, 0.12);
  border-color: var(--crimson-primary);
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.15);
}

.chip-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-pure);
}

.chip-cost {
  font-size: 0.78rem;
  color: var(--crimson-vibrant);
  font-weight: 600;
}

/* Live Estimate Box */
.estimate-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 22px 0;
}

.estimate-label {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-pure);
  display: block;
}

.estimate-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.estimate-price,
.quote-tag-badge {
  background: rgba(220, 38, 38, 0.18);
  border: 1px solid rgba(220, 38, 38, 0.4);
  color: #fca5a5;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Success Card */
.booking-success {
  text-align: center;
  padding: 24px 10px;
}

.success-icon {
  margin-bottom: 16px;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-pure);
  margin-bottom: 12px;
}

.success-message {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.booking-ref-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed var(--border-strong);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 28px;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 868px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-trust-bar {
    width: 100%;
    justify-content: space-between;
  }

  .trust-divider {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-selector-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .hero-section {
    padding: 60px 0 50px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .appointment-banner {
    padding: 38px 20px;
  }

  .ready-to-book-card {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ready-to-book-card .btn {
    width: 100%;
  }

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