/* ═══════════════════════════════════════════
           RESET & BASE
           ═══════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #e63946;
  --red-dark: #c1121f;
  --red-glow: rgba(230, 57, 70, 0.15);
  --bg-primary: #0a0a0a;
  --bg-secondary: #0d0d0d;
  --bg-card: #141414;
  --bg-nav: #111111;
  --bg-footer: #080808;
  --text-primary: #f5f5f5;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(230, 57, 70, 0.2);
  --font-display: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-accent: "Space Grotesk", sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

#hero,
#services,
#why-choose,
#before-after,
#garage,
#testimonials,
#faq {
  scroll-margin-top: 120px;
}

/* ═══════════════════════════════════════════
           SCROLLBAR
           ═══════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

/* ═══════════════════════════════════════════
           UTILITY CLASSES
           ═══════════════════════════════════════════ */
.subtitle-label {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.red-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }

  .section-title {
    font-size: 36px;
  }
}

/* ═══════════════════════════════════════════
           BUTTONS
           ═══════════════════════════════════════════ */
.btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 14px 32px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-primary::before {
  content: "";
  position: absolute;
  left: -120%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: 0.6s;
}

.btn-primary:hover::before {
  left: 120%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
}

.btn-primary:active {
  transform: scale(0.97);
}

/* ═══════════════════════════════════════════
           GLASS CARD
           ═══════════════════════════════════════════ */
.glass-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════════════════════════
           ANIMATION CLASSES
           ═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.fade-up-delay-4 {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════
           TOPBAR
           ═══════════════════════════════════════════ */
.topbar {
  background: rgba(17, 17, 17, 0.8);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 12px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}

.topbar-left i {
  color: var(--red);
  font-size: 14px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-secondary);
}

.topbar-right span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-right i {
  font-size: 12px;
}

@media (max-width: 768px) {
  .topbar-right {
    display: none;
  }
}

/* ═══════════════════════════════════════════
           NAVBAR
           ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .topbar {
  position: relative;
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  padding: 16px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  width: 170px;
  height: 100px;
  object-fit: contain;
}

.navbar-brand span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #d1d5db;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-cta .btn-primary {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 24px 40px;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 24px;
  color: #d1d5db;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: #fff;
}

.mobile-menu .btn-primary {
  text-align: center;
  margin-top: 10px;
}

/* ═══════════════════════════════════════════
           HERO
           ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/10.webp") center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 0.3s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 1) 0%,
    rgba(10, 10, 10, 0.85) 40%,
    rgba(10, 10, 10, 0.3) 100%
  );
}

.hero-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

.hero-glow {
  position: absolute;
  top: 25%;
  right: 0;
  width: 400px;
  height: 400px;
  background: rgba(230, 57, 70, 0.06);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 80px;
  max-width: 650px;
  margin-left: 0;
  max-width: 700px;
}

.hero .container {
  max-width: 100%;
  padding-left: 60px;
  /* jitna left chahiye */
  padding-right: 60px;
  margin: 0;
}

.hero-content .subtitle-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
}

.hero-title .highlight {
  color: var(--red);
}

.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  margin-top: 20px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-btn {
  margin-top: 32px;
}

.hero-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.hero-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hero-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s;
}

.hero-info-icon i {
  color: var(--red);
  font-size: 18px;
}

.hero-info-item:hover .hero-info-icon {
  border-color: rgba(230, 57, 70, 0.4);
  background: rgba(230, 57, 70, 0.05);
}

.hero-info-text h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.hero-info-text p {
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .hero-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-content {
    padding-top: 120px;
  }
}

/* ═══════════════════════════════════════════
           SERVICES
           ═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 440px;
  cursor: pointer;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.3) 50%,
    transparent 100%
  );
  transition: opacity 0.5s;
}

.service-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover .service-hover-overlay {
  opacity: 1;
}

.service-hover-content {
  text-align: center;
  transform: translateY(16px);
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover .service-hover-content {
  transform: translateY(0);
}

.service-hover-content p {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-hover-content a {
  color: var(--red);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: gap 0.3s;
}

.service-hover-content a i {
  margin-left: 6px;
  transition: margin-left 0.3s;
}

.service-hover-content a:hover i {
  margin-left: 12px;
}

.service-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  transition: color 0.5s;
  line-height: 1;
}

.service-card:hover .service-number {
  color: rgba(230, 57, 70, 0.3);
}

.service-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  transition: opacity 0.3s;
}

.service-card:hover .service-title {
  opacity: 0;
}

.service-title h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}

.service-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover .service-line {
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 350px;
  }
}

/* ═══════════════════════════════════════════
           BRAND SLIDER
           ═══════════════════════════════════════════ */
.brand-slider {
  padding: 60px 0;
  background: var(--bg-nav);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.brand-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 100px;
  background: rgba(230, 57, 70, 0.04);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.brand-track {
  display: flex;
  animation: brandScroll 40s linear infinite;
  width: max-content;
}

.brand-track:hover {
  animation-play-state: paused;
}

.brand-item {
  flex-shrink: 0;
  width: 192px;
  height: 96px;
  margin: 0 16px;
  border-radius: var(--radius);
  background: rgba(26, 26, 26, 1);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.4s;
  cursor: default;
}

.brand-item:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 57, 70, 0.2);
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.1);
}

.brand-item span:first-child {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #4b5563;
  transition: color 0.3s;
}

.brand-item:hover span:first-child {
  color: #fff;
}

.brand-item span:last-child {
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: 2px;
  color: #374151;
  transition: color 0.3s;
}

.brand-item:hover span:last-child {
  color: #9ca3af;
}

@keyframes brandScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.brand-item img {
  max-width: 120px;
  max-height: 55px;

  width: auto;
  height: auto;

  object-fit: contain;

  filter: grayscale(100%) brightness(0.8);

  transition: 0.4s;
}

.brand-item:hover {
  border-color: #e63946;
  transform: translateY(-5px);
}

.brand-item:hover img {
  filter: none;
  transform: scale(1.08);
}

/* ═══════════════════════════════════════════
           COUNTERS
           ═══════════════════════════════════════════ */
.counters {
  padding: 96px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.counters::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  background: rgba(230, 57, 70, 0.04);
  border-radius: 50%;
  filter: blur(80px);
}

.counters::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background: rgba(230, 57, 70, 0.04);
  border-radius: 50%;
  filter: blur(80px);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.counter-card {
  glass-card: true;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.counter-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: var(--red);
  opacity: 0;
  transition: all 0.5s;
}

.counter-card:hover::before {
  width: 100%;
  opacity: 1;
}

.counter-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(230, 57, 70, 0.1);
}

.counter-value {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -1px;
}

.counter-label {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════
           WHY CHOOSE US
           ═══════════════════════════════════════════ */
.why-choose {
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -80px;
  width: 256px;
  height: 256px;
  background: rgba(230, 57, 70, 0.04);
  border-radius: 50%;
  filter: blur(100px);
  transform: translateY(-50%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -48px;
  right: -48px;
  width: 128px;
  height: 128px;
  background: rgba(230, 57, 70, 0.08);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 40px rgba(230, 57, 70, 0.05);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(230, 57, 70, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.4s;
}

.feature-card:hover .feature-icon {
  background: rgba(230, 57, 70, 0.2);
}

.feature-icon i {
  color: var(--red);
  font-size: 22px;
}

.feature-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
           BEFORE & AFTER
           ═══════════════════════════════════════════ */
.before-after {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.before-after::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(230, 57, 70, 0.03);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ba-text p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 20px;
}

.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  width: 50%;
}

.ba-before img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 700px;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.5);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  left: 50%;
}

.ba-handle-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5);
}

.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}

.ba-label.before {
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.ba-label.after {
  right: 16px;
  background: rgba(230, 57, 70, 0.9);
  color: #fff;
}

@media (max-width: 1024px) {
  .ba-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ba-before img {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════
           TESTIMONIALS
           ═══════════════════════════════════════════ */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: rgba(230, 57, 70, 0.03);
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonial-header .red-divider {
  margin: 0 12px;
}

.testimonial-header .subtitle-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.testimonial-track-wrapper {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.testimonial-track {
  display: flex;
  transition: transform 0.7s var(--ease-out);
}

.testimonial-slide {
  width: 100%;
  flex-shrink: 0;
  padding: 0 16px;
}

.testimonial-card {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 2px;
  background: var(--red);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 2px solid var(--red);
  object-fit: cover;
}

.testimonial-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #ffc107;
  font-size: 16px;
}

.testimonial-card p {
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.5s;
}

.testimonial-dot.active {
  background: var(--red);
  width: 32px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
           PRODUCTS
           ═══════════════════════════════════════════ */
.products {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.products::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 384px;
  height: 384px;
  background: rgba(230, 57, 70, 0.03);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.1);
  border-color: var(--border-hover);
}

.product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 12px;
}

.product-stars i {
  color: #ffc107;
  font-size: 14px;
}

.product-info h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
           FAQ
           ═══════════════════════════════════════════ */
.faq {
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  background: rgba(230, 57, 70, 0.03);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
  border-color: rgba(230, 57, 70, 0.15);
  background: rgba(230, 57, 70, 0.03);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: left;
  font-family: var(--font-body);
  transition: color 0.3s;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(230, 57, 70, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(230, 57, 70, 0.15);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s var(--ease-out),
    opacity 0.3s;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ═══════════════════════════════════════════
           CTA
           ═══════════════════════════════════════════ */
.cta {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1619405399517-d7fce0f13302?w=1920&h=800&fit=crop&auto=format")
    center/cover no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
}

.cta-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.6) 60%,
    rgba(10, 10, 10, 0.3) 100%
  );
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  background: rgba(230, 57, 70, 0.06);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-text .cta-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-text .cta-label .red-divider {
  width: 48px;
}

.cta-text h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-text .cta-label {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════ */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.footer-socials a:hover {
  color: #fff;
  border-color: rgba(230, 57, 70, 0.4);
  background: rgba(230, 57, 70, 0.1);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-contact-item {
  margin-bottom: 20px;
}

.footer-contact-item .contact-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.footer-contact-item .contact-header i {
  color: var(--red);
  font-size: 16px;
}

.footer-contact-item .contact-header span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-contact-item p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-left: 24px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #4b5563;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: #4b5563;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
           BACK TO TOP
           ═══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--red);
  border: none;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
  z-index: 100;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
}

.garage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.garage-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.garage-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #151515;
}
.garage-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.6s;
} /* Left & Right Images */
.garage-small {
  height: 320px;
} /* Center Image */
.garage-big {
  height: 665px;
}
.garage-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: 0.4s;
}
.garage-item:hover img {
  transform: scale(1.08);
}
.garage-item:hover .garage-overlay {
  opacity: 1;
}
.garage-overlay h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 5px;
}
.garage-overlay span {
  color: #e63946;
}
@media (max-width: 992px) {
  .garage-grid {
    grid-template-columns: 1fr;
  }
  .garage-big {
    height: 420px;
  }
  .garage-small {
    height: 260px;
  }
} /* ═══════════════════════════════════════════════════ appontment modal ═══════════════════════════════════════════════════ */
.appointment-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.35s;
  z-index: 9999;
  backdrop-filter: blur(6px);
}
.appointment-modal.active {
  visibility: visible;
  opacity: 1;
}
.appointment-box {
  width: 500px;
  max-width: 95%;
  background: #111;
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  padding: 35px;
  position: relative;
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.15);
  transform: translateY(30px);
  transition: 0.35s;
}
.appointment-modal.active .appointment-box {
  transform: translateY(0);
}
.close-modal {
  position: absolute;
  right: 18px;
  top: 15px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.appointment-box h2 {
  color: #fff;
  margin-bottom: 5px;
}
.appointment-box p {
  color: #aaa;
  margin-bottom: 25px;
}
.input-group {
  margin-bottom: 18px;
}
.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  background: #1b1b1b;
  border: 1px solid #333;
  color: #fff;
  padding: 14px 15px;
  outline: none;
  border-radius: 6px;
  transition: 0.3s;
}
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: #ff3d47;
} /* Date Input */
input[type="date"] {
  width: 100%;
  height: 58px;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  transition: 0.3s ease;
} /* Hover */ /* Focus */
input[type="date"]:focus {
  border-color: #e63946;
} /* Calendar Icon */
input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.9;
  filter: invert(1);
  transition: 0.3s;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover {
  transform: scale(1.15);
} /* Placeholder Text (dd-mm-yyyy) */
input[type="date"]::-webkit-datetime-edit {
  color: #cfcfcf;
}
input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}
.submit-btn {
  width: 100%;
  padding: 15px;
  background: #ff3d47;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.submit-btn:hover {
  background: #e6323c;
} /*========================= Premium Gallery ==========================*/
.premium-gallery {
  background: #f8f9fa;
}
.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
}
.section-title p {
  color: #777;
  font-size: 17px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  grid-template-rows: 170px 170px 170px;
  gap: 18px;
  max-width: 1100px;
  margin: auto;
}
.item {
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}
.item:after {
  content: "Premium Car Care";
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: 0.4s;
  transform: translateY(20px);
  z-index: 2;
}
.item:hover img {
  transform: scale(1.12);
}
.item:hover:before {
  opacity: 1;
}
.item:hover:after {
  opacity: 1;
  transform: translateY(0);
} /* Layout */
.item1 {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.item2 {
  grid-column: 2;
  grid-row: 1;
}
.item3 {
  grid-column: 3;
  grid-row: 1;
}
.item4 {
  grid-column: 2;
  grid-row: 2;
}
.item5 {
  grid-column: 3;
  grid-row: 2 / span 2;
}
.item6 {
  grid-column: 1 / span 2;
  grid-row: 3;
}
.item7 {
  grid-column: 1;
  grid-row: 3;
  display: none;
} /*===================== Tablet ======================*/
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }
  .item,
  .item1,
  .item2,
  .item3,
  .item4,
  .item5,
  .item6,
  .item7 {
    grid-column: auto;
    grid-row: auto;
    display: block;
  }
} /*===================== Mobile ======================*/
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .section-title h2 {
    font-size: 30px;
  }
}
