:root {
  --promo-banner-height: 46px;
  --navbar-visual-height: 72px;
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #1e1e1e;
  --bg-elevated: #242424;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;
  --red: #c41e3a;
  --red-dark: #9a1830;
  --red-glow: rgba(196, 30, 58, 0.4);
  --blue: #4a6fa5;
  --blue-glow: rgba(74, 111, 165, 0.3);
  --purple: #6b4c9a;
  --purple-glow: rgba(107, 76, 154, 0.3);
  --accent: #c41e3a;
  --accent-hover: #d42a4a;
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
  --gradient-red: linear-gradient(135deg, #c41e3a 0%, #6b4c9a 100%);
  --gradient-metallic: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #2a2a2a 100%);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--red);
}

.section-subtitle {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 12px;
  font-weight: 500;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-red);
  margin-bottom: 30px;
  border-radius: 2px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-line {
  margin: 0 auto 30px;
}

.section-header .section-lead {
  max-width: 640px;
  margin: -8px auto 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 400;
}

.section-header .section-lead strong {
  color: var(--text-primary);
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: white;
  border-color: var(--red);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-nav {
  padding: 10px 24px;
  font-size: 13px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 4px;
}

.btn-nav:hover {
  background: var(--red-dark);
  color: white;
}

.btn-full {
  width: 100%;
}

.promo-banner {
  background: linear-gradient(90deg, var(--red), var(--purple));
  color: white;
  text-align: center;
  padding: 10px 20px 12px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.promo-banner strong {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-secondary {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  opacity: 0.95;
  max-width: 720px;
}

.promo-secondary a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.promo-secondary a:hover {
  opacity: 0.9;
}

.navbar {
  position: fixed;
  top: var(--promo-banner-height);
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease, top 0.25s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.nav-links a:not(.btn-nav):hover {
  color: var(--red);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  padding-top: calc(var(--promo-banner-height) + var(--navbar-visual-height));
  padding-bottom: 48px;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(107, 76, 154, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(74, 111, 165, 0.1) 0%, transparent 40%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 40%, rgba(196, 30, 58, 0.3) 0%, transparent 2px),
    radial-gradient(circle at 80% 20%, rgba(107, 76, 154, 0.2) 0%, transparent 2px),
    radial-gradient(circle at 60% 80%, rgba(74, 111, 165, 0.2) 0%, transparent 2px);
  background-size: 100px 100px, 150px 150px, 120px 120px;
  animation: particles 20s linear infinite;
}

@keyframes particles {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100px); }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 80px,
    rgba(196, 30, 58, 0.03) 80px,
    rgba(196, 30, 58, 0.03) 81px
  );
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero-subtitle {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--red);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 15vw, 140px);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.hero-tagline {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-weight: 300;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subline {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-subline strong {
  color: var(--text-secondary);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badges span::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red-glow);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 0.5; }
}

.before-after {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.before-after::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), var(--purple), transparent);
}

.ba-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ba-image {
  position: absolute;
  inset: 0;
}

.ba-before {
  clip-path: inset(0 50% 0 0);
}

.ba-after {
  clip-path: inset(0 0 0 50%);
}

.ba-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--bg-tertiary);
}

.ba-before .ba-placeholder {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.ba-after .ba-placeholder {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--purple) 100%);
}

.ba-placeholder.after span {
  color: white;
}

.ba-placeholder svg {
  width: 60px;
  height: 60px;
  color: var(--text-muted);
}

.ba-after .ba-placeholder svg {
  color: rgba(255,255,255,0.5);
}

.ba-placeholder span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-secondary);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: white;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 10;
}

.ba-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.ba-arrow svg {
  width: 18px;
  height: 18px;
  color: white;
}

.ba-arrow svg:first-child {
  margin-right: 2px;
}

.ba-arrow svg:last-child {
  margin-left: 2px;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 11;
}

.ba-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 20px;
}

.quote-calculator {
  padding: 100px 0;
  background: var(--bg-primary);
}

.calculator {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.calc-step {
  margin-bottom: 48px;
}

.calc-step:last-of-type {
  margin-bottom: 32px;
}

.calc-step h3 {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.vehicle-grid, .service-grid, .addons-grid {
  display: grid;
  gap: 16px;
}

.vehicle-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.addons-grid {
  grid-template-columns: repeat(4, 1fr);
}

.vehicle-option input, .service-option input, .addon-option input {
  display: none;
}

.vehicle-card, .service-card, .addon-card {
  background: var(--bg-tertiary);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vehicle-card:hover, .service-card:hover, .addon-card:hover {
  border-color: var(--text-muted);
}

.vehicle-option input:checked + .vehicle-card,
.service-option input:checked + .service-card {
  border-color: var(--red);
  box-shadow: 0 0 20px var(--red-glow);
}

.addon-option input:checked + .addon-card {
  border-color: var(--purple);
  background: rgba(107, 76, 154, 0.1);
}

.vehicle-card svg {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.vehicle-card span {
  font-size: 14px;
  font-weight: 500;
}

.service-card {
  position: relative;
}

.service-badge {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.service-badge.popular {
  background: var(--red);
  color: white;
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
}

.service-card.featured {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(196, 30, 58, 0.1) 0%, var(--bg-tertiary) 100%);
}

.addon-card {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.addon-name {
  font-size: 14px;
  font-weight: 500;
}

.addon-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
}

.calc-total {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.total-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.total-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.services {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  transition: all 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-red);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 12px 12px 0 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  border-color: var(--red);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 30, 58, 0.1);
  border-radius: 12px;
  margin-bottom: 20px;
}

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

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 18px;
  font-weight: 600;
  color: var(--red);
}

.process {
  padding: 100px 0;
  background: var(--bg-primary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(196, 30, 58, 0.1);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--bg-card);
  border: 1px solid rgba(196, 30, 58, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 24px rgba(196, 30, 58, 0.12);
}

.step-icon svg {
  width: 32px;
  height: 32px;
  color: #e84a63;
  filter: drop-shadow(0 0 10px rgba(196, 30, 58, 0.35));
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 14px;
}

.gallery {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.gallery-tab {
  padding: 12px 32px;
  background: transparent;
  border: 2px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-tab:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

.gallery-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.gallery-content {
  position: relative;
}

.gallery-panel {
  display: none;
}

.gallery-panel.active {
  display: block;
}

.slideshow-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
}

.slides-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide-image,
.slide-video {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  text-align: center;
  padding: 40px;
}

.slide-placeholder svg {
  width: 80px;
  height: 80px;
}

.slide-placeholder span {
  font-size: 14px;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 24px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 18px;
  font-weight: 500;
  color: white;
}

.slides-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.6);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slides-nav:hover {
  background: var(--red);
}

.slides-nav.prev {
  left: 16px;
}

.slides-nav.next {
  right: 16px;
}

.slides-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-dot.active {
  background: var(--red);
  box-shadow: 0 0 10px var(--red-glow);
}

.slides-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.slides-play {
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slides-play:hover {
  border-color: var(--red);
  color: var(--red);
}

.slides-counter {
  color: var(--text-muted);
  font-size: 14px;
}

.gallery-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 20px;
}

.gallery-grid-thumbs {
  margin-top: 50px;
}

.gallery-instructions {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.thumbs-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.thumb-item {
  width: 100px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumb-item:hover {
  border-color: var(--red);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-social {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.gallery-social-lead {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.gallery-social-lead a {
  color: var(--text-primary);
}

.gallery-social-lead a:hover {
  color: var(--red);
}

.gallery-social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.gallery-social-btn {
  min-width: 200px;
}

.instagram-embed-host {
  margin: 40px auto 0;
  max-width: 540px;
}

.instagram-embed-host:empty {
  display: none;
  margin: 0;
}

.instagram-embed-host .instagram-media {
  margin: 0 auto !important;
  max-width: 100% !important;
  width: 100% !important;
}

.thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  color: var(--text-muted);
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .gallery-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .slides-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .thumb-item {
    width: 80px;
    height: 55px;
  }
}

.testimonials {
  padding: 100px 0;
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 32px;
}

.testimonial-stars {
  color: var(--red);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
}

.author-title {
  font-size: 13px;
  color: var(--text-muted);
}

.trust-badges {
  padding: 60px 0;
  background: var(--bg-card);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.badge svg {
  width: 40px;
  height: 40px;
  color: var(--red);
}

.badge span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  text-align: center;
}

.faq {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 24px;
  color: var(--red);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.contact {
  padding: 100px 0;
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 30, 58, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

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

.contact-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
  color: var(--text-primary);
  font-size: 15px;
}

.contact-item a:hover {
  color: var(--red);
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
}

.contact-cta-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-qr-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-qr-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.contact-qr-link:hover {
  border-color: var(--red);
  box-shadow: 0 0 24px rgba(196, 30, 58, 0.25);
}

.contact-qr-img {
  display: block;
  width: 160px;
  height: auto;
  vertical-align: middle;
}

.contact-qr-note {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  text-align: left;
}

.contact-qr-note a {
  color: var(--text-primary);
}

.contact-qr-note a:hover {
  color: var(--red);
}

.cta-heading {
  font-size: 22px;
  margin-bottom: 8px;
  text-align: center;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--bg-tertiary);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--red-glow);
}

.cta-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 30, 58, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

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

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.cta-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-links h4,
.footer-services h4,
.footer-social h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--red);
}

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

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--red);
  border-color: var(--red);
}

.social-links svg {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
}

.social-links a:hover svg {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .vehicle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .gallery-item.large {
    grid-column: span 1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .calculator {
    padding: 24px;
  }
  
  .vehicle-grid,
  .service-grid,
  .addons-grid {
    grid-template-columns: 1fr;
  }
  
  .badges-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* === Real before/after photos === */
.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-tag {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border-radius: 4px;
  pointer-events: none;
  z-index: 9;
}
.ba-tag-left { left: 16px; }
.ba-tag-right { right: 16px; background: var(--gold, #d4a017); color: #000; }

/* === Calculator addon note === */
.addons-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 16px;
  font-style: italic;
}

/* === Booking form === */
.booking {
  padding: 100px 0;
  background: var(--bg-secondary, #0e0e0e);
}
.booking-form {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-lg);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 28px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row-full { grid-column: 1 / -1; }
.form-row label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.form-row .req { color: #e84118; margin-left: 4px; }
.form-row .opt { color: var(--text-muted); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 12px; }
.form-row input,
.form-row select,
.form-row textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary, #fff);
  padding: 12px 14px;
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold, #d4a017);
  background: rgba(255,255,255,0.06);
}
.form-row textarea { resize: vertical; min-height: 80px; }
.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 6px 0;
}
.checkbox-row .cb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-primary);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 12px;
  border-radius: 999px;
}
.checkbox-row .cb input { accent-color: var(--gold, #d4a017); }
.booking-disclaimer {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 16px;
}
.booking-success {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 16px;
  text-align: center;
}
.booking-success h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--gold, #d4a017);
}
.booking-success-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .booking-form { padding: 24px; }
  .booking-grid { grid-template-columns: 1fr; }
}

/* === Reviews CTA (replaces fake testimonials) === */
.reviews-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* === DM / Snap "how to book" instruction card === */
.dm-howto {
  max-width: 880px;
  margin: 36px auto 0;
}
.dm-howto-card {
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 16px;
  padding: 32px;
}
.dm-howto-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--gold, #d4a017);
}
.dm-howto-list {
  list-style: none;
  counter-reset: how;
  padding: 0;
  margin: 0 0 18px 0;
  display: grid;
  gap: 12px;
}
.dm-howto-list li {
  counter-increment: how;
  position: relative;
  padding: 12px 14px 12px 52px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--gold, #d4a017);
  border-radius: 6px;
  font-size: 15px;
  color: var(--text-primary);
}
.dm-howto-list li::before {
  content: counter(how);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold, #d4a017);
  color: #000;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dm-howto-list li em { font-style: italic; color: var(--text-muted); }
.dm-howto-foot {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 0 18px 0;
  text-align: center;
}
.dm-howto-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 640px) {
  .dm-howto-card { padding: 22px; }
  .dm-howto-card h3 { font-size: 19px; }
}

/* === Each gallery slide = clickable Instagram link === */
.slide-image { position: relative; }
.slide-ig-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.slide-ig-link img { display: block; width: 100%; height: 100%; object-fit: cover; }
.slide-ig-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.18);
}
.slide-ig-badge svg { width: 14px; height: 14px; }
.slide-ig-link:hover .slide-ig-badge,
.slide-ig-link:focus-visible .slide-ig-badge {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 640px) {
  .slide-ig-badge { opacity: 1; transform: none; bottom: 10px; right: 10px; font-size: 11px; padding: 6px 10px; }
}

/* === IG-first feed CTA (replaces old gallery-social text block) === */
.ig-feed-card {
  margin: 28px auto 0;
  max-width: 720px;
  text-align: center;
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.08), rgba(212, 160, 23, 0.05));
  border: 1px solid rgba(225, 48, 108, 0.3);
  border-radius: 16px;
  padding: 32px 28px;
}
.ig-feed-icon {
  width: 44px;
  height: 44px;
  color: #e1306c;
  margin: 0 auto 12px;
  display: block;
}
.ig-feed-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.ig-feed-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.ig-feed-card a strong { color: #e1306c; }
.ig-feed-card .gallery-social-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Service Location (Drop-Off vs Mobile) === */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 600px) {
  .location-grid { grid-template-columns: 1fr; }
}
.location-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.location-option {
  display: block;
  cursor: pointer;
}
.location-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 22px 18px;
  background: var(--bg-card);
  border: 2px solid #2a2a2a;
  border-radius: 14px;
  transition: all 0.2s ease;
  height: 100%;
}
.location-card svg {
  width: 38px;
  height: 38px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.location-card:hover {
  border-color: #444;
  background: var(--bg-elevated);
}
.location-option input:checked + .location-card {
  border-color: var(--gold, #d4a017);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 1px var(--gold, #d4a017) inset, 0 6px 24px rgba(212, 160, 23, 0.15);
}
.location-option input:checked + .location-card svg {
  color: var(--gold, #d4a017);
}
.location-option input:focus-visible + .location-card {
  outline: 2px solid var(--gold, #d4a017);
  outline-offset: 2px;
}
.location-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.location-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.upcharge-tag {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold, #d4a017);
  color: #000;
  border-radius: 4px;
}
.mobile-upcharge-note {
  margin: 12px 0 16px;
  padding: 10px 14px;
  background: rgba(212, 160, 23, 0.08);
  border-left: 3px solid var(--gold, #d4a017);
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* === Booking-form location toggle (compact horizontal) === */
.location-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 6px;
}
@media (max-width: 480px) {
  .location-toggle { grid-template-columns: 1fr; }
}
.location-toggle-option {
  display: block;
  position: relative;
  cursor: pointer;
}
.location-toggle-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.location-toggle-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 2px solid #2a2a2a;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.location-toggle-card strong {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.location-toggle-card em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.location-toggle-option:hover .location-toggle-card {
  border-color: #444;
}
.location-toggle-option input:checked + .location-toggle-card {
  border-color: var(--gold, #d4a017);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 1px var(--gold, #d4a017) inset;
}
.location-toggle-option input:focus-visible + .location-toggle-card {
  outline: 2px solid var(--gold, #d4a017);
  outline-offset: 2px;
}
