:root {
  --bg-primary: #04080f;
  --bg-secondary: #07101e;
  --bg-card: #0d1f3c;
  --blue-primary: #1448a0;
  --blue-bright: #2676f5;
  --blue-glow: #4d94ff;
  --red-accent: #d42b2b;
  --red-hover: #f03232;
  --text-primary: #e8f0ff;
  --text-muted: #8fa4c0;
  --yellow-accent: #ffd54f;

  --font-display: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-condensed: 'Manrope', sans-serif;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  border-radius: 4px;
}

.btn-primary {
  background-color: var(--red-accent);
  color: white;
}

.btn-primary:hover {
  background-color: var(--red-hover);
  box-shadow: 0 0 15px rgba(212, 43, 43, 0.6);
}

.btn-ghost {
  background-color: transparent;
  color: var(--blue-bright);
  border: 1px solid var(--blue-bright);
}

.btn-ghost:hover {
  background-color: rgba(38, 118, 245, 0.1);
  box-shadow: 0 0 15px rgba(38, 118, 245, 0.4);
}

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

/* SECTION 1: STICKY HEADER */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

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

.brand-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
}

.brand-logo-footer {
  height: 90px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: #ffffff;
  position: relative;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.nav-links a:hover {
  color: white;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--red-accent);
  transition: width 0.3s ease;
}

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

/* DROPDOWN MENU */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--bg-card);
  min-width: 250px;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(77, 148, 255, 0.2);
  border-radius: 8px;
  z-index: 100;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 0;
  margin-top: 1rem;
}

/* Invisible bridge so the hover doesn't break when moving mouse down */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 0;
  width: 100%;
  height: 1rem;
}

.dropdown-content a {
  color: #ffffff;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: normal;
}

.dropdown-content a::after {
  display: none;
}

.dropdown-content a:hover {
  background-color: rgba(77, 148, 255, 0.1);
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.btn-shop-now {
  font-size: 0.9rem;
}

/* SECTION 2: HERO BANNER */
.hero-section {
  height: 100vh;
  padding-top: 95px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  height: 100%;
  align-items: center;
}

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

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: fadeBanner4 20s infinite;
}

.img-1 {
  animation-delay: 0s;
}

.img-2 {
  opacity: 0;
  animation-delay: -15s;
}

.img-3 {
  opacity: 0;
  animation-delay: -10s;
}

.img-4 {
  opacity: 0;
  animation-delay: -5s;
}

@keyframes fadeBanner4 {
  0% {
    opacity: 1;
  }

  15% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(4, 8, 15, 0.95) 0%, rgba(4, 8, 15, 0.6) 60%, rgba(4, 8, 15, 0.2) 100%);
}

.hero-left {
  width: 48%;
  position: relative;
  z-index: 10;
}

.hero-left.full-width {
  width: 100%;
  max-width: 800px;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--blue-primary);
  border-radius: 30px;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  background: rgba(20, 72, 160, 0.1);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--red-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red-accent);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-left h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.h1-line1 {
  color: white;
}

.h1-line2 {
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h1-line3 {
  display: block;
  font-size: 1rem;
  color: var(--red-accent);
  letter-spacing: 4px;
  margin-top: 1rem;
  text-transform: uppercase;
}

.hero-body {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 90%;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.stat-label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background-color: rgba(143, 164, 192, 0.3);
}

.hero-right {
  width: 52%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anti-gravity-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Effects */
.perspective-grid {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 50%;
  background-image:
    linear-gradient(rgba(77, 148, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 148, 255, 0.2) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: rotateX(60deg) translateY(100px);
  transform-origin: bottom center;
  perspective: 1000px;
  z-index: 1;
}

.radial-spotlight {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 72, 160, 0.4) 0%, transparent 70%);
  z-index: 2;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(77, 148, 255, 0.5);
  box-shadow: 0 0 20px rgba(77, 148, 255, 0.8);
  z-index: 5;
  animation: scanLine 5s linear infinite;
}

@keyframes scanLine {
  0% {
    top: -10%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    top: 110%;
    opacity: 0;
  }
}

.rings-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(77, 148, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(38, 118, 245, 0.1) inset;
  animation: pulseRing 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.ring-1 {
  width: 380px;
  height: 380px;
  animation-delay: 0s;
}

.ring-2 {
  width: 520px;
  height: 520px;
  animation-delay: -1.3s;
}

.ring-3 {
  width: 660px;
  height: 660px;
  animation-delay: -2.6s;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.energy-beams {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 400px;
  z-index: 3;
}

.beam {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(77, 148, 255, 0), rgba(77, 148, 255, 0.8), rgba(77, 148, 255, 0));
  top: 0;
}

.beam-left {
  left: 20px;
  opacity: 0.5;
}

.beam-center {
  left: 100px;
  opacity: 0.8;
  box-shadow: 0 0 10px var(--blue-glow);
}

.beam-right {
  left: 180px;
  opacity: 0.5;
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 4;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 5px var(--blue-glow);
  animation: floatParticle linear infinite;
}

.particle.red {
  background: var(--red-accent);
  box-shadow: 0 0 5px var(--red-accent);
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  20% {
    opacity: 1;
    transform: translateY(80vh) scale(1);
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateY(-20vh) scale(0);
    opacity: 0;
  }
}

.car-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatCar 3.8s ease-in-out infinite;
}

@keyframes floatCar {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-22px);
  }
}

.car-img {
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(20, 72, 160, 0.6));
}

.car-glow-pool {
  position: absolute;
  bottom: -40px;
  width: 300px;
  height: 40px;
  background: rgba(38, 118, 245, 0.5);
  border-radius: 50%;
  filter: blur(20px);
  z-index: -1;
  animation: glowPoolPulse 3.8s ease-in-out infinite;
}

@keyframes glowPoolPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(0.8);
    opacity: 0.8;
  }
}

.car-label {
  margin-top: 20px;
  text-align: center;
}

.label-title {
  font-family: var(--font-display);
  color: var(--blue-glow);
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 1.2rem;
}

.label-subtitle {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  margin-top: 4px;
}

.label-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--blue-glow), transparent);
  margin-top: 8px;
}

/* SECTION 3: MODEL TICKER STRIP */
.ticker-section {
  width: 100%;
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(77, 148, 255, 0.2);
  border-bottom: 1px solid rgba(77, 148, 255, 0.2);
  display: flex;
  align-items: center;
  height: 50px;
  overflow: hidden;
}

.ticker-label-area {
  display: flex;
  align-items: center;
  padding: 0 20px;
  background-color: var(--bg-secondary);
  z-index: 10;
  height: 100%;
}

.ticker-label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  white-space: nowrap;
}

.ticker-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(143, 164, 192, 0.3);
  margin-left: 20px;
}

.ticker-track {
  flex-grow: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-content {
  display: inline-block;
  animation: scrollTicker 22s linear infinite;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.model-item {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 15px;
  transition: color 0.3s;
  cursor: pointer;
}

.model-item:hover {
  color: var(--blue-glow);
}

.model-item.active {
  color: var(--blue-bright);
  text-shadow: 0 0 8px rgba(38, 118, 245, 0.6);
}

.dot {
  color: var(--text-muted);
  opacity: 0.5;
}

/* SECTION 4: PRODUCT CATEGORIES GRID */
.categories-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

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

.eyebrow {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  color: var(--red-accent);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-title {
  font-size: 2.5rem;
  color: white;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1px;
  background-color: rgba(77, 148, 255, 0.2);
  border: 1px solid rgba(77, 148, 255, 0.2);
}

.category-card {
  background-color: #050a14;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: background-color 0.3s;
  overflow: hidden;
  cursor: pointer;
}

.category-card:hover {
  background-color: rgba(20, 72, 160, 0.1);
}

.cat-icon-wrapper {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(77, 148, 255, 0.4));
}

.cat-title {
  font-size: 0.9rem;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

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

.service-action {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.category-card:hover .service-action {
  opacity: 1;
  transform: translateY(0);
}

.hover-bar {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: var(--red-accent);
  transition: left 0.3s ease;
}

.category-card:hover .hover-bar {
  left: 0;
}

/* SECTION 5: FEATURED PRODUCTS */
.featured-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

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

.product-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(77, 148, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--blue-glow);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-img-area {
  height: 200px;
  background: linear-gradient(180deg, rgba(20, 72, 160, 0.2), var(--bg-card));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.prod-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
}

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

.badge-blue {
  background-color: var(--blue-primary);
}

.product-info {
  padding: 1.5rem;
}

.prod-compat {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  color: var(--blue-glow);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.prod-name {
  font-family: var(--font-condensed);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.prod-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.prod-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.prod-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

/* SECTION 6: PROMOTIONAL OFFER BANNER */
.promo-section {
  padding: 4rem 0;
  background-color: var(--bg-primary);
}

.promo-banner {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--blue-bright) 50%, var(--red-accent) 100%);
  border: 1px solid var(--blue-glow);
  border-radius: 12px;
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.promo-glow-circle {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  filter: blur(40px);
}

.promo-left {
  position: relative;
  z-index: 10;
}

.promo-label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.promo-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.highlight-yellow {
  color: var(--yellow-accent);
}

.promo-code {
  font-size: 1.1rem;
  color: white;
}

.promo-right {
  position: relative;
  z-index: 10;
}

.btn-claim {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background-color: var(--red-accent);
}

/* SECTION 7: WHY AUTOZONY */
.why-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

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

.feature-card {
  padding: 2rem;
  border: 1px solid rgba(77, 148, 255, 0.2);
  border-radius: 8px;
  text-align: center;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: var(--blue-glow);
}

.feat-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feat-title {
  font-size: 1rem;
  color: var(--blue-glow);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.feat-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* SECTION 8: FOOTER */
.footer {
  background-color: #000000;
  border-top: 1px solid rgba(77, 148, 255, 0.3);
  padding-top: 4rem;
}

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

.brand-col .logo-area {
  margin-top: -20px;
  margin-bottom: 0;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 90%;
}

.footer-heading {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--blue-glow);
}

.contact-links li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(77, 148, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.social-icon:hover {
  background-color: var(--blue-primary);
  border-color: var(--blue-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(143, 164, 192, 0.6);
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }

  .category-grid,
  .product-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ABOUT US SECTION - MOTORFLOW STYLE */
.about-section {
  position: relative;
  padding: 8rem 0;
  background-color: #000000;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('media/SANTA FE2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.4;
}

.about-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, #000000 0%, transparent 20%, transparent 80%, #000000 100%),
    linear-gradient(to right, #000000 0%, transparent 15%, transparent 85%, #000000 100%);
}

.about-container {
  position: relative;
  z-index: 10;
  background: rgba(20, 20, 22, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(77, 148, 255, 0.3);
  box-shadow: 0 0 40px rgba(77, 148, 255, 0.15);
  border-radius: 16px;
  padding: 4rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* VISION & MISSION SECTION */
.vision-section {
  position: relative;
  padding: 4rem 0;
  background-color: #000000;
  overflow: hidden;
}

.vision-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('media/kona.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.3;
}

.vision-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, #000000 0%, transparent 20%, transparent 80%, #000000 100%),
    linear-gradient(to right, #000000 0%, transparent 15%, transparent 85%, #000000 100%);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 10;
}

.vision-card {
  padding: 3rem;
  background-color: var(--bg-card);
  border: 1px solid rgba(77, 148, 255, 0.4);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  text-align: center;
}

.vision-card:hover {
  border-color: var(--blue-glow);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(38, 118, 245, 0.2);
}

.vision-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue-glow);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.vision-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.why-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://cdn.prod.website-files.com/66edec51647acd90172d2445/66f425e73c7f3c683e6ee007_car-dealer-cartech-x-webflow-template.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.3;
}

.why-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, #000000 0%, transparent 20%, transparent 80%, #000000 100%),
    linear-gradient(to right, #000000 0%, transparent 15%, transparent 85%, #000000 100%);
}

/* MODERN MODEL GRID */
.modern-model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.modern-model-card {
  position: relative;
  background: linear-gradient(145deg, rgba(13, 31, 60, 0.6), rgba(4, 8, 15, 0.9));
  border: 1px solid rgba(77, 148, 255, 0.15);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.modern-model-card:hover {
  transform: translateY(-10px);
  border-color: rgba(77, 148, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(38, 118, 245, 0.2);
}

.modern-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(38, 118, 245, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.modern-model-card:hover .modern-glow {
  opacity: 1;
}

.mm-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.modern-model-card:hover .mm-icon {
  transform: scale(1.1) rotate(-5deg);
}

.mm-title {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
}

.mm-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--blue-bright);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.modern-model-card:hover .mm-title::after {
  width: 100%;
}

.mm-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.mm-list li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.modern-model-card:hover .mm-list li {
  background: rgba(77, 148, 255, 0.1);
  border-color: rgba(77, 148, 255, 0.3);
  color: #fff;
}

.mm-action {
  margin-top: auto;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-glow);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-modern span {
  transition: transform 0.3s ease;
}

.btn-modern:hover {
  color: #fff;
}

.btn-modern:hover span {
  transform: translateX(5px);
}

/* VISUAL CATEGORY GRID */
.visual-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1rem 0;
}

.visual-card {
  position: relative;
  height: 280px;
  background-color: #0d1522;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  text-decoration: none;
}

.visual-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease;
  opacity: 0.8;
}

.visual-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.visual-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  transition: all 0.3s ease;
}

.visual-card.no-text::after {
  background: rgba(0, 0, 0, 0.1);
}

.visual-card:hover::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
}

.visual-card-content {
  position: relative;
  z-index: 3;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.visual-card:hover .visual-card-content {
  transform: translateY(0);
}

.visual-card-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.visual-card-btn {
  display: inline-block;
  background-color: #f7941d;
  color: #111;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 16px;
  text-transform: uppercase;
  border-radius: 2px;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.visual-card-btn:hover {
  background-color: #e58212;
}

@media (max-width: 768px) {
  .promo-banner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .category-grid,
  .product-grid,
  .features-grid,
  .footer-grid,
  .visual-category-grid {
    grid-template-columns: 1fr;
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .vision-card {
    padding: 1.5rem;
  }

  .vision-title {
    font-size: 1.3rem;
  }

  .vision-text {
    font-size: 0.9rem;
  }

  .nav-links {
    display: none;
  }

  .hero-left h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .h1-line3 {
    font-size: 0.8rem;
  }

  .hero-body {
    font-size: 0.95rem;
  }
}



/* FEATURED PRODUCTS SECTION */
.featured-products-section {
  background-color: #1a1a1f;
  padding: 5rem 0 8rem 0;
  margin-bottom: 2rem;
}

.ribbon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ribbon-line {
  flex: 0 1 150px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.ribbon-banner {
  background: #222;
  color: #fff;
  padding: 1.2rem 3rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%);
  margin: 0 1rem;
}

.featured-subtitle {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 4rem;
}

.fp-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .fp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fp-card {
  border-radius: 12px;
  overflow: hidden;
  background: #1c1c22;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.fp-card:hover {
  transform: translateY(-5px);
}

.fp-image-wrap {
  background: #f4f4f4;
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.fp-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15));
}

.fp-shop-btn {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red-accent, #ef4444);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
  text-align: center;
  white-space: nowrap;
}

.fp-card:hover .fp-shop-btn {
  bottom: 20px;
  opacity: 1;
}

.fp-actions {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fp-action-btn {
  background: transparent;
  border: none;
  color: #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.fp-action-btn:hover {
  color: #111;
}

.fp-content {
  padding: 1.5rem;
  background: #1c1c22;
}

.fp-stars {
  color: #f39c12;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  letter-spacing: 3px;
}

.fp-title {
  color: #888;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* TESTIMONIAL SECTION */
.testimonial-section {
  position: relative;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 240, 245, 0.92) 100%), url('media/testimonials.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonial-content-wrapper {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  height: 250px;
  margin-top: 1rem;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.testimonial-body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.quote-mark {
  color: #e53935;
  font-size: 6rem;
  line-height: 0.8;
  font-family: Georgia, serif;
  font-weight: 900;
  display: inline-block;
  user-select: none;
}

.quote-mark.right {
  margin-top: auto;
  align-self: flex-end;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.75);
  max-width: 550px;
  margin-top: 0.8rem;
}

.testimonial-author {
  font-family: var(--font-condensed), sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 3rem;
}

.testimonial-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  position: relative;
}

.indicator-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.indicator-dot {
  width: 14px;
  height: 14px;
  background: #aaa;
  transform: rotate(45deg);
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.indicator-dot.active {
  background: transparent;
  border: 1px solid #e53935;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indicator-dot.active::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: #e53935;
}

\n

/* FEATURED PRODUCTS SECTION */
.featured-products-section {
  background-color: #1a1a1f;
  padding: 5rem 0 8rem 0;
  margin-bottom: 2rem;
}

.ribbon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ribbon-line {
  flex: 0 1 150px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.ribbon-banner {
  background: #222;
  color: #fff;
  padding: 1.2rem 3rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%);
  margin: 0 1rem;
}

.featured-subtitle {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 4rem;
}

.fp-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .fp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fp-card {
  border-radius: 12px;
  overflow: hidden;
  background: #1c1c22;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.fp-card:hover {
  transform: translateY(-5px);
}

.fp-image-wrap {
  background: #f4f4f4;
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.fp-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15));
}

.fp-shop-btn {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red-accent, #ef4444);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
  text-align: center;
  white-space: nowrap;
}

.fp-card:hover .fp-shop-btn {
  bottom: 20px;
  opacity: 1;
}

.fp-actions {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fp-action-btn {
  background: transparent;
  border: none;
  color: #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.fp-action-btn:hover {
  color: #111;
}

.fp-content {
  padding: 1.5rem;
  background: #1c1c22;
}

.fp-stars {
  color: #f39c12;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  letter-spacing: 3px;
}

.fp-title {
  color: #888;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* TESTIMONIAL SECTION */
.testimonial-section {
  position: relative;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 240, 245, 0.92) 100%), url('media/testimonials.jpg');
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonial-content-wrapper {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  height: 250px;
  margin-top: 1rem;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.testimonial-body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.quote-mark {
  color: #e53935;
  font-size: 6rem;
  line-height: 0.8;
  font-family: Georgia, serif;
  font-weight: 900;
  display: inline-block;
  user-select: none;
}

.quote-mark.right {
  margin-top: auto;
  align-self: flex-end;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.75);
  max-width: 550px;
  margin-top: 0.8rem;
}

.testimonial-author {
  font-family: var(--font-condensed), sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 3rem;
}

.testimonial-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  position: relative;
}

.indicator-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.indicator-dot {
  width: 14px;
  height: 14px;
  background: #aaa;
  transform: rotate(45deg);
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.indicator-dot.active {
  background: transparent;
  border: 1px solid #e53935;
  display: flex;
  align-items: center;
  justify-content: center;
}

.indicator-dot.active::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: #e53935;
}

.mobile-menu-btn {
  display: none !important;
}

@media (max-width: 768px) {
  .navbar {
    position: absolute !important;
  }

  .mobile-menu-btn {
    display: block !important;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
  }

  .nav-container {
    flex-wrap: wrap;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-container.active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 15, 25, 0.98);
    padding: 0 5%;
    box-sizing: border-box;
    border-radius: 0;
    margin-top: 0;
    padding-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 1000;
  }

  .nav-container.active .logo-area,
  .nav-container.active .mobile-menu-btn {
    height: 95px;
    display: flex;
    align-items: center;
    margin: 0;
  }

  .nav-container.active .mobile-menu-btn svg line {
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .nav-container.active .mobile-menu-btn svg line:nth-child(1) {
    opacity: 0;
  }
  .nav-container.active .mobile-menu-btn svg line:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-container.active .mobile-menu-btn svg line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-container.active .nav-links > a, .nav-container.active .dropbtn { text-align: center !important; width: 100%; display: block; }
  .nav-container.active .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    order: 3;
    padding-top: 1rem;
    gap: 1.5rem;
    position: static;
    transform: none;
  }

  .nav-container.active .nav-actions {
    display: flex !important;
    width: 100%;
    justify-content: center;
    order: 4;
    padding: 1.5rem 0;
  }

  .nav-container.active .dropdown {
    width: 100%;
    text-align: center;
  }

  .nav-container.active .dropdown-content {
    position: static;
    display: none;
    background: transparent;
    box-shadow: none;
    text-align: center;
    padding-top: 1rem;
    border: none;
    width: 100%;
      transform: none !important;
  }

  .nav-container.active .dropdown-content a {
    white-space: normal;
    padding: 0.8rem 1rem;
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.1rem;
    text-align: center !important;
    justify-content: center;
  }

  .nav-container.active .dropdown.open .dropdown-content {
    display: flex !important;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile Testimonials Fix */
@media (max-width: 768px) {
  .testimonial-slider {
    height: 380px !important;
  }
  
  .testimonial-body {
    gap: 0.5rem !important;
  }
  
  .quote-mark {
    font-size: 3.5rem !important;
  }
  
  .testimonial-text {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    max-width: 85% !important;
  }
  
  .testimonial-indicators {
    gap: 3rem !important;
    margin-top: 1rem !important;
  }
  
  .indicator-line {
    width: 150px !important;
  }
}

/* Wholesale Responsive Grid */
.ws-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 768px) {
  .ws-split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
