/* ================================================================
   SELL US YOUR CAR — V4 ELECTRIC BLUE STYLESHEET
   Deep navy, electric blue accents, bold dark theme
   ================================================================ */

/* ============================================================
   CSS RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e8eef4;
  background: #0a0e17;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #3b9eff; text-decoration: none; transition: color .2s; }
a:hover { color: #6cb8ff; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes blueGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(59,158,255,.3); }
  50% { box-shadow: 0 0 40px rgba(59,158,255,.6); }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,14,23,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 3px solid #1a6fb5;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 180px;
}
.logo img { height: 170px; width: auto; filter: drop-shadow(0 0 10px rgba(59,158,255,.2)); }
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
}
.main-nav a {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 700;
  font-size: .95rem;
  color: #c0d4e8;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .25s;
  border: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active {
  background: #1a6fb5;
  color: #fff;
  border-color: #1a6fb5;
}
.lang-switch {
  font-size: .85rem;
  font-weight: 700;
  color: #3b9eff;
  border: 2px solid #3b9eff;
  border-radius: 6px;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .25s;
}
.lang-switch:hover {
  background: #3b9eff;
  color: #0a0e17;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #3b9eff;
  margin: 5px 0;
  border-radius: 3px;
  transition: transform .3s, opacity .3s;
}

/* ============================================================
   HERO — DEEP NAVY
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0a0e17 0%, #0f1a2e 40%, #0a0e17 100%);
  color: #fff;
  padding: 80px 20px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-check-handshake.jpg') center 35%/50% no-repeat;
  opacity: .15;
  filter: contrast(1.2) saturate(0.4);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 25%, #0a0e17 80%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  animation: fadeInUp .8s ease-out;
}
.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 16px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  text-shadow: 0 0 40px rgba(59,158,255,.25), 0 4px 12px rgba(0,0,0,.5);
}
.hero h1 .highlight {
  color: #3b9eff;
  display: inline;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: .9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS — ELECTRIC BLUE
   ============================================================ */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .25s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, #1a6fb5 0%, #3b9eff 100%);
  color: #fff;
  border-color: #3b9eff;
  animation: blueGlow 3s infinite;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #3b9eff 0%, #6cb8ff 100%);
  color: #fff;
  box-shadow: 0 8px 30px rgba(59,158,255,.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #0a0e17;
}

.btn-phone {
  background: linear-gradient(135deg, #00c853 0%, #009624 100%);
  color: #fff;
  border-color: #00c853;
}
.btn-phone:hover {
  background: linear-gradient(135deg, #33d375 0%, #00c853 100%);
  color: #fff;
  box-shadow: 0 8px 30px rgba(0,200,83,.4);
}

.btn-outline-blue {
  background: transparent;
  color: #3b9eff;
  border: 2px solid #3b9eff;
}
.btn-outline-blue:hover {
  background: #3b9eff;
  color: #0a0e17;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 70px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-alt { background: #0f1520; }
.section-dark { background: #0a0e17; }
.section-accent { background: linear-gradient(135deg, #060a14 0%, #0f1a2e 100%); border-top: 3px solid #1a6fb5; border-bottom: 3px solid #1a6fb5; }

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 12px;
  color: #3b9eff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #8899aa;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}
.step {
  padding: 30px 20px;
  background: rgba(59,158,255,.04);
  border: 1px solid rgba(59,158,255,.12);
  border-radius: 12px;
  transition: all .3s;
}
.step:hover {
  border-color: #3b9eff;
  background: rgba(59,158,255,.08);
  transform: translateY(-4px);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6fb5, #3b9eff);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(59,158,255,.3);
}
.step h3 { font-size: 1.2rem; color: #6cb8ff; margin-bottom: 8px; text-transform: uppercase; }
.step p { color: #8899aa; font-size: .95rem; }

/* ============================================================
   CARD GRID
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.card {
  background: #0f1520;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(59,158,255,.08);
  transition: all .3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: #3b9eff;
  box-shadow: 0 12px 40px rgba(59,158,255,.12);
}
.card-img { width: 100%; height: 220px; object-fit: cover; filter: contrast(1.05) brightness(.92); }
.card:hover .card-img { filter: contrast(1.1) brightness(1); }
.card-body { padding: 24px; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 8px; color: #3b9eff; }
.card-body p { color: #8899aa; font-size: .95rem; }

/* ============================================================
   FEATURES ROW
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}
.feature {
  padding: 30px 16px;
  background: rgba(59,158,255,.03);
  border: 1px solid rgba(59,158,255,.08);
  border-radius: 12px;
  transition: all .3s;
}
.feature:hover {
  border-color: #3b9eff;
  background: rgba(59,158,255,.06);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px rgba(59,158,255,.3));
}
.feature h3 { font-size: 1.1rem; color: #6cb8ff; margin-bottom: 6px; text-transform: uppercase; }
.feature p { font-size: .9rem; color: #7788aa; }

/* ============================================================
   SPLIT CONTENT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.split-text h2 {
  font-size: 2rem;
  color: #3b9eff;
  margin-bottom: 16px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
}
.split-text p { color: #8899aa; margin-bottom: 12px; font-size: 1.05rem; }
.split-img {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(59,158,255,.15);
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
  transition: all .3s;
}
.split-img:hover {
  border-color: #3b9eff;
  box-shadow: 0 12px 40px rgba(59,158,255,.15);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   CONTACT GRID
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.contact-card {
  background: #0f1520;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(59,158,255,.12);
  text-align: center;
  transition: all .3s;
}
.contact-card:hover {
  border-color: #3b9eff;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59,158,255,.12);
}
.contact-card-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px rgba(59,158,255,.3));
}
.contact-card h3 { font-size: 1.2rem; color: #3b9eff; margin-bottom: 8px; text-transform: uppercase; }
.contact-card p { color: #8899aa; font-size: .95rem; }
.contact-card a { color: #3b9eff; font-weight: 700; }
.contact-card a:hover { color: #6cb8ff; }

/* ============================================================
   DIRECTIONS SECTION
   ============================================================ */
.directions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.directions-text h3 {
  font-size: 1.2rem;
  color: #6cb8ff;
  margin-bottom: 8px;
  margin-top: 20px;
  text-transform: uppercase;
}
.directions-text h3:first-child { margin-top: 0; }
.directions-text p { color: #8899aa; margin-bottom: 4px; }
.directions-text a { color: #3b9eff; }
.directions-text ol {
  color: #8899aa;
  padding-left: 20px;
  margin-bottom: 16px;
}
.directions-text ol li { margin-bottom: 6px; }
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(59,158,255,.15);
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}

/* ============================================================
   HOURS TABLE
   ============================================================ */
.hours-table {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-collapse: collapse;
}
.hours-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(59,158,255,.08);
  font-size: .95rem;
  color: #b0c4d8;
}
.hours-table td:first-child { font-weight: 700; color: #3b9eff; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table .closed { color: #e53935; font-weight: 700; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(59,158,255,.1);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: all .3s;
}
.gallery-grid img:hover {
  border-color: #3b9eff;
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(59,158,255,.15);
}

/* ============================================================
   CTA BANNER — BOLD BLUE
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #0d3a6e 0%, #1a6fb5 50%, #0d3a6e 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,.02) 10px,
    rgba(255,255,255,.02) 20px
  );
}
.cta-banner * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta-banner p { font-size: 1.15rem; margin-bottom: 28px; opacity: .9; }
.cta-banner .btn-primary {
  background: #fff;
  color: #1a6fb5;
  border-color: #fff;
  animation: none;
}
.cta-banner .btn-primary:hover {
  background: #e8eef4;
  color: #0d3a6e;
  box-shadow: 0 8px 30px rgba(255,255,255,.3);
}
.cta-banner .btn-outline {
  color: #fff;
  border-color: #fff;
}
.cta-banner .btn-outline:hover {
  background: #fff;
  color: #1a6fb5;
}

/* ============================================================
   SE HABLA ESPANOL BADGE
   ============================================================ */
.espanol-badge {
  text-align: center;
  padding: 16px 20px;
  background: linear-gradient(135deg, #060a14 0%, #0f1a2e 100%);
  border-top: 2px solid #1a6fb5;
  border-bottom: 2px solid #1a6fb5;
}
.espanol-badge p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #3b9eff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   STAT COUNTER BAR
   ============================================================ */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  background: #0a0e17;
  border-bottom: 2px solid rgba(59,158,255,.12);
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(59,158,255,.06);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: #3b9eff;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: .85rem;
  color: #6688aa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060810;
  color: rgba(255,255,255,.55);
  padding: 50px 20px 20px;
  border-top: 3px solid #1a6fb5;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.footer-col h4 { color: #3b9eff; margin-bottom: 12px; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col p, .footer-col a { font-size: .9rem; color: rgba(255,255,255,.45); line-height: 1.8; }
.footer-col a:hover { color: #3b9eff; }
.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(59,158,255,.1);
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .header-inner { height: 130px; }
  .logo img { height: 116px; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 130px;
    left: 0;
    right: 0;
    background: rgba(10,14,23,.98);
    border-bottom: 2px solid #1a6fb5;
    padding: 16px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 12px 16px; }
  .hero { padding: 50px 16px; min-height: 360px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .section { padding: 50px 16px; }
  .section-title { font-size: 1.6rem; }
  .split { grid-template-columns: 1fr; }
  .split-img { order: -1; }
  .directions-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(59,158,255,.06); }
  .cta-banner h2 { font-size: 1.6rem; }
}
