/* ============================================
   OptiDrive — Remapping & Diagnostics
   Modern Redesign Stylesheet
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --clr-bg-primary: #0a0e17;
  --clr-bg-secondary: #0e1623;
  --clr-bg-card: #111827;
  --clr-bg-dark: #07090e;
  --clr-accent: #00d4ff;
  --clr-accent-hover: #33dfff;
  --clr-cta: #f0a500;
  --clr-cta-hover: #ffbc1f;
  --clr-text: #e0e8f0;
  --clr-text-muted: #8fa3b8;
  --clr-white: #ffffff;
  --clr-border: rgba(0, 212, 255, 0.15);
  --clr-overlay: rgba(11, 26, 46, 0.85);

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 50%;

  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.15);
  --shadow-cta: 0 4px 20px rgba(240, 165, 0, 0.35);

  --transition: 0.3s ease;
  --max-width: 1240px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--clr-bg-primary);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

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

address {
  font-style: normal;
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--clr-white);
}

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

/* ---------- Utility ---------- */
.section-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--clr-accent);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 50px;
  height: 2px;
  background: var(--clr-accent);
  opacity: 0.4;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 20px;
  color: var(--clr-accent);
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  color: var(--clr-text-muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta {
  background: var(--clr-cta);
  color: var(--clr-bg-primary);
  box-shadow: var(--shadow-cta);
}

.btn-cta:hover {
  background: var(--clr-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(240, 165, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--clr-accent);
  border: 2px solid var(--clr-accent);
}

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

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(11, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
}

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

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

.logo img {
  width: 50px;
  height: 50px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-white);
}

.logo-text span {
  color: var(--clr-accent);
}

.logo-sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-text-muted);
  display: block;
  margin-top: -2px;
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-accent);
}

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-cta);
  color: var(--clr-bg-primary) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
}

.nav-facebook {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1877f2;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
}

.nav-phone::after {
  display: none !important;
}

.nav-phone:hover {
  background: var(--clr-cta-hover) !important;
  color: var(--clr-bg-primary) !important;
}

.nav-facebook:hover {
  background: #0f60c2;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  position: relative;
  z-index: 1001;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--clr-bg-primary) 0%, var(--clr-bg-secondary) 50%, var(--clr-bg-primary) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.06) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title-row {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 230px);
  gap: 18px;
  align-items: center;
  margin-bottom: 12px;
}

.hero-content h1,
.hero-title-stack {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 0;
  line-height: 1.15;
}

.hero-title-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-content h1 .highlight,
.hero-title-stack .highlight {
  color: var(--clr-accent);
}

.hero-van-side {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
  background: var(--clr-bg-dark);
}

.hero-content .hero-tagline {
  font-size: 1.15rem;
  color: var(--clr-text-muted);
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--clr-text);
}

.hero-features li .icon {
  width: 28px;
  height: 28px;
  background: rgba(0, 212, 255, 0.12);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-lookup {
  border: none;
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  box-shadow: var(--shadow-card);
  background: var(--clr-bg-card);
}

.hero-image > img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--clr-bg-card);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-glow);
}

.hero-badge .badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 212, 255, 0.12);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-accent);
}

.hero-badge .badge-text {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.hero-badge .badge-text strong {
  display: block;
  color: var(--clr-white);
  font-size: 1rem;
}

/* ============================================
   SERVICE CARDS (3-column)
   ============================================ */
.services-overview {
  padding: 100px 0;
  background: var(--clr-bg-dark);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(0, 212, 255, 0.35);
}

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

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--clr-accent);
}

.service-card-body p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}

.service-card-body .card-link {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-cta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-card-body .card-link:hover {
  gap: 12px;
  color: var(--clr-cta-hover);
}

/* ============================================
   ABOUT / WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--clr-bg-primary);
}

.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  object-fit: cover;
}

.why-us-image::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--clr-accent);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: -1;
}

.why-us-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--clr-accent);
  margin-bottom: 20px;
}

.why-us-content > p {
  color: var(--clr-text-muted);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-us-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
}

.why-us-list li .check {
  width: 26px;
  height: 26px;
  background: rgba(0, 212, 255, 0.12);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   EXPERTISE / FEATURE SECTION
   ============================================ */
.expertise {
  padding: 100px 0;
  background: var(--clr-bg-secondary);
}

.expertise .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.expertise-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--clr-accent);
  margin-bottom: 20px;
}

.expertise-content > p {
  color: var(--clr-text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.expertise-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  object-fit: cover;
}

/* ============================================
   ADBLUE / DPF FEATURE BANNER
   ============================================ */
.feature-banner {
  padding: 80px 0;
  background: var(--clr-bg-dark);
  position: relative;
  overflow: hidden;
}

.feature-banner .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.feature-banner-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  object-fit: cover;
}

.feature-banner-content h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--clr-white);
}

.feature-banner-content p {
  color: var(--clr-text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.feature-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.feature-checks span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 212, 255, 0.08);
  color: var(--clr-text);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid var(--clr-border);
}

.feature-checks span .tick {
  color: var(--clr-accent);
}

/* ============================================
   SERVICES PAGE — DETAILED SECTIONS
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--clr-bg-primary) 0%, var(--clr-bg-secondary) 100%);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--clr-accent);
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--clr-text-muted);
  font-size: 1.1rem;
}

.service-detail {
  padding: 80px 0;
}

.service-detail:nth-child(even) {
  background: var(--clr-bg-secondary);
}

.service-detail:nth-child(odd) {
  background: var(--clr-bg-primary);
}

.service-detail .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail:nth-child(even) .container {
  direction: rtl;
}

.service-detail:nth-child(even) .container > * {
  direction: ltr;
}

.service-detail-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--clr-accent);
  margin-bottom: 16px;
}

.service-detail-content > p {
  color: var(--clr-text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
}

.service-detail-content ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.service-detail-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--clr-text);
}

.service-detail-content ul li .tick {
  color: var(--clr-accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.service-detail-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 80px 0;
  background: var(--clr-bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: var(--shadow-glow);
}

.contact-card .card-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}

.contact-card a:hover {
  color: var(--clr-accent);
}

.contact-form {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 36px;
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--clr-accent);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--clr-bg-secondary);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-accent);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group select option {
  background: var(--clr-bg-secondary);
  color: var(--clr-text);
}

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

/* ============================================
   LOCATIONS PAGE
   ============================================ */
.locations-section {
  padding: 80px 0;
  background: var(--clr-bg-primary);
}

.locations-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.location-focus h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--clr-accent);
  margin-bottom: 10px;
}

.location-note {
  color: var(--clr-text-muted);
  margin-bottom: 18px;
}

.address-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 26px;
}

.address-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.address-card h3 i {
  color: var(--clr-accent);
}

.address-card p {
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-map iframe {
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.major-locations {
  padding: 80px 0;
  background: var(--clr-bg-secondary);
}

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

.location-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  overflow: hidden;
}

.location-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: var(--shadow-glow);
}

.location-item-link {
  display: block;
  height: 100%;
  padding: 20px;
}

.location-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--clr-white);
}

.location-item p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.location-item-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--clr-accent);
  text-transform: uppercase;
}

.location-item:hover .location-item-cta {
  color: var(--clr-accent-hover);
}

.locality-content {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--clr-bg-primary) 0%, var(--clr-bg-secondary) 100%);
}

.locality-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.locality-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.locality-card h3 {
  font-size: 1.08rem;
  color: var(--clr-accent);
  margin-bottom: 8px;
}

.locality-card p {
  color: var(--clr-text-muted);
  font-size: 0.94rem;
}

.location-detail-page .location-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.location-detail-page .location-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.location-detail-page .location-bullets li i {
  color: var(--clr-accent);
  margin-top: 5px;
  font-size: 0.8rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 30px;
  background: var(--clr-bg-dark);
  border-top: 1px solid var(--clr-border);
}

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

.footer-about .logo {
  margin-bottom: 16px;
}

.footer-about p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-social-label {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
}

.footer-socials a {
  width: 62px;
  height: 62px;
  background: var(--clr-accent);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-bg-primary);
  font-size: 1.35rem;
  transition: transform var(--transition), filter var(--transition);
}

.footer-socials a:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.footer-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--clr-white);
}

.footer-col ul li {
  margin-bottom: 10px;
}

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

.footer-col ul a:hover {
  color: var(--clr-accent);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

.footer-contact-item .fc-icon {
  color: var(--clr-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 24px;
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 0.8rem;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: static;
  z-index: auto;
  margin: 0 auto 32px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  color: white;
  font-size: 1.6rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ============================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  /* --- Layout stacks --- */
  .hero .container,
  .why-us .container,
  .expertise .container,
  .feature-banner .container,
  .service-detail .container,
  .locations-section .container,
  .coverage-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Hero right-column below content */
  .hero .container { padding-top: 20px; }

  /* Service detail alternating – kill RTL on tablet */
  .service-detail:nth-child(even) .container { direction: ltr; }

  /* Footer 2-col */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Locations 2-col */
  .locations-grid { grid-template-columns: repeat(2, 1fr); }

  /* Features 2-col */
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process 3-col */
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }

  /* Stats bar – wrap to 2×2 */
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid var(--clr-border); }
  .stat-item:nth-child(4) { border-right: none; }

  /* Hero lookup full width */
  .hero-lookup { max-width: 100%; }

  /* Section header allows wrapping */
  .section-header-row { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  .ticker-wrap {
    margin-top: 74px;
  }

  .lookup-page .ticker-wrap {
    display: none;
  }

  .lookup-page .ticker-track span {
    font-size: 0.6rem;
    letter-spacing: 1px;
    padding: 0 12px;
    gap: 12px;
  }

  /* --- Navigation drawer --- */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--clr-bg-secondary);
    flex-direction: column;
    padding: 96px 30px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 40px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    z-index: 999;
    border-left: 1px solid var(--clr-border);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
  }
  .nav-links a.nav-phone,
  .nav-links a.nav-facebook {
    margin-top: 16px;
    padding: 14px 20px;
    justify-content: center;
    border-radius: var(--radius-sm);
    border-bottom: none;
    font-size: 1rem;
  }
  .menu-toggle { display: flex; }

  /* --- Hero --- */
  .hero {
    min-height: auto;
    padding: 100px 0 56px;
  }
  .hero .container { gap: 32px; }
  .hero-title-stack {
    font-size: clamp(2.8rem, 11vw, 4rem) !important;
  }
  .hero-tagline { font-size: 1rem; max-width: 100%; }
  .hero-features { gap: 10px; margin-bottom: 28px; }
  .hero-features li { font-size: 0.95rem; }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-buttons .btn { justify-content: center; width: 100%; }
  .hero-info-strip { gap: 16px; flex-wrap: wrap; }
  .hero-van-main { height: 220px; }
  .hero-coverage-badge { top: 10px; right: 10px; }
  .hero-price-badge { bottom: 10px; right: 10px; }

  /* --- Stats bar --- */
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: clamp(1.6rem, 6vw, 2rem); }

  /* --- Services grid --- */
  .services-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
  .services-overview { padding: 64px 0; }

  /* --- Section headers --- */
  .section-title-split { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .section-header-row { gap: 12px; }

  /* --- Features grid --- */
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .features-section { padding: 64px 0; }
  .features-heading h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* --- Process --- */
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-section { padding: 64px 0; }

  /* --- Coverage section --- */
  .coverage-section { padding: 64px 0; }
  .coverage-section .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .coverage-map-placeholder { min-height: 200px; }
  .coverage-content .section-title-split {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    margin-bottom: 16px;
  }
  .coverage-content > p {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .coverage-towns { grid-template-columns: 1fr; gap: 0; }
  .coverage-towns li {
    font-size: 0.9rem;
    padding: 8px 0;
  }

  /* --- CTA --- */
  .cta-section { padding: 64px 0; }
  .cta-section h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .cta-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-buttons .btn { justify-content: center; }

  /* --- Why Us / Expertise / Feature Banner --- */
  .why-us { padding: 64px 0; }
  .expertise { padding: 64px 0; }
  .feature-banner { padding: 56px 0; }
  .feature-checks { flex-direction: column; }

  /* --- Service detail pages --- */
  .service-detail { padding: 56px 0; }
  .service-detail-image img { height: 240px; }

  /* --- Contact --- */
  .contact-section { padding: 56px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 20px; }

  /* --- Vehicle lookup page --- */
  .lookup-card {
    padding: 20px;
    max-width: 100%;
  }
  .lookup-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .lookup-actions .btn { justify-content: center; }
  .lookup-frame { height: 760px; }

  /* --- Locations grid --- */
  .locations-grid { grid-template-columns: 1fr; gap: 12px; }
  .major-locations { padding: 56px 0; }
  .locality-columns { grid-template-columns: 1fr; }
  .location-detail-page .location-map { min-height: 240px; }

  /* --- Page hero --- */
  .page-hero { padding: 120px 0 56px; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .page-hero p { font-size: 1rem; }

  /* --- Footer --- */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-about { max-width: 100%; }

  /* --- Ticker --- */
  .ticker-track span { font-size: 0.72rem; padding: 0 18px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
  .ticker-wrap {
    margin-top: 70px;
  }

  .lookup-page .ticker-wrap {
    display: none;
  }

  .lookup-page .ticker-track span {
    font-size: 0.56rem;
    letter-spacing: 0.8px;
    padding: 0 10px;
    gap: 10px;
  }

  /* --- Base --- */
  .container { padding: 0 16px; }

  /* --- Hero --- */
  .hero { padding: 88px 0 48px; }
  .hero-title-stack { font-size: clamp(2.4rem, 13vw, 3.2rem) !important; }
  .hero-tagline { font-size: 0.95rem; }
  .hero-pill { font-size: 0.65rem; letter-spacing: 1.5px; }
  .hero-van-main { height: 180px; }
  .hero-price-badge { display: none; }
  .hero-info-strip { gap: 10px; }
  .hero-info-item { font-size: 0.66rem; }
  .hero-lookup { border-radius: var(--radius-md); }

  /* --- Stats bar --- */
  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item { padding: 22px 12px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.62rem; }

  /* --- Section labels / titles --- */
  .section-label { font-size: 0.68rem; letter-spacing: 2px; }
  .section-title-split { font-size: clamp(1.6rem, 10vw, 2rem); }

  /* --- Services --- */
  .service-card-img { height: 170px; }
  .service-card-body { padding: 20px; }
  .service-card-body h3 { font-size: 1.05rem; }
  .service-card-cat { font-size: 0.65rem; }

  /* --- Features --- */
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { padding: 24px 18px; }

  /* --- Process --- */
  .process-steps { grid-template-columns: 1fr; }
  .process-num { width: 46px; height: 46px; font-size: 0.8rem; }

  /* --- Coverage --- */
  .coverage-map-placeholder {
    min-height: 160px;
    padding: 26px 18px;
    gap: 6px;
  }
  .coverage-map-placeholder i {
    font-size: 2.3rem;
    margin-bottom: 8px;
  }
  .coverage-map-placeholder strong {
    font-size: 0.95rem;
    letter-spacing: 1.4px;
  }
  .coverage-map-placeholder .cov-county,
  .coverage-map-placeholder .cov-radius {
    font-size: 0.72rem;
  }
  .coverage-content .section-title-split {
    font-size: clamp(1.45rem, 9vw, 1.9rem);
  }
  .coverage-content > p {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .coverage-towns { grid-template-columns: 1fr; }
  .coverage-towns li {
    font-size: 0.84rem;
    gap: 8px;
  }

  /* --- Buttons --- */
  .btn { padding: 13px 22px; font-size: 0.88rem; }

  /* --- Contact form --- */
  .contact-form { padding: 20px 16px; }
  .contact-form h3 { font-size: 1.2rem; }

  /* --- Vehicle lookup page --- */
  .lookup-card {
    padding: 16px;
    max-width: 100%;
  }
  .lookup-frame { height: 680px; }

  /* --- Page hero --- */
  .page-hero { padding: 100px 0 48px; }

  /* --- Footer --- */
  .footer-bottom { font-size: 0.72rem; }
  .footer-col h4 { font-size: 0.88rem; }

  /* --- WhatsApp float --- */
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; margin: 0 auto 24px; }
}

/* ============================================
   TICKER BANNER
   ============================================ */
.ticker-wrap {
  background: var(--clr-accent);
  overflow: hidden;
  overflow-x: clip;
  margin-top: 88px;
  padding: 11px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 35s linear infinite;
}

.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-track span {
  color: #07090e;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.ticker-track span::before {
  content: '◆';
  font-size: 0.45rem;
  opacity: 0.55;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   HERO — PILL, INFO STRIP, VAN WRAP, BADGES
   ============================================ */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--clr-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--clr-accent);
  border-radius: 50%;
  animation: pill-pulse 2s ease-in-out infinite;
}

@keyframes pill-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.hero-info-strip {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-wrap: wrap;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-text-muted);
  font-weight: 600;
}

.hero-info-item i {
  color: var(--clr-accent);
  font-size: 0.82rem;
}

.hero-van-wrap {
  position: relative;
  margin-bottom: 14px;
}

.hero-van-main {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: block;
}

.hero-coverage-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(7, 9, 14, 0.84);
  backdrop-filter: blur(8px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hcb-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-text-muted);
  font-weight: 600;
}

.hcb-place {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-white);
  font-family: var(--font-heading);
}

.hero-price-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(7, 9, 14, 0.84);
  backdrop-filter: blur(8px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hpb-icon {
  width: 34px;
  height: 34px;
  background: rgba(0, 212, 255, 0.14);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.hpb-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-white);
  font-family: var(--font-heading);
}

.hpb-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--clr-text-muted);
}

.btn-teal {
  background: var(--clr-accent);
  color: #07090e;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-teal:hover {
  background: var(--clr-accent-hover);
  color: #07090e;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 212, 255, 0.48);
}

/* ============================================
   SECTION UTILITY — SPLIT TITLES, VIEW-ALL
   ============================================ */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-label.label-left {
  justify-content: flex-start;
  text-align: left;
}

.section-label.label-left::before,
.section-label.label-left::after {
  display: none;
}

.section-title-split {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1.05;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.section-title-split.center {
  text-align: center;
}

.section-title-split .teal,
.teal {
  color: var(--clr-accent);
}

.section-viewall {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: gap var(--transition);
  white-space: nowrap;
}

.section-viewall:hover {
  gap: 12px;
}

.service-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ============================================
   FEATURES SECTION (6-card grid)
   ============================================ */
.features-section {
  padding: 100px 0;
  background: var(--clr-bg-dark);
}

.features-heading {
  text-align: center;
  margin-bottom: 60px;
}

.features-heading .section-label {
  margin-bottom: 20px;
}

.features-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

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

.feature-item {
  background: var(--clr-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: all var(--transition);
}

.feature-item:hover {
  border-color: var(--clr-border);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.feature-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.feature-item:nth-child(4) .feature-item-icon,
.feature-item:nth-child(5) .feature-item-icon {
  background: rgba(240, 165, 0, 0.1);
  color: var(--clr-cta);
}

.feature-item h4 {
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  padding: 100px 0;
  background: var(--clr-bg-primary);
}

.process-heading {
  text-align: center;
  margin-bottom: 60px;
}

.process-heading .section-label {
  margin-bottom: 16px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: var(--clr-border);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
}

.process-num {
  width: 54px;
  height: 54px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--clr-accent);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.process-step h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.84rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* ============================================
   COVERAGE SECTION
   ============================================ */
.coverage-section {
  padding: 100px 0;
  background: var(--clr-bg-secondary);
}

.coverage-section .container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.coverage-map-placeholder {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 24px;
  text-align: center;
}

.coverage-map-placeholder i {
  font-size: 3.2rem;
  color: var(--clr-accent);
  opacity: 0.55;
  margin-bottom: 12px;
}

.coverage-map-placeholder strong {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-white);
}

.coverage-map-placeholder .cov-county {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-text-muted);
}

.coverage-map-placeholder .cov-radius {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: 6px;
}

.coverage-content .section-label {
  justify-content: flex-start;
}

.coverage-content .section-label::before,
.coverage-content .section-label::after {
  display: none;
}

.coverage-content .section-title-split {
  margin-bottom: 22px;
}

.coverage-content > p {
  color: var(--clr-text-muted);
  margin-bottom: 32px;
  font-size: 0.975rem;
  line-height: 1.75;
}

.coverage-content > p strong {
  color: var(--clr-white);
}

.coverage-towns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}

.coverage-towns li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--clr-text);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.coverage-towns li i {
  color: var(--clr-accent);
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* ============================================
   VEHICLE LOOKUP PAGE
   ============================================ */
.lookup-page .ticker-wrap {
  margin-top: 88px;
}

.lookup-section {
  padding: 70px 0 100px;
  background: var(--clr-bg-primary);
}

.lookup-section .container {
  max-width: 980px;
}

.lookup-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px;
  max-width: 860px;
  margin: 0 auto;
}

.lookup-card h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.lookup-card > p {
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}

.lookup-frame {
  margin-top: 10px;
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background: var(--clr-bg-secondary);
}

.lookup-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: var(--clr-bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section .section-label {
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--clr-white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.cta-section p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   FUTURISTIC POLISH — ANIMATIONS & EFFECTS
   ============================================ */

/* --- Page Entrance --- */
body {
  animation: pageEnter 0.5s ease both;
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0, 212, 255, 0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-accent); }

/* --- Dot Grid Background --- */
.hero,
.features-section,
.cta-section,
.process-section {
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 212, 255, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
}

/* --- Hero Title --- */
.hero-title-stack {
  font-size: clamp(3rem, 7vw, 5.2rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.0 !important;
}

/* --- Van Float Animation --- */
.hero-van-main {
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* --- Button: position + overflow for shine --- */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}
.btn:hover::after {
  left: 160%;
}

/* --- Service Card Neon Top-Border --- */
.service-card {
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.service-card:hover::before { opacity: 1; }

/* --- Feature Item Neon Top-Border --- */
.feature-item {
  position: relative;
}
.feature-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.feature-item:hover::before { opacity: 1; }

/* --- Location Item Neon Top-Border --- */
.location-item {
  position: relative;
}
.location-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.location-item:hover::before { opacity: 1; }

/* --- Card Mouse-Glow via CSS custom properties --- */
.service-card,
.feature-item,
.location-item,
.contact-card,
.process-step {
  --glow-x: 50%;
  --glow-y: 50%;
  background-image: none;
  transition: background-image 0s, transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover,
.feature-item:hover,
.location-item:hover,
.contact-card:hover {
  background-image: radial-gradient(
    circle 200px at var(--glow-x) var(--glow-y),
    rgba(0, 212, 255, 0.055),
    transparent 70%
  );
}

/* --- Process Number Pulse Ring --- */
.process-num {
  position: relative;
  transition: all var(--transition);
}
.process-num::after {
  content: '';
  position: absolute;
  top: -5px; left: -5px; right: -5px; bottom: -5px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: calc(var(--radius-sm) + 2px);
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(1.06); }
}
.process-step:hover .process-num {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.22);
  color: var(--clr-white);
}

/* --- Form Input Glow --- */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.14), 0 0 14px rgba(0, 212, 255, 0.1);
}

/* --- Contact Card Icon Glow --- */
.contact-card:hover .card-icon {
  background: var(--clr-accent);
  color: var(--clr-bg-dark);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.4);
}

/* --- Page Hero Upgrade --- */
.page-hero {
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 212, 255, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: var(--clr-accent);
  animation: glowLine 2.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}
@keyframes glowLine {
  0%, 100% { opacity: 0.2; left: 20%; right: 20%; }
  50%       { opacity: 0.9; left: 5%;  right: 5%; }
}
.page-hero h1 {
  background: linear-gradient(135deg, #ffffff 40%, rgba(0, 212, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--clr-bg-secondary);
  border-bottom: 1px solid var(--clr-border);
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  border-right: 1px solid var(--clr-border);
  text-align: center;
  position: relative;
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(0, 212, 255, 0.04); }
.stat-icon {
  color: var(--clr-accent);
  font-size: 1.1rem;
  margin-bottom: 8px;
  opacity: 0.7;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-text-muted);
  font-weight: 600;
}

/* --- Footer Column Header Accent Line --- */
.footer-col h4 {
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 26px; height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
}

/* --- Footer Glow Top Border --- */
.footer {
  border-top: 1px solid rgba(0, 212, 255, 0.18);
  box-shadow: 0 -1px 30px rgba(0, 212, 255, 0.05);
}

/* --- WhatsApp Float Pulse --- */
.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--radius-full);
  background: #25d366;
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* --- Stagger Delays (JS assigns data-delay attr) --- */
[data-delay="1"] { transition-delay: 0.08s !important; }
[data-delay="2"] { transition-delay: 0.16s !important; }
[data-delay="3"] { transition-delay: 0.24s !important; }
[data-delay="4"] { transition-delay: 0.32s !important; }
[data-delay="5"] { transition-delay: 0.40s !important; }
[data-delay="6"] { transition-delay: 0.48s !important; }

@media (max-width: 768px) {
  .coverage-section {
    padding: 64px 0;
  }

  .coverage-section .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .coverage-map-placeholder {
    min-height: 200px;
    padding: 28px 20px;
  }

  .coverage-content .section-title-split {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    margin-bottom: 16px;
  }

  .coverage-content > p {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .coverage-towns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .coverage-towns li {
    font-size: 0.9rem;
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .coverage-map-placeholder {
    min-height: 160px;
    padding: 26px 18px;
    gap: 6px;
  }

  .coverage-map-placeholder i {
    font-size: 2.3rem;
    margin-bottom: 8px;
  }

  .coverage-map-placeholder strong {
    font-size: 0.95rem;
    letter-spacing: 1.4px;
  }

  .coverage-map-placeholder .cov-county,
  .coverage-map-placeholder .cov-radius {
    font-size: 0.72rem;
  }

  .coverage-content .section-title-split {
    font-size: clamp(1.45rem, 9vw, 1.9rem);
  }

  .coverage-content > p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .coverage-towns li {
    font-size: 0.84rem;
    gap: 8px;
  }
}


