/* ==========================================================================
   ISANGE AUTO LTD — Design System
   Crisp, professional, modern.
   Palette: Deep navy + Bajaj blue + Amber accent.
   ========================================================================== */

:root {
  --navy: #0a2540;
  --navy-600: #112e52;
  --navy-700: #0d2344;
  --blue: #2563a6;
  --blue-light: #3b82c4;
  --amber: #f59e0b;
  --amber-light: #fcd34d;
  --red: #dc2626;

  --ink: #0b1220;
  --ink-soft: #344054;
  --muted: #667085;
  --line: #e4e7ec;
  --line-soft: #f2f4f7;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-cream: #fafaf7;

  --radius: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow: 0 4px 16px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.12);

  --font-display: 'Bricolage Grotesque', serif;
  --font-body: 'Inter Tight', sans-serif;

  --container: 1280px;
  --pad: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--amber);
  color: var(--navy);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}
.btn-full { width: 100%; justify-content: center; }

/* ============ UTILITY BAR ============ */
.utility-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.util-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.util-item svg { width: 14px; height: 14px; }
.util-lang {
  font-weight: 600;
  transition: color 0.2s ease;
}
.util-lang:hover { color: var(--amber); }
.util-divider { opacity: 0.3; }

/* ============ HEADER ============ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  gap: 22px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 46px;
  height: 46px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.logo-mark .logo-shield {
  width: 100%;
  height: 100%;
}
.logo-mark.light { color: var(--amber); }
.logo-mark::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -4px;
  width: 10px; height: 10px;
  background: var(--amber);
  border-radius: 2px;
}
.logo-mark.light::after { background: var(--navy); }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-transform: uppercase;
}
.logo-sub {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.25s ease;
}
.main-nav a:hover { color: var(--navy); }
.main-nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #fef3c7 100%);
  padding: 80px 0 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(245, 158, 11, 0.15), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(37, 99, 166, 0.12), transparent 60%);
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.25;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-content { animation: fadeUp 0.8s ease both; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(10, 37, 64, 0.06);
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.05); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-title .accent {
  font-style: italic;
  color: var(--blue);
  font-weight: 600;
}
.hero-title .underline-accent {
  position: relative;
  display: inline-block;
}
.hero-title .underline-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%;
  height: 8px;
  background: var(--amber);
  z-index: -1;
  opacity: 0.85;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(10, 37, 64, 0.12);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num span { color: var(--amber); }
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fadeUp 0.9s 0.15s ease both;
}
.hero-bike {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(10, 37, 64, 0.2));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-badge {
  position: absolute;
  top: 10px;
  right: 20px;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.badge-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--amber);
  font-weight: 700;
}
.badge-model {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}
.hero-specs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.spec {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spec-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.spec-key {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 600;
}

/* Hero marquee */
.hero-marquee {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 16px 0;
  border-top: 4px solid var(--amber);
}
.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 14px;
}
.marquee-track span:nth-child(even) { color: var(--amber); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ SECTION ELEMENTS ============ */
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--amber-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title.light { color: #fff; }
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}

/* ============ INTRO ============ */
.intro {
  padding: 100px 0;
  background: var(--bg);
}
.intro-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.intro-right p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.75;
}
.intro-right strong { color: var(--navy); font-weight: 600; }
.intro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.chip {
  padding: 8px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

/* ============ MOTORCYCLES ============ */
.motorcycles {
  padding: 100px 0;
  background: var(--bg-soft);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.category-tabs {
  display: flex;
  gap: 4px;
  background: #fff;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.tab {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 3px;
  transition: all 0.2s;
}
.tab:hover { color: var(--navy); }
.tab.active {
  background: var(--navy);
  color: #fff;
}
.bike-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bike-card:target {
  border: 2px solid #f39c12;      /* Highlight with your brand color */
  background-color: #fffcf0;     /* Add a subtle background glow */
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Make it stand out */
  transform: translateY(-5px);    /* Lift it up slightly */
  transition: all 0.4s ease-in-out; 
}
.bike-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.bike-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber);
}
.bike-card.featured {
  grid-column: span 1;
  border: 2px solid var(--navy);
  background: linear-gradient(180deg, #fff 0%, var(--bg-cream) 100%);
}
.bike-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--amber);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  z-index: 2;
}
.bike-tag.tag-new {  background: var(--navy);
  color: var(--amber);}
.bike-visual {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  padding: 40px 32px 20px;
  position: relative;
  overflow: hidden;
}
.bike-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.bike-visual svg {
  position: relative;
  transition: transform 0.4s ease;
}
.bike-card:hover .bike-visual svg {
  transform: scale(1.04);
}
.bike-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bike-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bike-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 10px;
}
.bike-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.55;
  flex: 1;
}
.bike-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.bike-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.spec-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.spec-value em {
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  color: var(--muted);
  margin-left: 1px;
}
.spec-name {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}
.bike-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.bike-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.bike-link:hover { color: var(--amber); }
.bike-link:hover svg { transform: translateX(4px); }

/* ============ SERVICE ============ */
.service {
  padding: 100px 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.08), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(37, 99, 166, 0.15), transparent 50%);
}
.service-head {
  position: relative;
  margin-bottom: 64px;
  max-width: 700px;
}
.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  position: relative;
}
.service-card:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: var(--amber);
  transform: translateY(-4px);
}
.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.service-icon {
  width: 48px; height: 48px;
  color: var(--amber);
  margin-bottom: 20px;
}
.service-icon svg { width: 48px; height: 48px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #fff;
}
.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

/* ============ ACHIEVEMENTS ============ */
.achievements {
  padding: 100px 0;
  background: var(--bg-cream);
  text-align: center;
}
.achievements .section-eyebrow,
.achievements .section-title {
  text-align: left;
}
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.achievement {
  padding: 40px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.achievement:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: var(--shadow);
}
.achievement-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.achievement-label {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ============ NETWORK ============ */
.network {
  padding: 100px 0;
  background: var(--bg);
}
.network-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.network-desc {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 24px 0 28px;
  line-height: 1.7;
  max-width: 540px;
}
.location-list {
  margin-bottom: 36px;
}
.location-list li {
  padding: 14px 0;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.loc-dot {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}
.network-visual {
  position: relative;
}
.network-visual svg {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(10, 37, 64, 0.15));
}

/* ============ CONTACT ============ */
.contact {
  padding: 100px 0;
  background: var(--bg-soft);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left > p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.contact-block {
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--amber);
}
.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-value {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-soft);
  transition: all 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.08);
}
.form-field textarea { resize: vertical; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-sub { color: rgba(255, 255, 255, 0.5); }
.footer-tagline {
  font-size: 14px;
  margin: 24px 0;
  line-height: 1.7;
  max-width: 360px;
}
.social {
  display: flex;
  gap: 10px;
}
.social a {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.social a svg { width: 16px; height: 16px; color: #fff; }
.social a:hover {
  background: var(--amber);
  border-color: var(--amber);
}
.social a:hover svg { color: var(--navy); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-col ul li {
  padding: 6px 0;
  font-size: 14px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 500px; margin: 0 auto; }
  .intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .network-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .achievement-grid { grid-template-columns: repeat(2, 1fr); }
  .bike-grid { grid-template-columns: repeat(2, 1fr); }
  .customer-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; }
  .utility-left { font-size: 12px; gap: 12px; }
  .utility-right .util-location { display: none; }
  .hero { padding-top: 48px; }
  .hero-title { font-size: 42px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .stat-num { font-size: 32px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .bike-grid { grid-template-columns: 1fr; }
  .customer-grid { grid-template-columns: 1fr !important; }
  .service-grid { grid-template-columns: 1fr; }
  .achievement-grid { grid-template-columns: 1fr 1fr; }
  .contact-blocks { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .intro, .motorcycles, .service, .achievements, .network, .contact { padding: 64px 0; }
  .hero-badge { top: 0; right: 0; padding: 8px 12px; }
  .badge-model { font-size: 13px; }
  .hero-specs { gap: 20px; padding: 16px 18px; }
  .spec-val { font-size: 18px; }
  .header-cta .btn { display: none; }
}

/* ============================================================
   ADDITIONS: language switch, WhatsApp, test-ride page, CTA strip
   ============================================================ */

/* ---------- Language switch ---------- */
.lang-switch { display: inline-flex; align-items: center; gap: 6px; }
.lang-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 4px 8px;
  border-radius: 3px;
  transition: color 0.2s;
}
.lang-btn:hover { color: var(--amber); }
.lang-btn.active { color: var(--amber); }

/* ---------- Mobile nav overlay ---------- */
.main-nav.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  z-index: 99;
  box-shadow: var(--shadow);
}

/* ---------- WhatsApp button variant ---------- */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}
.btn-whatsapp:hover svg { transform: none; }
.btn-whatsapp svg { width: 18px; height: 18px; }

.btn-amber { background: var(--amber); color: var(--navy); }
.btn-amber:hover { background: #fff; color: var(--navy); }

/* ---------- WhatsApp inline contact card ---------- */
.whatsapp-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid #25D366;
  border-radius: var(--radius-lg);
  margin: 24px 0 32px;
  transition: all 0.25s;
}
.whatsapp-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-left-color: #1ebe57;
}
.whatsapp-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.whatsapp-icon svg { width: 22px; height: 22px; }
.whatsapp-text { flex: 1; }
.whatsapp-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.whatsapp-value {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.whatsapp-arrow { width: 18px; height: 18px; color: var(--navy); flex-shrink: 0; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: all 0.3s;
  animation: pulseRing 2.5s ease-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  background: #1ebe57;
}
.wa-float svg { width: 28px; height: 28px; }
@keyframes pulseRing {
  0% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Form success message ---------- */
.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius);
  color: #065f46;
  font-weight: 500;
  font-size: 14px;
}
.form-success.show {
  display: block;
  animation: fadeUp 0.5s ease both;
}

/* ---------- Test Ride CTA strip (homepage) ---------- */
.testride-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.testride-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 50%, rgba(245, 158, 11, 0.12), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(37, 99, 166, 0.2), transparent 50%);
}
.testride-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.testride-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-top: 16px;
  max-width: 520px;
  line-height: 1.6;
}
.testride-cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}
.testride-cta-right .btn { justify-content: center; }

/* ============================================================
   TEST RIDE PAGE
   ============================================================ */

/* Page hero */
.page-hero {
  position: relative;
  padding: 56px 0 64px;
  background: linear-gradient(135deg, #f8fafc 0%, #fef3c7 100%);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(245, 158, 11, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 70%, rgba(37, 99, 166, 0.1), transparent 60%);
  pointer-events: none;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  position: relative;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb svg { width: 14px; height: 14px; }
.breadcrumb span { color: var(--navy); font-weight: 600; }
.page-hero-content { position: relative; max-width: 720px; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 14px 0 18px;
}
.page-title .accent { color: var(--blue); font-style: italic; font-weight: 600; }
.page-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 580px;
  line-height: 1.65;
}

/* Benefits row */
.tr-benefits {
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.benefit {
  text-align: left;
}
.benefit-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-cream);
  border: 1px solid var(--amber);
  color: var(--navy);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.benefit p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* Booking form section */
.tr-booking {
  padding: 80px 0 100px;
  background: var(--bg-soft);
}
.tr-booking-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
.tr-form-wrap .section-eyebrow,
.tr-form-wrap .section-title {
  margin-bottom: 14px;
}
.tr-form-intro {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 32px;
  line-height: 1.65;
  max-width: 560px;
}
.tr-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.tr-form h3 { display: none; } /* use section headers instead */

.form-section {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.form-section:first-of-type { margin-top: 0; }
.form-section-num {
  width: 32px; height: 32px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}
.form-section h3 {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
}

.tr-consent { margin: 24px 0; }
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
}
.check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin: 2px 0 0;
  accent-color: var(--navy);
  cursor: pointer;
}

.tr-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.tr-or {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Sidebar */
.tr-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.tr-side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.tr-side-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tr-side-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.6;
}
.side-contact { margin-bottom: 18px; }
.side-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
}
.side-contact-row:last-child { border-bottom: 0; }
.side-contact-row svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; }
.side-contact-row a { color: var(--navy); font-weight: 500; }
.side-contact-row a:hover { color: var(--amber); }

.step-list {
  list-style: none;
  padding: 0;
}
.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.step-n {
  width: 24px; height: 24px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.step-text { padding-top: 3px; }

.req-list { list-style: none; padding: 0; }
.req-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.req-list li:last-child { border-bottom: 0; }

/* Optgroup styling */
optgroup {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}

/* ---------- Responsive additions ---------- */
@media (max-width: 1024px) {
  .testride-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .tr-booking-inner { grid-template-columns: 1fr; gap: 32px; }
  .tr-sidebar { position: static; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testride-cta { padding: 56px 0; }
  .tr-booking { padding: 56px 0 72px; }
  .page-hero { padding: 36px 0 48px; }
  .page-title { font-size: 36px; }
  .tr-form { padding: 28px 22px; }
  .benefit-grid { grid-template-columns: 1fr; gap: 24px; }
  .tr-submit-row { flex-direction: column; align-items: stretch; }
  .tr-submit-row .btn { width: 100%; justify-content: center; }
  .tr-or { text-align: center; }
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
  .whatsapp-card { padding: 14px; gap: 12px; }
  .whatsapp-icon { width: 38px; height: 38px; }
  .whatsapp-icon svg { width: 18px; height: 18px; }
  .header-cta .btn-whatsapp { display: none; }
}

/* ============================================================
   ADDITIONAL STYLES — NEW CLASS NAMES FROM UPDATED HTML
   ============================================================ */

/* --- btn-lg variant --- */
.btn-lg {
  padding: 16px 28px;
  font-size: 15px;
}
.btn-full { width: 100%; justify-content: center; }

/* --- Homepage Test Ride section (#testride) --- */
.testride-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.testride-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,158,11,0.18), transparent 70%);
  pointer-events: none;
}
.testride-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.testride-content .section-eyebrow.light,
.testride-content .section-title.light { color: #fff; }
.testride-content .section-eyebrow.light { color: var(--amber); }
.testride-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.7;
  margin: 20px 0 24px;
  max-width: 560px;
}
.testride-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  max-width: 540px;
}
.testride-features li {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 15px;
}
.testride-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- Testride card (slots preview) --- */
.testride-visual { position: relative; }
.testride-card {
  background: #fff;
  color: var(--navy);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.35);
  transform: rotate(-1.5deg);
  transition: transform 0.3s;
}
.testride-card:hover { transform: rotate(0deg) scale(1.02); }
.tr-card-head {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 20px;
}
.tr-icon {
  width: 48px; height: 48px;
  background: var(--amber);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.tr-icon svg { width: 22px; height: 22px; }
.tr-card-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
}
.tr-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-top: 2px;
}
.tr-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.tr-slot {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}
.tr-slot:hover {
  background: var(--amber);
  border-color: var(--amber);
}
.tr-day {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}
.tr-time {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-top: 4px;
  font-size: 14px;
}

/* --- Test Ride page: benefits row --- */
.tr-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(10, 37, 64, 0.08);
  padding: 14px 18px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.tr-benefit-icon {
  width: 36px; height: 36px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tr-benefit-icon svg { width: 18px; height: 18px; }
.tr-benefit-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.tr-benefit-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

/* --- Booking page section --- */
.booking {
  padding: 72px 0 96px;
  background: #f8fafc;
}
.booking-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
.booking-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px -10px rgba(16, 24, 40, 0.08);
}
.booking-form { display: flex; flex-direction: column; }

.form-step {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px 0 16px;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}
.form-step:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.step-num {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.form-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin: 0;
}

/* --- Model grid (radio cards) --- */
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 8px;
}
.model-option { position: relative; cursor: pointer; }
.model-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}
.model-card {
  padding: 16px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  text-align: left;
  transition: all 0.2s;
  height: 100%;
}
.model-option:hover .model-card {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.model-option input[type="radio"]:checked + .model-card {
  border-color: var(--navy);
  background: #f0f7ff;
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.12);
}
.model-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.model-card-type {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

/* --- Slot grid (radio pills) --- */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.slot-option { position: relative; cursor: pointer; }
.slot-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.slot-option > span {
  display: block;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  transition: all 0.2s;
}
.slot-option > span em {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.slot-option:hover > span {
  border-color: var(--blue);
}
.slot-option input[type="radio"]:checked + span {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.slot-option input[type="radio"]:checked + span em {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Checkbox field --- */
.check-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-top: 12px;
  cursor: pointer;
  color: var(--navy);
  font-size: 14px;
}
.check-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
}

/* --- Form submit block --- */
.form-submit {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}
.or-divider {
  text-align: center;
  margin: 14px 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
}
.or-divider::before, .or-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: #e2e8f0;
}
.or-divider::before { left: 0; }
.or-divider::after { right: 0; }
.form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 18px;
  line-height: 1.6;
}

/* --- Booking aside --- */
.booking-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 96px;
}
.aside-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2e8f0;
}
.aside-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 17px;
  margin: 0 0 14px;
}
.aside-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.aside-card-dark {
  background: var(--navy);
  border: 0;
  color: #fff;
}
.aside-card-dark h4 { color: #fff; }
.aside-card-dark p { color: rgba(255, 255, 255, 0.75); }
.aside-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.aside-steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.aside-steps li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.aside-steps li p {
  margin: 3px 0 0;
  font-size: 13px;
}
.aside-step-num {
  width: 26px; height: 26px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.aside-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 0;
}
.aside-phone:hover { color: var(--amber); }
.aside-phone svg { width: 18px; height: 18px; color: var(--amber); }
.aside-hours {
  font-size: 12px !important;
  color: var(--muted) !important;
  margin-top: 6px !important;
}

/* --- Form note under contact form --- */
.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* --- Active nav state --- */
.main-nav a.active {
  color: var(--navy);
  font-weight: 600;
}
.main-nav a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--amber);
  margin-top: 4px;
  border-radius: 2px;
}

/* --- Additional utility bar language styles --- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 14px;
}
.util-divider { color: rgba(255, 255, 255, 0.3); font-size: 11px; }

/* --- WhatsApp pulse animation --- */
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* --- Responsive adjustments for new blocks --- */
@media (max-width: 1024px) {
  .testride-inner { grid-template-columns: 1fr; gap: 48px; }
  .booking-inner { grid-template-columns: 1fr; gap: 32px; }
  .booking-aside { position: static; }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .tr-benefits { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 640px) {
  .testride-section { padding: 64px 0; }
  .booking { padding: 48px 0 64px; }
  .booking-form-wrap { padding: 24px 20px; }
  .testride-features { grid-template-columns: 1fr; }
  .model-grid { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: 1fr; }
  .tr-slots { grid-template-columns: repeat(2, 1fr); }
  .form-step h3 { font-size: 17px; }
  .testride-actions { flex-direction: column; }
  .testride-actions .btn { width: 100%; justify-content: center; }
}

/* ===== BIKE CARD IMAGE SUPPORT ===== */
.bike-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s ease;
}
.bike-card:hover .bike-visual img {
  transform: scale(1.05);
}

/* ===== LANGUAGE SWITCHER — Rwanda flag & KN button ===== */
.rw-flag {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

/* ===== BIKE CARD IMAGES ===== */
.bike-visual img { width:100%; height:100%; object-fit:contain; padding:16px; transition:transform .4s ease }
.bike-card:hover .bike-visual img { transform:scale(1.05) }

/* ===== BRANCH CARDS ===== */
.branch-cards { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:14px; margin:28px 0 32px }
.branch-card { background:var(--bg-soft); border:1px solid var(--line); border-radius:var(--radius-lg); padding:18px 20px; transition:all .25s ease }
.branch-card:hover { border-color:var(--amber); transform:translateY(-3px); box-shadow:var(--shadow) }
.branch-card.branch-hq { border-left:3px solid var(--amber); background:linear-gradient(135deg,rgba(245,158,11,.04),var(--bg-soft)) }
.branch-province { font-size:10px; font-weight:600; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); margin-bottom:4px }
.branch-card h4 { font-family:var(--font-display); font-size:16px; font-weight:700; color:var(--navy); margin-bottom:10px }
.branch-badge { background:var(--amber); color:var(--navy); font-size:9px; font-weight:700; padding:2px 8px; border-radius:100px; text-transform:uppercase; letter-spacing:.08em; vertical-align:2px; margin-left:4px }
.branch-contact { display:flex; align-items:center; gap:12px }
.branch-phone { font-size:13px; color:var(--ink-soft); text-decoration:none; transition:color .2s }
.branch-phone:hover { color:var(--navy) }
.branch-wa { display:flex; align-items:center; transition:transform .2s }
.branch-wa:hover { transform:scale(1.15) }

/* ===== SPARES SECTION ===== */
.spares-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:20px }
.spare-cat-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:28px; text-align:center; transition:all .3s ease }
.spare-cat-card:hover { border-color:var(--amber); transform:translateY(-4px); box-shadow:var(--shadow) }
.spare-icon { width:56px; height:56px; margin:0 auto 16px; background:rgba(245,158,11,.08); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; color:var(--amber); transition:all .3s }
.spare-cat-card:hover .spare-icon { background:var(--amber); color:#fff }
.spare-cat-card h4 { font-family:var(--font-display); font-size:15px; font-weight:700; color:var(--navy); margin-bottom:6px }
.spare-cat-card p { font-size:13px; color:var(--muted); line-height:1.55 }
.spares-branch-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:12px }
.spare-branch { display:flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:14px 18px; text-decoration:none; transition:all .25s; color:var(--ink-soft); font-size:13px }
.spare-branch:hover { border-color:#25d366; transform:translateY(-2px); box-shadow:0 4px 12px rgba(37,211,102,.12) }
.spare-branch strong { color:var(--navy); flex:1 }
.spare-branch span { color:var(--muted); font-size:12px }

/* ===== MOTORCYCLE SCROLLER ===== */
.moto-scroller-wrap { background:var(--navy); border-radius:var(--radius-lg); padding:48px 0 40px; margin-top:60px; overflow:hidden; position:relative }
.moto-scroller { display:flex; transition:transform .6s cubic-bezier(.4,0,.2,1) }
.moto-slide { min-width:100%; display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; padding:0 48px }
.moto-slide-img { display:flex; align-items:center; justify-content:center }
.moto-slide-img img { max-width:100%; max-height:280px; object-fit:contain; filter:drop-shadow(0 8px 24px rgba(0,0,0,.3)) }
.moto-slide-info { color:#fff }
.moto-slide-info h3 { font-family:var(--font-display); font-size:28px; font-weight:700; margin-bottom:10px }
.moto-slide-info p { font-size:14px; color:rgba(255,255,255,.6); line-height:1.6; margin-bottom:16px }
.moto-slide-specs { display:flex; gap:16px; margin-bottom:20px }
.moto-slide-specs span { background:rgba(255,255,255,.1); padding:6px 14px; border-radius:100px; font-size:12px; font-weight:600; color:var(--amber) }
.scroller-dots { display:flex; justify-content:center; gap:8px; margin-top:24px }
.scroller-dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.2); cursor:pointer; transition:all .3s }
.scroller-dot.active { background:var(--amber); width:28px; border-radius:5px }

@media(max-width:1024px) {
  .spares-grid { grid-template-columns:repeat(2,1fr) }
  .moto-slide { grid-template-columns:1fr; text-align:center; padding:0 28px }
  .moto-slide-specs { justify-content:center }
}
@media(max-width:768px) {
  .spares-grid { grid-template-columns:1fr }
  .branch-cards { grid-template-columns:1fr }
  .spares-branch-grid { grid-template-columns:1fr }
}

/* ===== HERO AUTO-SLIDER DOTS ===== */
.hero-dot { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.25); cursor:pointer; transition:all .3s ease }
.hero-dot.active { background:var(--amber); width:24px; border-radius:4px }

/* ===== BAJAJ LOGO ===== */
.bajaj-brand { display:flex; flex-direction:column; align-items:center; margin-left:16px; border-left:1px solid rgba(255,255,255,.15); padding-left:16px; gap:3px; }
.bajaj-logo { height:45px; width:125px;opacity:.95; transition:opacity .2s }
.bajaj-logo:hover { opacity:1 }
.bajaj-tagline { font-family:var(--font-body); font-size:9px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--blue); white-space:nowrap; opacity:.9; }
@media(max-width:768px) { .bajaj-brand { margin-left:8px; padding-left:8px; } .bajaj-logo { height:34px; } .bajaj-tagline { font-size:8px; } }

/* ===== SPARE BRANCH GRID: 4 + 3 layout, phone on next line ===== */
.spares-branch-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px }
.spare-branch { display:flex; flex-direction:column; align-items:center; text-align:center; gap:6px; background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:18px 14px; text-decoration:none; transition:all .25s; color:var(--ink-soft); font-size:13px }
.spare-branch:hover { border-color:#25d366; transform:translateY(-3px); box-shadow:0 4px 16px rgba(37,211,102,.12) }
.spare-branch strong { color:var(--navy); font-size:14px }
.spare-branch span { color:var(--muted); font-size:12px; display:block; margin:2px 0 6px }
.spare-branch svg { flex-shrink:0 }
@media(max-width:1024px) { .spares-branch-grid { grid-template-columns:repeat(3,1fr) } }
@media(max-width:600px) { .spares-branch-grid { grid-template-columns:repeat(2,1fr) } }
 
/* ===== FIX: Scroll offset for sticky header ===== */
html { scroll-behavior: smooth; }
section[id], div[id="home"], div[id="intro"] {
  scroll-margin-top: 100px;
}