/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
  --bg: #0f172a;
  --bg-card: #1e293b;
  --bg-dark: #0b0f17;
  --blue: #1E5AA8;
  --teal: #2EC4B6;
  --yellow: #fbbf24;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --radius: 0.75rem;
  --max-w: 72rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: #164785; border-color: #164785; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }

.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-block { width: 100%; justify-content: center; }

.text-yellow { color: var(--yellow); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); font-size: 1.0625rem; max-width: 36rem; margin: 0 auto; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.25s, padding 0.25s, box-shadow 0.25s;
}
.nav--scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #fff;
}
.nav-logo-img { height: 2.25rem; width: auto; }
.nav-links { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link { color: #cbd5e1; font-size: 0.9375rem; transition: color 0.15s; }
.nav-link:hover { color: #fff; }
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  background: var(--blue);
  border: none;
  border-radius: 0.5rem;
  color: #fff;
  cursor: pointer;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  padding: 5.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-link {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid #1e293b;
  color: #fff;
  display: block;
}
.mobile-cta { margin-top: 1rem; justify-content: center; }

/* ===== HERO ===== */
.hero {
  padding: 7rem 0 5rem;
  background: linear-gradient(135deg, var(--bg) 0%, #1e293b 100%);
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-tagline {
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-body {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 34rem;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; color: var(--text-muted); font-size: 0.875rem; }
.hero-meta span { display: flex; align-items: center; gap: 0.4rem; }
.hero-meta svg { color: var(--yellow); flex-shrink: 0; }

.hero-image-wrap { position: relative; }
.hero-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #0f172a;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  white-space: nowrap;
}

/* ===== BENEFITS ===== */
.benefits { padding: 5rem 0; background: var(--bg); }
.benefits-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.benefit-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: background 0.2s;
}
.benefit-card:hover { background: #233047; }
.benefit-icon {
  width: 3.5rem; height: 3.5rem;
  background: rgba(30, 90, 168, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--blue);
}
.benefit-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.benefit-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== INVENTORY ===== */
.inventory { padding: 5rem 0; background: var(--bg-card); }
.inventory-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.inventory-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
}
.inventory-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.inventory-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.inventory-card:hover .inventory-img-wrap img { transform: scale(1.06); }
.inventory-body { padding: 1.25rem; }
.inventory-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.inventory-price { color: var(--yellow); font-weight: 600; margin-bottom: 0.25rem; }
.inventory-brands { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1rem; }
.inventory-cta { text-align: center; margin-top: 3rem; }
.inventory-cta p { color: var(--text-muted); margin-bottom: 1rem; }

/* ===== SERVICES ===== */
.services { padding: 5rem 0; background: var(--bg); }
.services-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.services-left h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 2rem; }
.service-list { display: flex; flex-direction: column; gap: 2rem; }
.service-item { display: flex; gap: 1rem; align-items: flex-start; }
.service-icon {
  width: 3rem; height: 3rem;
  background: rgba(30, 90, 168, 0.15);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.service-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.service-item p { color: var(--text-muted); font-size: 0.9375rem; }

.financing-card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 2rem;
}
.financing-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.financing-header h3 { font-size: 1.375rem; font-weight: 700; }
.financing-icon { background: rgba(251,191,36,0.15); color: var(--yellow); }
.financing-highlight {
  background: var(--bg);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.financing-amount { font-size: 2.5rem; font-weight: 800; color: var(--yellow); line-height: 1; }
.financing-terms { font-size: 1.0625rem; margin-top: 0.4rem; }
.financing-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.financing-list li { display: flex; align-items: center; gap: 0.75rem; color: #cbd5e1; font-size: 0.9375rem; }
.financing-list svg { color: var(--yellow); flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 5rem 0; background: var(--bg-card); }
.testimonials-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
}
.quote-icon { color: var(--teal); margin-bottom: 1rem; }
.testimonial-card > p { font-size: 1.0625rem; line-height: 1.7; margin-bottom: 1.25rem; color: #e2e8f0; }
.testimonial-card footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.testimonial-card footer strong { display: block; color: #fff; }
.testimonial-card footer span { color: var(--text-muted); font-size: 0.875rem; }
.stars { color: var(--teal); font-size: 0.9rem; letter-spacing: 0.05em; }

/* ===== VISIT ===== */
.visit { padding: 5rem 0; background: var(--bg); }
.visit-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .visit-grid { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.visit-info h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.visit-body { color: var(--text-muted); font-size: 1.0625rem; margin-bottom: 2rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(30, 90, 168, 0.15);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-item strong { display: block; color: #fff; margin-bottom: 0.2rem; font-size: 0.9375rem; }
.contact-item p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.5; }
.contact-item small { color: #64748b; }
.contact-item a { color: var(--yellow); }
.contact-item a:hover { text-decoration: underline; }
.visit-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.visit-map {
  min-height: 360px;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-card);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 360px; display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid #1e293b;
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 2rem;
}
.footer h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer li { color: var(--text-muted); font-size: 0.9375rem; }
.footer a { color: var(--text-muted); transition: color 0.15s; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 1.5rem; text-align: center; }
.footer-bottom p { color: #475569; font-size: 0.875rem; }
