/* ============================================================
   H2A Wheels – Ultra Modern Stylesheet v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg:        #070c06;
  --bg2:       #0c1209;
  --bg3:       #10180d;
  --surface:   #162110;
  --surface2:  #1c2a15;
  --border:    rgba(255,255,255,0.08);
  --accent:    #22c55e;
  --accent2:   #15803d;
  --teal:      #f59e0b;
  --red:       #ef4444;
  --gold:      #f59e0b;
  --text:      #e8eaf0;
  --muted:     #6b7280;
  --radius:    16px;
  --radius-lg: 24px;
  --glow:      0 0 40px rgba(34,197,94,0.25);
  --shadow:    0 20px 60px rgba(0,0,0,0.4);
  --trans:     all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding-top: 72px;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(8,9,13,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(8,9,13,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
}

/* Desktop nav: show on large screens, hide on mobile */
#desktopNav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  #desktopNav { display: none !important; }
}

/* Hamburger: mobile only */
#navToggle {
  display: flex !important;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  #navToggle { display: none !important; }
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--accent); }
.navbar-toggler {
  background: none;
  border: 1px solid var(--border);
  color: #fff;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
}
.navbar-nav {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: var(--trans);
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.07); }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 50px !important;
  border: 2px solid rgba(255,255,255,0.25) !important;
  letter-spacing: 0.3px;
}
.nav-cta:hover { background: #dc2626 !important; box-shadow: 0 0 40px rgba(239,68,68,0.35); transform: translateY(-1px); }

/* Mobile: make Apply for Finance clearly visible */
@media (max-width: 991px) {
  .nav-cta {
    background: var(--red) !important;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.4) !important;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.75rem 1.4rem !important;
    font-size: 1rem !important;
  }
}

/* old mobile nav dropdown removed — replaced by side drawer */

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(34,197,94,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(21,128,61,0.09) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(245,158,11,0.06) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(79,110,247,0.1);
  border: 1px solid rgba(79,110,247,0.25);
  color: var(--accent);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat-item { text-align: center; }
.hero-stat-item .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-align: center;
}
.hero-stat-item .num span { color: var(--teal); }
.hero-stat-item .label { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; text-align: center; }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero-card-float {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 380px;
  position: relative;
}
.hero-card-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(79,110,247,0.4), rgba(0,212,170,0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-logo { max-width: 140px; margin-bottom: 1rem; }
.hero-badge {
  display: inline-block;
  background: rgba(0,212,170,0.1);
  color: var(--teal);
  border: 1px solid rgba(0,212,170,0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-card-float h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.hero-card-float p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.25rem; }
.trust-items { display: flex; flex-direction: column; gap: 0.6rem; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.trust-item .dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .hero { min-height: auto; }
  .hero-content { padding: 60px 0 40px; }
  .hero-visual { margin-top: 3rem; }
  .hero h1 { letter-spacing: -1px; }
}

/* ══════════════════════════════
   APPLY BANNER
══════════════════════════════ */
.apply-banner {
  display: block;
  background: linear-gradient(90deg, #15803d, #22c55e);
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.apply-banner::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer { to { left: 100%; } }
.apply-banner:hover { color: #fff; filter: brightness(1.1); }
.apply-banner small { opacity: 0.8; font-weight: 400; display: block; font-size: 0.8rem; margin-top: 2px; }

/* ══════════════════════════════
   SECTIONS
══════════════════════════════ */
.section { padding: 90px 0; }
.section-dark { background: var(--bg2); }
.section-surface { background: var(--bg3); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 550px;
  line-height: 1.8;
  margin: 0 auto 3.5rem;
}

/* ══════════════════════════════
   VALUE CARDS
══════════════════════════════ */
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  transform: scaleX(0);
  transition: var(--trans);
  transform-origin: left;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(79,110,247,0.2); }
.value-card:hover::before { transform: scaleX(1); }
.value-card { text-align: center; }
.value-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.5rem;
}
.vi-blue { background: rgba(79,110,247,0.12); }
.vi-teal { background: rgba(0,212,170,0.1); color: #00d4aa; }
.vi-red  { background: rgba(239,68,68,0.12); }
.value-card h4 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; text-align: center; }
.value-card ul { list-style: none; padding: 0; text-align: center; }
.value-card ul li {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.value-card ul li:last-child { border: none; }
.value-card ul li::before { content: '✓'; color: var(--teal); font-weight: 800; font-size: 1rem; flex-shrink: 0; }

/* ══════════════════════════════
   CORE MOTTO
══════════════════════════════ */
.core-motto {
  background: linear-gradient(135deg, rgba(79,110,247,0.1), rgba(0,212,170,0.05));
  border: 1px solid rgba(79,110,247,0.15);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.core-motto::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 10rem;
  color: rgba(79,110,247,0.06);
  font-family: serif;
  line-height: 1;
}
.core-motto p { font-size: 1.3rem; color: rgba(255,255,255,0.9); line-height: 1.8; font-weight: 400; position: relative; }
.core-motto strong { color: var(--teal); }
@media (max-width: 768px) { .core-motto p { font-size: 1.05rem; } .core-motto { padding: 2rem 1.5rem; } }

/* ══════════════════════════════
   HOW IT WORKS
══════════════════════════════ */
.step-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: var(--trans);
  margin-bottom: 1rem;
}
.step-card:hover { border-color: rgba(79,110,247,0.3); background: var(--surface2); transform: translateX(6px); }
.step-num {
  min-width: 48px; height: 48px;
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(79,110,247,0.3);
}
.step-body h5 { font-weight: 700; color: #fff; font-size: 1.05rem; margin-bottom: 0.35rem; }
.step-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ══════════════════════════════
   VEHICLE CARDS
══════════════════════════════ */
.vehicle-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
  height: 100%;
  cursor: pointer;
}
.vehicle-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: rgba(79,110,247,0.25); }
.vehicle-card .img-wrap { position: relative; overflow: hidden; }
.vehicle-card img {
  height: 215px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.vehicle-card:hover img { transform: scale(1.06); }
.v-price {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--teal);
  color: #08090d;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 5px 12px;
  border-radius: 50px;
}
.no-img {
  height: 215px;
  background: var(--surface2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  gap: 0.5rem;
}
.no-img span { font-size: 2rem; }
.v-body { padding: 1.25rem; }
.v-title { font-weight: 700; font-size: 0.95rem; color: #fff; margin-bottom: 0.35rem; }
.v-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.1rem; }
.v-meta span { color: rgba(255,255,255,0.4); margin: 0 6px; }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
}
.testimonial-card:hover { border-color: rgba(79,110,247,0.2); }
.testimonial-card img { height: 230px; object-fit: cover; width: 100%; }
.t-body { padding: 1.25rem; }
.t-name { font-weight: 700; font-size: 0.95rem; color: #fff; margin-bottom: 0.5rem; }
.t-text { font-size: 0.85rem; color: var(--muted); line-height: 1.6; font-style: italic; }

/* ══════════════════════════════
   MAP
══════════════════════════════ */
#deliveryMap {
  height: 440px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* ══════════════════════════════
   FINANCE CALCULATOR
══════════════════════════════ */
.calc-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.calc-header {
  background: linear-gradient(135deg, #15803d, #22c55e);
  padding: 2rem 2.5rem;
}
.calc-header h3 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; }
.calc-header p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin: 0; }
.calc-body { padding: 2rem 2.5rem; }
.calc-label { font-size: 0.8rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem; display: block; }
.calc-input {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: var(--trans);
  outline: none;
}
.calc-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,110,247,0.15); }
.calc-input option { background: var(--bg2); }
.calc-result {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(0,212,170,0.08), rgba(79,110,247,0.05));
  border: 1px solid rgba(0,212,170,0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  display: none;
}
.monthly-amount { font-size: 2.5rem; font-weight: 900; color: var(--teal); line-height: 1; margin-bottom: 0.25rem; }
.monthly-label { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.5rem; }
.balloon-note { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.calc-note { font-size: 0.75rem; color: var(--muted); margin-top: 1.25rem; text-align: center; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}
.contact-grid { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.c-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--trans);
}
.c-whatsapp { background: rgba(37,211,102,0.12); color: #25D366; border: 1px solid rgba(37,211,102,0.2); }
.c-whatsapp:hover { background: #25D366; color: #fff; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.3); }
.c-email { background: rgba(79,110,247,0.1); color: var(--accent); border: 1px solid rgba(79,110,247,0.2); }
.c-email:hover { background: var(--accent); color: #fff; transform: translateY(-3px); box-shadow: var(--glow); }
.c-phone { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.7); border: 1px solid var(--border); }
.c-phone:hover { background: rgba(255,255,255,0.1); color: #fff; transform: translateY(-3px); }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--trans);
}
.btn-primary:hover { background: #3a57e8; color: #fff; transform: translateY(-2px); box-shadow: var(--glow); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  text-decoration: none;
  transition: var(--trans);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; background: rgba(255,255,255,0.05); }
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: #08090d;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.7rem 1.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--trans);
}
.btn-teal:hover { color: #08090d; filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,212,170,0.3); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #050508;
  border-top: 1px solid var(--border);
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 80px;
}
footer a { color: rgba(255,255,255,0.4); text-decoration: none; margin: 0 8px; transition: var(--trans); }
footer a:hover { color: #fff; }
.footer-links { margin-top: 0.75rem; }

/* ══════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  transition: var(--trans);
  animation: floatPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); color: white; box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
@keyframes floatPulse {
  0%,100% { box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

/* ══════════════════════════════
   AOS OVERRIDES
══════════════════════════════ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ══════════════════════════════
   SAFARI / iPHONE FIXES
══════════════════════════════ */

/* Gradient text: ensure both prefixed and unprefixed work */
.gradient-text {
  background: linear-gradient(135deg, #22c55e, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Fallback for older Safari */
  color: #22c55e;
}

/* Backdrop blur: Safari needs -webkit prefix */
.navbar {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

/* Ensure body bg shows correctly on iOS overscroll */
html, body {
  background-color: var(--bg);
  -webkit-overflow-scrolling: touch;
}

/* iOS tap highlight remove */
a, button { -webkit-tap-highlight-color: transparent; }

/* Fix iOS font size inflate on landscape */
body { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }


/* ══════════════════════════════
   FINANCE PARTNERS STRIP
══════════════════════════════ */
.finance-partners-section {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.partners-header {
  text-align: center;
  margin-bottom: 2rem;
}
.partners-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
}
.partners-sub {
  font-size: 0.88rem;
  color: var(--muted);
}
.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 0.6rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .partner-logo-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 640px) {
  .partner-logo-grid { grid-template-columns: repeat(3, 1fr); }
}
.plg-item {
  background: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  cursor: default;
}
.plg-item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.plg-item img {
  width: auto;
  height: 36px;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
.plg-item svg {
  width: 100%;
  height: auto;
  max-height: 44px;
  display: block;
}

/* ══════════════════════════════
   NEED TO KNOW STRIP
══════════════════════════════ */
.ntk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .ntk-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ntk-grid { grid-template-columns: 1fr; }
}
.ntk-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ntk-icon {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}
.ntk-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.ntk-value {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ══════════════════════════════
   TRUST BAR
══════════════════════════════ */
.trust-bar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.trust-bar-item span {
  color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════
   IMPROVED FOOTER
══════════════════════════════ */
footer {
  background: #050508;
  border-top: 1px solid var(--border);
  padding: 0;
  margin-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(37,211,102,0.1);
  color: #25D366;
  border: 1px solid rgba(37,211,102,0.2);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--trans);
}
.footer-wa:hover {
  background: #25D366;
  color: #fff;
}
.footer-links-col h6 {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}
.footer-links-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.87rem;
  padding: 0.3rem 0;
  transition: var(--trans);
}
.footer-links-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   INVENTORY FILTER BAR
══════════════════════════════ */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.filter-input {
  flex: 1;
  min-width: 200px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--trans);
}
.filter-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,110,247,0.15); }
.filter-input::placeholder { color: var(--muted); }
.filter-select {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.7);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  transition: var(--trans);
}
.filter-select:focus { border-color: var(--accent); }
.filter-select option { background: var(--bg2); }
.filter-count {
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
  margin-left: auto;
}
@media (max-width: 640px) {
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-count { margin-left: 0; text-align: center; }
}
