/* ==========================================================================
   NEW ERA BODY SHOP - Modern Dynamic CSS System
   Aesthetics: Sleek Automotive Dark Mode, Glassmorphism, Electric Accents
   ========================================================================== */

:root {
  --bg-dark: #0b0e14;
  --bg-card: #141923;
  --bg-glass: rgba(20, 25, 35, 0.75);
  --border-glass: rgba(255, 255, 255, 0.1);
  --text-main: #f0f4f8;
  --text-muted: #cbd5e1;
  
  --accent-cyan: #00e5ff;
  --accent-blue: #0066ff;
  --accent-red: #ff3b30;
  --accent-gold: #ffb703;
  
  --gradient-glow: linear-gradient(135deg, #0066ff 0%, #00e5ff 100%);
  --gradient-red: linear-gradient(135deg, #ff3b30 0%, #ff6b00 100%);
  --gradient-gold: linear-gradient(135deg, #ffb703 0%, #ff8800 100%);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  
  --shadow-glow: 0 0 25px rgba(0, 229, 255, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Text & Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold) !important; }
.text-gradient {
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hidden { display: none !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient-glow);
  color: #050b14;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-glow {
  background: var(--gradient-red);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 59, 48, 0.4);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 59, 48, 0.6);
}

.btn-outline {
  background: rgba(11, 14, 20, 0.65);
  border-color: var(--border-glass);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--accent-cyan);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

/* Glass Panels */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}

/* Top Bar */
.top-bar {
  background: #06080d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.45rem 0;
}

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

.top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-info span i {
  color: var(--accent-cyan);
  margin-right: 0.3rem;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Top Social Media Bar */
.top-social-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: #ffffff;
  transition: var(--transition);
}

.social-icon.whatsapp:hover { background: #25d366; color: white; border-color: #25d366; box-shadow: 0 0 10px rgba(37, 211, 102, 0.5); }
.social-icon.facebook:hover { background: #1877f2; color: white; border-color: #1877f2; box-shadow: 0 0 10px rgba(24, 119, 242, 0.5); }
.social-icon.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; border-color: transparent; }
.social-icon.tiktok:hover { background: #000000; color: #00f2fe; border-color: #fe2c55; box-shadow: 0 0 10px rgba(254, 44, 85, 0.5); }
.social-icon.google:hover { background: #ea4335; color: white; border-color: #ea4335; box-shadow: 0 0 10px rgba(234, 67, 53, 0.5); }

/* Prominent Glowing Language Switcher */
.lang-switch-box {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid var(--accent-cyan);
  padding: 0.2rem 0.6rem;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
}

.lang-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-right: 0.2rem;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover, .lang-btn.active {
  background: var(--gradient-glow);
  color: #050b14;
  border-color: transparent;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.lang-btn.highlight-es {
  background: rgba(255, 183, 3, 0.18);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.lang-btn.highlight-es:hover, .lang-btn.highlight-es.active {
  background: var(--gradient-gold);
  color: #050b14;
  border-color: transparent;
  box-shadow: 0 0 12px rgba(255, 183, 3, 0.5);
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 14, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0;
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-logo-img {
  height: 52px;
  width: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 59, 48, 0.4);
  box-shadow: 0 0 12px rgba(255, 59, 48, 0.3);
  object-fit: contain;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
  color: #ffffff;
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-cyan);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link.highlight {
  color: var(--accent-cyan);
  font-weight: 700;
}

.nav-link.highlight-red {
  color: var(--accent-red);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-cyan);
  border-radius: 2px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Brighter logo background image in Hero */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(1px);
  opacity: 0.55;
  transform: scale(1.02);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 40% 50%, rgba(11,14,20,0.68) 0%, rgba(11,14,20,0.88) 100%);
  z-index: 2;
}

.hero-grid-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(11, 14, 20, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.6);
  color: var(--accent-cyan);
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.25);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(0,0,0,0.9);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #f1f5f9;
  margin-bottom: 2.2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card.highlight-stat {
  border-left: 2px solid var(--accent-gold);
  padding-left: 0.5rem;
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Official Logo Showcase Card in Hero */
.hero-logo-showcase {
  display: flex;
  justify-content: center;
}

.logo-card-frame {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.2);
  position: relative;
  text-align: center;
  background: rgba(16, 21, 31, 0.85);
  transition: var(--transition);
}

.logo-card-frame:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 45px rgba(0, 229, 255, 0.35);
}

.hero-showcase-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  border: 1px solid var(--border-glass);
}

.logo-card-footer {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1rem;
}

.footer-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.footer-tag i {
  color: var(--accent-cyan);
}

/* Certifications Section 2-Column Split */
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.cert-badges-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cert-badge-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.cert-badge-item.highlight-mercury {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.mercury-icon {
  background: rgba(0, 229, 255, 0.2) !important;
  color: var(--accent-cyan) !important;
}

.cert-badge-item.highlight-gold {
  background: rgba(255, 183, 3, 0.06);
  border-color: rgba(255, 183, 3, 0.4);
}

.cert-badge-item:hover {
  border-color: var(--accent-cyan);
  transform: translateX(5px);
}

.cert-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 229, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.highlight-gold .cert-icon {
  background: rgba(255, 183, 3, 0.15);
  color: var(--accent-gold);
}

.cert-badge-item h3 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  color: white;
  margin-bottom: 0.15rem;
}

.cert-badge-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Right-Side OEM Certifications Real Badges Grid Container */
.cert-oem-right-container {
  padding: 1.8rem 1.4rem;
  border: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: rgba(16, 21, 31, 0.85);
  border-radius: var(--radius-md);
}

.oem-right-header {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.oem-right-header i {
  color: var(--accent-cyan);
}

.oem-real-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.oem-real-badge-box {
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 95px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.oem-real-badge-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.3);
}

.oem-real-badge-box img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.cyan-text { color: var(--accent-cyan) !important; }
.gold-text { color: var(--accent-gold) !important; }

/* Contact Section Social Buttons */
.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.c-soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  transition: var(--transition);
}

.c-soc-btn.whatsapp { border-color: #25d366; color: #25d366; }
.c-soc-btn.whatsapp:hover { background: #25d366; color: white; }

.c-soc-btn.facebook { border-color: #1877f2; color: #1877f2; }
.c-soc-btn.facebook:hover { background: #1877f2; color: white; }

.c-soc-btn.instagram { border-color: #e6683c; color: #e6683c; }
.c-soc-btn.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743); color: white; }

.c-soc-btn.tiktok { border-color: #fe2c55; color: #fe2c55; }
.c-soc-btn.tiktok:hover { background: #fe2c55; color: white; }

/* Footer Social Icons */
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.footer-social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social-icons a:hover {
  background: var(--gradient-glow);
  color: #050b14;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

/* 24/7 Emergency Towing & Accident Dispatch Section */
.towing-card {
  padding: 3rem 2.5rem;
  border-color: rgba(255, 59, 48, 0.4);
  background: linear-gradient(135deg, rgba(20, 25, 35, 0.9) 0%, rgba(35, 15, 20, 0.8) 100%);
  box-shadow: 0 10px 40px rgba(255, 59, 48, 0.15);
}

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

.towing-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 2.5rem;
}

.towing-step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.t-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
}

.towing-step h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.towing-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.towing-cta-box {
  background: rgba(10, 14, 22, 0.85);
  border: 1px solid rgba(255, 59, 48, 0.4);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.towing-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.towing-big-icon {
  font-size: 3.2rem;
  color: var(--accent-red);
  margin-bottom: 1rem;
}

.towing-cta-box h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0.4rem;
}

.towing-cta-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.towing-partner-tag {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 700;
}

/* Dedicated Mercury Feature Box */
.mercury-highlight-box {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  padding: 2rem;
  border-color: var(--accent-cyan);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08) 0%, rgba(20, 25, 35, 0.9) 100%);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.mercury-big-shield {
  font-size: 2.8rem;
  color: var(--accent-cyan);
  margin-bottom: 0.8rem;
}

.mercury-highlight-box h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0.4rem;
}

.mercury-highlight-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Facility Gallery Grid */
.facility-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.facility-card {
  overflow: hidden;
  transition: var(--transition);
}

.facility-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
}

.facility-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.facility-info {
  padding: 1.2rem;
}

.facility-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: white;
  margin-bottom: 0.2rem;
}

.facility-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Features Bar */
.features-bar {
  background: #0f141f;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 2rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-text h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #ffffff;
}

.feature-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Estimator Section */
.estimator-card {
  padding: 2.5rem;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}

.estimator-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.step-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 0.6rem;
  border-radius: 30px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.step-pill.active {
  background: var(--gradient-glow);
  color: #050b14;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

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

.form-step h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.damage-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.damage-options-grid.grid-5-cols {
  grid-template-columns: repeat(5, 1fr);
}

.damage-card input {
  display: none;
}

.damage-card-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 1.5rem 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.damage-card-inner i {
  font-size: 2rem;
  color: var(--accent-cyan);
  margin-bottom: 0.8rem;
}

.damage-card-inner h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.damage-card-inner p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.damage-card input:checked + .damage-card-inner {
  background: rgba(0, 229, 255, 0.12);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.upload-dropzone {
  border: 2px dashed var(--accent-cyan);
  background: rgba(0, 229, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.upload-dropzone:hover {
  background: rgba(0, 229, 255, 0.08);
}

.upload-icon {
  font-size: 3rem;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.preview-files {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.preview-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--accent-cyan);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.full-width {
  grid-column: span 2;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.input-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.input-group input, .input-group select, .input-group textarea {
  background: rgba(10, 14, 22, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.estimate-summary-box {
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.3);
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
  text-align: center;
}

.summary-title {
  font-weight: 700;
  color: #ff6b60;
}

.summary-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0.3rem 0;
}

.summary-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

/* Modal */
.estimate-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 14, 20, 0.95);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 10;
}

.modal-content {
  max-width: 500px;
}

.success-icon {
  font-size: 3.5rem;
  color: #22c55e;
  margin-bottom: 1rem;
}

.modal-price-box {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--accent-cyan);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}

.modal-price-box h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-cyan);
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Before / After Comparison Slider */
.ba-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.ba-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
}

.ba-tab-btn.active, .ba-tab-btn:hover {
  background: var(--gradient-glow);
  color: #050b14;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.comparison-slider-container {
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  border: 1px solid var(--border-glass);
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 520px;
  user-select: none;
  overflow: hidden;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.image-before {
  width: 50%;
  overflow: hidden;
  border-right: 3px solid var(--accent-cyan);
  z-index: 2;
}

.image-before img {
  width: 900px;
  max-width: none;
}

.ba-badge {
  position: absolute;
  top: 1.5rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  z-index: 3;
}

.before-badge {
  left: 1.5rem;
  background: rgba(255, 59, 48, 0.85);
  color: white;
}

.after-badge {
  right: 1.5rem;
  background: rgba(34, 197, 94, 0.85);
  color: white;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--accent-cyan);
  z-index: 4;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.ba-handle-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-glow);
  color: #050b14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
}

.ba-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.ba-detail-card {
  background: rgba(20, 25, 35, 0.5);
  border: 1px solid var(--border-glass);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.ba-detail-card i {
  font-size: 1.8rem;
  color: var(--accent-cyan);
  margin-bottom: 0.8rem;
}

.ba-detail-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: white;
  margin-bottom: 0.3rem;
}

.ba-detail-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.service-card {
  padding: 2rem;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050b14;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list li i {
  color: var(--accent-cyan);
}

/* Banner Section */
.banner-section {
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.banner-section h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: white;
  margin-bottom: 1rem;
}

.banner-section p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}

.banner-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Insurance Logos */
.insurance-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 960px;
  margin: 0 auto;
}

.insurance-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #cbd5e1;
  transition: var(--transition);
  text-align: center;
}

.insurance-card.highlight-card {
  background: rgba(0, 229, 255, 0.15);
  border-color: var(--accent-cyan);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.insurance-card.highlight-card-gold {
  background: rgba(255, 183, 3, 0.12);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  font-weight: 800;
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.25);
}

.insurance-card:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--accent-cyan);
  color: #ffffff;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.review-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.reviewer strong {
  display: block;
  color: #ffffff;
}

.reviewer span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Contact & Map */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.c-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 1.2rem;
  border-radius: var(--radius-sm);
}

.c-info-card i {
  font-size: 1.4rem;
  color: var(--accent-cyan);
  margin-top: 0.2rem;
}

.c-info-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: white;
}

.c-info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.map-card {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.status-live {
  font-size: 0.8rem;
  color: #22c55e;
  font-weight: 600;
}

.map-box {
  flex-grow: 1;
  background: rgba(10, 14, 22, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
}

.map-pin-icon {
  font-size: 3rem;
  color: var(--accent-red);
  margin-bottom: 1rem;
}

.map-placeholder h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.3rem;
}

.map-placeholder p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Footer */
.main-footer {
  background: #05080c;
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 380px;
}

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-phone {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-cyan);
  display: block;
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Floating Call Button */
.floating-call-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: var(--gradient-red);
  color: white;
  padding: 0.8rem 1.4rem;
  border-radius: 40px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 59, 48, 0.6);
  align-items: center;
  gap: 0.6rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid-layout, .towing-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-title { font-size: 2.6rem; }
  .cert-grid { grid-template-columns: 1fr; }
  .oem-real-badges-grid { grid-template-columns: repeat(3, 1fr); }
  .facility-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .damage-options-grid.grid-5-cols { grid-template-columns: repeat(3, 1fr); }
  .insurance-logos-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .top-bar-content { flex-direction: column; text-align: center; }
  .top-social-bar { justify-content: center; }
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding: 4rem 0 3rem; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-card { border-right: none; }
  .oem-real-badges-grid { grid-template-columns: repeat(2, 1fr); }
  .damage-options-grid.grid-5-cols, .facility-gallery-grid, .features-grid, .damage-options-grid, .services-grid, .reviews-grid, .contact-grid { grid-template-columns: 1fr; }
  .insurance-logos-grid { grid-template-columns: 1fr; }
  .estimator-steps { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .full-width { grid-column: span 1; }
  .ba-slider { height: 340px; }
  .ba-details-grid { grid-template-columns: 1fr; }
  .floating-call-btn { display: flex; }
}
