/* ═══════════════════════════════════════════════════════
   VELOCITY AUTOMOTIVE — Premium Stylesheet v2
   Enriquecimiento Visual Masivo
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Orbitron:wght@400;500;700;900&family=Roboto:wght@300;400;500&family=Russo+One&display=swap');

:root {
  --black: #0a0a0a;
  --titanium: #2c2c2c;
  --titanium-light: #1a1a1a;
  --white: #ffffff;
  --cyan: #00d4ff;
  --cyan-dark: #009fbf;
  --orange: #ff4500;
  --silver: #c0c0c0;
  --green-wa: #25d366;

  --font-display: 'Russo One', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-tech: 'Orbitron', sans-serif;

  --section-padding: 100px 0;
  --container-width: 1200px;
  --radius-card: 8px;
  --radius-btn: 50px;
  --shadow-neon: 0 15px 50px rgba(0, 212, 255, 0.1);
  --shadow-neon-strong: 0 15px 50px rgba(0, 212, 255, 0.25);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; background-color: #2c2c2c; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

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

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 4px; }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 0; transition: var(--transition); background: transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(20px);
  padding: 12px 0; border-bottom: 1px solid var(--cyan);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container-width); margin: 0 auto; padding: 0 30px;
}
.nav__logo {
  font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 3px;
  color: var(--white); display: flex; align-items: center; gap: 2px;
}
.nav__logo span { color: var(--cyan); font-size: 1.1rem; letter-spacing: 4px; }

.nav__links { display: flex; align-items: center; gap: 35px; }
.nav__links a {
  font-family: var(--font-heading); font-weight: 400; font-size: 0.85rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--silver); position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--cyan); transition: var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__wa-btn {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 1px; text-transform: uppercase; background: var(--cyan);
  color: var(--black); padding: 10px 24px; border-radius: var(--radius-btn);
  display: flex; align-items: center; gap: 8px; transition: var(--transition);
}
.nav__wa-btn:hover { background: var(--white); box-shadow: var(--shadow-neon-strong); transform: translateY(-2px); }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.nav__hamburger span { width: 28px; height: 2px; background: var(--white); transition: var(--transition); }
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════════════
   HERO SLIDER (replaces video)
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}

.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}

.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide:first-child { opacity: 1; }

.hero-slide__img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease-out;
}
.hero-slide.active .hero-slide__img {
  transform: scale(1.08);
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
}

.hero__content {
  position: relative; z-index: 2; text-align: center;
  max-width: 900px; padding: 0 30px;
}

.hero__tag {
  font-family: var(--font-tech); font-size: 0.75rem; letter-spacing: 6px;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 20px;
  animation: heroTextReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.hero__title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 8px; text-transform: uppercase; line-height: 1.1; margin-bottom: 20px;
  animation: heroTextReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}
.hero__subtitle {
  font-family: var(--font-heading); font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300; color: var(--cyan); letter-spacing: 4px; margin-bottom: 50px;
  animation: heroTextReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
}
.hero__buttons {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  animation: heroTextReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
}

.hero-slider__progress {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
  background: rgba(255,255,255,0.1); z-index: 3;
}
.hero-slider__progress-bar {
  height: 100%; width: 0; background: var(--cyan);
  transition: width 0.1s linear;
}

.hero-slider__dots {
  position: absolute; right: 30px; top: 50%; transform: translateY(-50%);
  z-index: 3; display: flex; flex-direction: column; gap: 12px;
}
.hero-slider__dot {
  width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4);
  background: transparent; cursor: pointer; transition: var(--transition); padding: 0;
}
.hero-slider__dot.active {
  background: var(--cyan); border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(0,212,255,0.5); transform: scale(1.3);
}

.hero-slider__labels {
  position: absolute; left: 30px; bottom: 60px; z-index: 3;
  display: flex; flex-direction: column; gap: 6px;
}
.hero-slider__label {
  font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.3); transition: var(--transition);
}
.hero-slider__label.active { color: var(--cyan); }

.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll span {
  font-family: var(--font-tech); font-size: 0.6rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--silver);
}
.hero__scroll-arrow {
  width: 20px; height: 20px; border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan); transform: rotate(45deg); animation: bounce 2s infinite;
}

/* ─── BUTTONS ─── */
.btn {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 2px; text-transform: uppercase; padding: 16px 40px;
  border-radius: var(--radius-btn); border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px; transition: var(--transition);
}
.btn--primary { background: var(--cyan); color: var(--black); animation: pulse 2.5s infinite; position: relative; overflow: hidden; }
.btn--primary::after { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); animation: shine 3s infinite; }
.btn--primary:hover { background: var(--white); box-shadow: 0 0 40px rgba(0,212,255,0.5), 0 0 80px rgba(0,212,255,0.2); transform: translateY(-3px) scale(1.02); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid var(--cyan); position: relative; overflow: hidden; }
.btn--outline::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%; background: var(--cyan); transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1); z-index: -1; }
.btn--outline:hover::before { width: 100%; }
.btn--outline:hover { color: var(--black); box-shadow: 0 0 30px rgba(0,212,255,0.3); transform: translateY(-3px); }
.btn--whatsapp { background: var(--green-wa); color: var(--white); }
.btn--whatsapp:hover { background: #20ba5a; box-shadow: 0 0 30px rgba(37,211,102,0.3); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════ */
.stats {
  background: var(--titanium); padding: 60px 0;
  border-top: 1px solid rgba(0,212,255,0.1); border-bottom: 1px solid rgba(0,212,255,0.1);
}
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.stat__number { font-family: var(--font-tech); font-size: 2.8rem; font-weight: 700; color: var(--cyan); margin-bottom: 8px; transition: text-shadow 0.3s ease; }
.stat__number.counting { animation: counterGlow 2s ease; }
.stat__label { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: var(--silver); }

/* ═══════════════════════════════════════════════════════
   SECTION TITLES
   ═══════════════════════════════════════════════════════ */
.section-tag { font-family: var(--font-tech); font-size: 0.7rem; letter-spacing: 5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.8rem); letter-spacing: 3px; margin-bottom: 16px; line-height: 1.2; }
.section-subtitle { font-family: var(--font-body); font-size: 1rem; font-weight: 300; color: var(--silver); letter-spacing: 1px; max-width: 600px; }
.section-subtitle--center { margin: 0 auto; }

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════ */
.about { padding: var(--section-padding); background: var(--titanium-light); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__text .section-subtitle { max-width: none; margin-bottom: 25px; line-height: 1.8; }
.about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 35px; }
.about__feature { display: flex; align-items: center; gap: 12px; }
.about__feature-icon {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(0,212,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about__feature-icon svg { width: 18px; height: 18px; fill: var(--cyan); }
.about__feature span { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 400; letter-spacing: 1px; }
.about__image-wrap { position: relative; border-radius: var(--radius-card); overflow: hidden; }
.about__image-wrap::before { content: ''; position: absolute; inset: 0; border: 1px solid rgba(0,212,255,0.2); border-radius: var(--radius-card); z-index: 1; pointer-events: none; }
.about__image-wrap img { width: 100%; height: 500px; object-fit: cover; transition: transform 0.8s ease; }
.about__image-wrap:hover img { transform: scale(1.05); }
.about__badge { position: absolute; bottom: 20px; left: 20px; z-index: 2; background: rgba(10,10,10,0.85); backdrop-filter: blur(10px); padding: 15px 25px; border-radius: var(--radius-card); border: 1px solid rgba(0,212,255,0.3); }
.about__badge-number { font-family: var(--font-tech); font-size: 2rem; font-weight: 700; color: var(--cyan); line-height: 1; }
.about__badge-text { font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); }

/* ═══════════════════════════════════════════════════════
   TEAM SECTION (NUEVA)
   ═══════════════════════════════════════════════════════ */
.team { padding: var(--section-padding); background: var(--black); }
.team__header { text-align: center; margin-bottom: 60px; }

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

.team-card {
  background: var(--titanium); border-radius: var(--radius-card);
  overflow: hidden; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s ease; border: 1px solid transparent;
  position: relative;
}
.team-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15), 0 0 0 1px rgba(0,212,255,0.1);
}

.team-card__img-wrap {
  position: relative; height: 300px; overflow: hidden;
}
.team-card__img-wrap img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
}
.team-card:hover .team-card__img-wrap img { transform: scale(1.08); }

.team-card__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.9) 100%);
}

.team-card__book-btn {
  position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%) translateY(20px);
  opacity: 0; transition: var(--transition);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.75rem;
  letter-spacing: 2px; text-transform: uppercase; background: var(--cyan);
  color: var(--black); padding: 10px 28px; border-radius: var(--radius-btn);
  white-space: nowrap; border: none; cursor: pointer;
}
.team-card:hover .team-card__book-btn { opacity: 1; transform: translateX(-50%) translateY(0); }

.team-card__info { padding: 25px 20px; text-align: center; }
.team-card__name {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  letter-spacing: 1px; margin-bottom: 4px;
}
.team-card__role {
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 400;
  font-style: italic; color: var(--cyan); margin-bottom: 10px;
}
.team-card__bio {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 300;
  color: var(--silver); line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   SERVICES SECTION (con imágenes)
   ═══════════════════════════════════════════════════════ */
.services { padding: var(--section-padding); background: var(--black); }
.services__header { text-align: center; margin-bottom: 60px; }
.services__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; }

.service-card {
  background: var(--titanium); border-radius: var(--radius-card);
  position: relative; overflow: hidden; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s ease;
  border: 1px solid transparent; display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: var(--transition); z-index: 2;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.03));
  transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1); z-index: 0; pointer-events: none;
}
.service-card:hover { transform: translateY(-12px); border-color: rgba(0,212,255,0.25); box-shadow: 0 20px 60px rgba(0,212,255,0.12), 0 0 0 1px rgba(0,212,255,0.08); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { height: 100%; }

.service-card__img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__img { transform: scale(1.05); }

.service-card__body { padding: 35px 30px; flex: 1; display: flex; flex-direction: column; }

.service-card__icon {
  width: 50px; height: 50px; border-radius: 50%; background: rgba(0,212,255,0.08);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: var(--transition);
}
.service-card:hover .service-card__icon { background: rgba(0,212,255,0.15); box-shadow: 0 0 20px rgba(0,212,255,0.2); }
.service-card__icon svg { width: 24px; height: 24px; fill: var(--cyan); }
.service-card__title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 10px; }
.service-card__desc { font-family: var(--font-body); font-size: 0.9rem; font-weight: 300; color: var(--silver); line-height: 1.7; margin-bottom: 20px; }
.service-card__link { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); display: inline-flex; align-items: center; gap: 8px; margin-top: auto; }
.service-card__link svg { width: 16px; height: 16px; fill: var(--cyan); transition: var(--transition); }
.service-card__link:hover svg { transform: translateX(5px); }

/* ═══════════════════════════════════════════════════════
   FACILITIES SECTION (NUEVA)
   ═══════════════════════════════════════════════════════ */
.facilities { padding: var(--section-padding); background: var(--titanium-light); }
.facilities__header { text-align: center; margin-bottom: 60px; }

.facilities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 15px;
}
.facilities__item {
  position: relative; border-radius: var(--radius-card); overflow: hidden; cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}
.facilities__item:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.facilities__item:nth-child(1) { grid-column: span 2; }
.facilities__item:nth-child(6) { grid-column: span 2; }

.facilities__item img {
  width: 100%; height: 240px; object-fit: cover; transition: transform 0.6s ease;
}
.facilities__item:nth-child(1) img,
.facilities__item:nth-child(6) img { height: 260px; }

.facilities__item:hover img { transform: scale(1.08); }

.facilities__item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.85) 100%);
  display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: var(--transition);
}
.facilities__item:hover .facilities__item-overlay { opacity: 1; }

.facilities__item-title {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════
   BEFORE / AFTER SECTION (NUEVA)
   ═══════════════════════════════════════════════════════ */
.before-after { padding: var(--section-padding); background: var(--black); }
.before-after__header { text-align: center; margin-bottom: 60px; }

.ba-cases { display: flex; flex-direction: column; gap: 60px; }

.ba-case { position: relative; }
.ba-case__label {
  font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; color: var(--cyan);
}

.ba-case__container {
  position: relative; width: 100%; max-width: 800px; margin: 0 auto;
  aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-card);
  cursor: ew-resize; user-select: none; -webkit-user-select: none;
}

.ba-case__img-wrap {
  position: absolute; inset: 0;
}
.ba-case__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.ba-case__img--after {
  clip-path: inset(0 50% 0 0);
}

.ba-case__divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: var(--cyan); z-index: 2;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-case__handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(0,212,255,0.4); z-index: 3;
  pointer-events: none;
}
.ba-case__handle svg { width: 24px; height: 24px; fill: var(--black); }

.ba-case__tags {
  position: absolute; top: 15px; left: 15px; right: 15px;
  display: flex; justify-content: space-between; z-index: 2; pointer-events: none;
}
.ba-case__tag {
  font-family: var(--font-tech); font-size: 0.6rem; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
}
.ba-case__tag--before { background: rgba(10,10,10,0.7); color: var(--silver); }
.ba-case__tag--after { background: rgba(0,212,255,0.2); color: var(--cyan); }

/* ═══════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════ */
.gallery { padding: var(--section-padding); background: #111111; }
.gallery__header { text-align: center; margin-bottom: 60px; }
.gallery__grid { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: auto; gap: 15px; }
.gallery__item { position: relative; border-radius: var(--radius-card); overflow: hidden; cursor: pointer; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease; }
.gallery__item:hover { transform: scale(1.03); box-shadow: 0 20px 50px rgba(0,212,255,0.1); }
.gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; min-height: 200px; }
.gallery__item:nth-child(1) img { min-height: 415px; }
.gallery__item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.9) 100%);
  display: flex; align-items: flex-end; padding: 25px; opacity: 0; transition: var(--transition);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-title { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════ */
.testimonials { padding: var(--section-padding); background: var(--white); color: var(--black); }
.testimonials__header { text-align: center; margin-bottom: 60px; }
.testimonials__header .section-title { color: var(--black); }
.testimonials__header .section-subtitle { color: #666; }
.testimonials__carousel { position: relative; overflow: hidden; }
.testimonials__track { display: flex; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.testimonial-card { flex: 0 0 calc(33.333% - 20px); margin: 0 10px; background: #f8f8f8; border-radius: var(--radius-card); padding: 40px 30px; text-align: center; }
.testimonial-card__stars { margin-bottom: 20px; display: flex; justify-content: center; gap: 4px; }
.testimonial-card__stars svg { width: 18px; height: 18px; fill: #f5a623; }
.testimonial-card__text { font-family: var(--font-body); font-size: 0.95rem; font-weight: 300; line-height: 1.8; color: #444; margin-bottom: 25px; font-style: italic; }
.testimonial-card__avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; border: 2px solid var(--cyan); }
.testimonial-card__name { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.testimonial-card__vehicle { font-family: var(--font-tech); font-size: 0.65rem; letter-spacing: 2px; color: var(--cyan-dark); text-transform: uppercase; }
.testimonials__nav { display: flex; justify-content: center; gap: 15px; margin-top: 40px; }
.testimonials__nav-btn {
  width: 45px; height: 45px; border-radius: 50%; border: 2px solid var(--black);
  background: transparent; cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: var(--transition);
}
.testimonials__nav-btn:hover { background: var(--black); }
.testimonials__nav-btn svg { width: 18px; height: 18px; fill: var(--black); transition: var(--transition); }
.testimonials__nav-btn:hover svg { fill: var(--white); }

/* ═══════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════ */
.cta { padding: 120px 0; background: linear-gradient(135deg, var(--black) 0%, #001a20 50%, var(--black) 100%); position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%); pointer-events: none; }
.cta__content { text-align: center; position: relative; z-index: 1; }
.cta__title { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.2rem); letter-spacing: 3px; margin-bottom: 16px; }
.cta__subtitle { font-family: var(--font-body); font-size: 1.05rem; font-weight: 300; color: var(--silver); margin-bottom: 45px; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta__buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta__buttons .btn--primary { animation: pulse 2s infinite; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer { background: var(--black); padding: 80px 0 30px; border-top: 1px solid rgba(0,212,255,0.1); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 60px; animation: fadeInUp 1s ease both; }
.footer__brand-name { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 3px; margin-bottom: 15px; }
.footer__brand-name span { color: var(--cyan); }
.footer__brand-desc { font-size: 0.9rem; font-weight: 300; color: var(--silver); line-height: 1.7; margin-bottom: 25px; }
.footer__social { display: flex; gap: 15px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--titanium); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer__social a:hover { border-color: var(--cyan); background: rgba(0,212,255,0.1); transform: rotate(15deg); }
.footer__social a svg { width: 16px; height: 16px; fill: var(--cyan); }
.footer__col-title { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 25px; color: var(--white); }
.footer__links li { margin-bottom: 12px; }
.footer__links a { font-size: 0.9rem; font-weight: 300; color: var(--silver); }
.footer__links a:hover { color: var(--cyan); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; }
.footer__contact-item svg { width: 16px; height: 16px; fill: var(--cyan); flex-shrink: 0; margin-top: 3px; }
.footer__contact-item span { font-size: 0.9rem; font-weight: 300; color: var(--silver); line-height: 1.5; }
.footer__contact-item a { color: var(--silver); }
.footer__contact-item a:hover { color: var(--cyan); }
.footer__bottom { border-top: 1px solid var(--titanium); padding-top: 25px; display: flex; justify-content: space-between; align-items: center; }
.footer__copyright { font-size: 0.8rem; font-weight: 300; color: #666; }
.footer__bottom-links { display: flex; gap: 25px; }
.footer__bottom-links a { font-size: 0.8rem; color: #666; }
.footer__bottom-links a:hover { color: var(--cyan); }

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════════════════ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes bounce { 0%,20%,50%,80%,100% { transform: rotate(45deg) translateY(0); } 40% { transform: rotate(45deg) translateY(-10px); } 60% { transform: rotate(45deg) translateY(-5px); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes shine { 0% { left: -100%; } 100% { left: 200%; } }
@keyframes glowPulse { 0%,100% { box-shadow: 0 0 5px rgba(0,212,255,0.2); } 50% { box-shadow: 0 0 25px rgba(0,212,255,0.4); } }
@keyframes heroTextReveal { from { opacity: 0; transform: translateY(30px) skewY(3deg); filter: blur(4px); } to { opacity: 1; transform: translateY(0) skewY(0); filter: blur(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleReveal { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
@keyframes counterGlow { 0% { text-shadow: 0 0 0 transparent; } 50% { text-shadow: 0 0 20px rgba(0,212,255,0.6); } 100% { text-shadow: 0 0 0 transparent; } }

/* ═══════════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--white); }
.mobile-menu a:hover { color: var(--cyan); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__image-wrap { order: -1; }
  .about__image-wrap img { height: 350px; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2,1fr); }
  .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery__item:nth-child(1) img { min-height: 300px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team__grid { grid-template-columns: repeat(2,1fr); }
  .facilities__grid { grid-template-columns: repeat(2,1fr); }
  .facilities__item:nth-child(1),
  .facilities__item:nth-child(6) { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --section-padding: 70px 0; }
  .nav__links, .nav__wa-btn { display: none; }
  .nav__hamburger { display: flex; }
  .stats__grid { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .about__features { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 calc(100% - 20px); }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item:nth-child(1) { grid-column: span 1; }
  .gallery__item:nth-child(1) img { min-height: 250px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 15px; text-align: center; }
  .hero__buttons, .cta__buttons { flex-direction: column; align-items: center; }
  .team__grid { grid-template-columns: 1fr; }
  .facilities__grid { grid-template-columns: 1fr; }
  .facilities__item:nth-child(1),
  .facilities__item:nth-child(6) { grid-column: span 1; }
  .hero-slider__dots { right: 15px; }
  .hero-slider__labels { display: none; }
}

@media (max-width: 480px) {
  .stat__number { font-size: 2rem; }
  .hero__title { letter-spacing: 4px; }
  .section-title { letter-spacing: 1px; }
}
