/* ============================================
   APEX GARAGE — Premium Car Accessories
   Design System & Styles
   ============================================ */

/* ----- RESET & BASE ----- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0D0D0D;
  color: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: 'Poppins', sans-serif;
}

/* ----- CSS VARIABLES ----- */
:root {
  /* Colors */
  --bg-primary: #0D0D0D;
  --bg-secondary: #1C1C1C;
  --bg-tertiary: #2A2A2A;
  --bg-card: #161616;
  --accent-blue: #00C2FF;
  --accent-blue-dim: rgba(0, 194, 255, 0.12);
  --accent-red: #FF3B3B;
  --accent-red-dim: rgba(255, 59, 59, 0.12);
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-muted: #666666;

  /* Glass */
  --glass-bg: rgba(28, 28, 28, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 20px;

  /* Glow */
  --glow-blue: 0 0 15px rgba(0, 194, 255, 0.3), 0 0 30px rgba(0, 194, 255, 0.1);
  --glow-red: 0 0 15px rgba(255, 59, 59, 0.3), 0 0 30px rgba(255, 59, 59, 0.1);
  --glow-blue-strong: 0 0 20px rgba(0, 194, 255, 0.5), 0 0 50px rgba(0, 194, 255, 0.15);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container: 1200px;
  --section-py: 100px;
}

/* ----- SCROLLBAR ----- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
}

/* ----- TYPOGRAPHY UTILITIES ----- */
.text-gradient {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----- CONTAINER ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- SECTION COMMON ----- */
.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-red));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ----- REVEAL ANIMATION BASE ----- */
/* Initial state handled by GSAP, not CSS — keeps content visible if JS fails */

/* ============================
   NAVIGATION
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo .logo-accent {
  color: var(--accent-blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 22px !important;
  background: var(--accent-blue) !important;
  color: var(--bg-primary) !important;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  transition: var(--transition-smooth) !important;
}

.nav-cta:hover {
  box-shadow: var(--glow-blue-strong);
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-smooth);
  border-radius: 2px;
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-blue);
  color: var(--bg-primary);
}

.btn-primary:hover {
  box-shadow: var(--glow-blue-strong);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
  transform: translateY(-3px);
}

.btn-red {
  background: var(--accent-red);
  color: var(--text-primary);
}

.btn-red:hover {
  box-shadow: var(--glow-red);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-3px);
}

/* ============================
   HERO SECTION
   ============================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: var(--bg-primary);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 13, 13, 0.85) 0%,
    rgba(13, 13, 13, 0.5) 45%,
    rgba(13, 13, 13, 0.2) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  padding-left: 5%;
  padding-top: 80px; /* Push content below the fixed navbar */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-blue-dim);
  border: 1px solid rgba(0, 194, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--accent-blue);
}

.hero-description {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--glass-border);
}

/* ============================
   VIDEO MODAL
   ============================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.video-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s;
}

.video-modal-close:hover {
  transform: scale(1.1);
  color: var(--accent-red);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 194, 255, 0.2);
}

#modal-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent-blue);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

/* ============================
   GLASS CARD COMPONENT
   ============================ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(0, 194, 255, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--glow-blue);
}

/* ============================
   ACCESSORIES SHOWCASE
   ============================ */
#accessories {
  background: var(--bg-primary);
}

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.accessory-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  will-change: transform, opacity;
  cursor: pointer;
  position: relative;
}

.accessory-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-blue-dim), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1;
}

.accessory-card:hover::before {
  opacity: 1;
}

.accessory-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 194, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--glow-blue);
}

.accessory-video-wrapper {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.accessory-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.accessory-card:hover .accessory-video {
  opacity: 1;
  transform: scale(1.05);
}

.play-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-smooth);
}

.accessory-card:hover .play-indicator {
  opacity: 1;
}

.accessory-info {
  padding: 18px 22px 22px;
  position: relative;
  z-index: 2;
}

.accessory-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.accessory-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

.accessory-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-blue-dim);
  color: var(--accent-blue);
  font-size: 0.68rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================
   BRANDS
   ============================ */
#brands {
  background: var(--bg-secondary);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 24px;
}

.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition-smooth);
  will-change: transform, opacity;
  cursor: pointer;
}

.brand-card:hover {
  border-color: rgba(0, 194, 255, 0.3);
  box-shadow: var(--glow-blue);
  transform: translateY(-4px);
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.brand-card:hover .brand-name {
  color: var(--accent-blue);
}

.brand-type {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================
   WHY CHOOSE US
   ============================ */
#why-us {
  background: var(--bg-primary);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-smooth);
  will-change: transform, opacity;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-red));
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.stat-card:hover::after {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 255, 0.12);
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: inline-block;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ============================
   SERVICES
   ============================ */
#services {
  background: var(--bg-secondary);
}

.services-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.services-scroll::-webkit-scrollbar {
  height: 4px;
}

.services-scroll::-webkit-scrollbar-thumb {
  background: var(--accent-blue);
  border-radius: 2px;
}

.service-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition-smooth);
  will-change: transform, opacity;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-blue-dim), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 194, 255, 0.2);
  box-shadow: var(--glow-blue);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.service-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================
   PRODUCTS CATALOG
   ============================ */
#products {
  background: var(--bg-primary);
}

.products-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 22px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-blue);
  color: var(--bg-primary);
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
}

.products-search {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 36px;
  position: relative;
}

.products-search input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition-smooth);
}

.products-search input:focus {
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
}

.products-search input::placeholder {
  color: var(--text-muted);
}

.products-search .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  will-change: transform, opacity;
  position: relative;
}

.product-card.hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 194, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--glow-blue);
}

.product-image {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-icon {
  font-size: 3.2rem;
  position: relative;
  z-index: 1;
}

.product-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
}

.product-category-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.product-details {
  padding: 18px 22px 22px;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-brand {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 10px;
}

.product-rating {
  color: #FFD700;
  font-size: 0.82rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.product-rating .rating-count {
  color: var(--text-muted);
  font-size: 0.72rem;
  margin-left: 6px;
}

.product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-blue);
}

.product-price .price-label {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
}

.more-products-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.more-products-cta:hover {
  border-color: rgba(0, 194, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), var(--glow-blue);
  transform: translateY(-4px);
}

.more-products-cta .cta-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.more-products-cta .cta-desc {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ============================
   PROVIDER LIST
   ============================ */
#provider-list {
  background: var(--bg-secondary);
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}

.provider-item {
  background: rgba(22, 22, 22, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 22px 14px;
  text-align: center;
  transition: var(--transition-smooth);
  will-change: transform, opacity, border-color, box-shadow;
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
}

.provider-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #002B5E; /* Solid Dark Blue */
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.provider-item:hover::before {
  height: 100%;
}

.provider-item:hover {
  border-color: rgba(0, 194, 255, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--glow-blue);
  transform: translateY(-5px);
}

.provider-icon {
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.provider-item:hover .provider-icon {
  color: var(--accent-blue);
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(0, 194, 255, 0.5));
}

.provider-name {
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* ============================
   REVIEWS CAROUSEL
   ============================ */
#reviews {
  background: var(--bg-primary);
  overflow: hidden;
}

.reviews-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.reviews-carousel {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  flex: 0 0 100%;
  padding: 0 16px;
}

.review-inner {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 16px;
  color: var(--text-primary);
}

.review-stars {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}

.review-car {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
}

.review-dot.active {
  background: var(--accent-blue);
  box-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
  width: 28px;
  border-radius: 5px;
}

.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1.1rem;
  z-index: 5;
}

.review-nav:hover {
  background: var(--accent-blue);
  color: var(--bg-primary);
  box-shadow: var(--glow-blue);
}

.review-nav.prev {
  left: -24px;
}

.review-nav.next {
  right: -24px;
}

/* Write a Review Styling */
.write-review-container {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 0 16px;
  text-align: center;
}

.review-form {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 35px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.star-rating {
  display: inline-flex;
  gap: 12px;
  justify-content: center;
  font-size: 2.2rem;
  cursor: pointer;
  user-select: none;
  margin: 8px 0;
}

.star-rating .star {
  color: rgba(255, 255, 255, 0.15);
  transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
}

.star-rating .star.active {
  color: #FFD700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.7), 0 0 24px rgba(255, 215, 0, 0.4);
}

.star-rating .star:hover {
  transform: scale(1.2);
}

/* ============================
   CONTACT & FOLLOW
   ============================ */
#contact {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition-smooth);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.contact-item:hover {
  border-color: rgba(0, 194, 255, 0.2);
  transform: translateX(4px);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.9rem;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.social-link:hover {
  background: var(--accent-blue);
  color: var(--bg-primary);
  border-color: var(--accent-blue);
  box-shadow: var(--glow-blue);
  transform: translateY(-4px);
}

.map-container {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 180px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--glass-border);
  padding: 56px 0 28px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-red), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-brand .footer-logo .logo-accent {
  color: var(--accent-blue);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  padding: 4px 0;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-blue);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ============================
   KEYFRAME ANIMATIONS
   ============================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 194, 255, 0.2); }
  50% { box-shadow: 0 0 30px rgba(0, 194, 255, 0.4), 0 0 60px rgba(0, 194, 255, 0.1); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

.pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* ============================
   RESPONSIVE
   ============================ */

/* ==========================================================================
   SERVICE PAGES & FAQ & MOBILE CTA
   ========================================================================== */

/* Service Page Hero */
.service-hero {
  padding: 160px 0 80px;
  background: var(--bg-primary);
  text-align: center;
}

.service-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-hero .hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--accent-blue);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-block h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.content-block h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent-blue);
}

.content-block p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.content-block ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.content-block ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-secondary);
}

.content-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent-blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 24px 20px;
  max-height: 500px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
}

.trust-badge {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-badge .badge-icon {
  font-size: 1.2rem;
}

.cta-block {
  text-align: center;
  padding: 60px 24px;
}

.cta-block h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-block p {
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.last-updated {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Sticky Mobile CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 10px 0;
}

.mobile-cta-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-cta-bar a:hover {
  color: var(--accent-blue);
}

.mobile-cta-icon {
  font-size: 1.3rem;
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-size: 0.82rem;
  }
  .nav-cta {
    padding: 6px 16px !important;
    font-size: 0.82rem !important;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
  }

  .review-nav.prev { left: 0; }
  .review-nav.next { right: 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: var(--transition-smooth);
    z-index: 999;
    padding: 24px;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    justify-content: space-around;
  }

  body {
    padding-bottom: 70px;
  }

  :root {
    --section-py: 72px;
  }

  #hero {
    height: auto;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-video {
    height: 50vh;
    top: 0;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(13, 13, 13, 0.3) 0%,
      rgba(13, 13, 13, 0.7) 40%,
      var(--bg-primary) 85%,
      var(--bg-primary) 100%
    );
  }

  .hero-content {
    margin-top: 10vh;
    padding: 0 24px;
    padding-top: 0; /* reset desktop padding-top */
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-stat-item {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .accessories-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .section-header {
    margin-bottom: 44px;
  }

  .review-nav {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .products-filter {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .provider-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat-number {
    font-size: 1.4rem;
  }
}

.accessory-img-wrapper {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.accessory-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.accessory-card:hover .accessory-img {
  opacity: 1;
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .accessory-card:hover .accessory-img {
    transform: none; /* Disable zoom on hover for mobile */
  }
}

@media (max-width: 768px) {
  .accessory-card:hover .accessory-video {
    transform: none;
  }
}
