/* ==========================================================================
   Sameer Motors — Hero MotoCorp Modern Automotive Showroom
   Theme: Crisp Platinum White & Electric Sapphire Blue
   ========================================================================== */

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

:root {
  /* Color Palette — Platinum & Sapphire Showroom */
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f5f9;
  --bg-dark: #090e1a;
  --bg-dark-card: #111827;
  
  --primary: #0284c7;             /* Electric Sapphire Blue */
  --primary-hover: #0369a1;       /* Deep Sapphire */
  --primary-light: #e0f2fe;       /* Ice Blue tint */
  --primary-glow: rgba(2, 132, 199, 0.28);
  
  --hero-red: #e11b22;            /* Official Hero Brand Red */
  --accent-cyan: #06b6d4;         /* Electric Cyan */
  --accent-gold: #f59e0b;         /* Amber Gold */
  --accent-green: #10b981;        /* WhatsApp / Success Green */
  
  --text-main: #0f172a;           /* Deep Slate Navy */
  --text-muted: #64748b;          /* Refined Slate */
  --text-light: #94a3b8;          /* Light Slate */
  --text-white: #ffffff;
  
  --border-color: #e2e8f0;
  --border-subtle: #edf2f7;
  --border-focus: #38bdf8;
  
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-card: 0 10px 25px -4px rgba(15, 23, 42, 0.07), 0 4px 10px -2px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 20px 35px -6px rgba(2, 132, 199, 0.16), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  --shadow-blue: 0 6px 20px rgba(2, 132, 199, 0.32);
  --shadow-gold: 0 6px 20px rgba(245, 158, 11, 0.25);
  
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Containers */
.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

.section {
  padding: 85px 0;
  position: relative;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }

/* Section Header Styles */
.section-header {
  margin-bottom: 48px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #0369a1 100%);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0284c7 0%, #025381 100%);
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.45);
  color: #ffffff;
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #ffffff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1ea952;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
  background: #0f172a;
  color: #94a3b8;
  padding: 8px 0;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(225, 27, 34, 0.2);
  color: #ff6b6b;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-links a {
  color: #cbd5e1;
}

.top-bar-links a:hover {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.site-header .container {
  width: 95%;
  max-width: 1380px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 12px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.hero-brand-symbol {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--hero-red) 0%, #b91c1c 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(225, 27, 34, 0.35);
  letter-spacing: -1px;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-main-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-sub-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-container {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  padding: 6px 9px;
  border-radius: var(--radius-sm);
  position: relative;
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  line-height: 1.2;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--primary);
  background: #f1f5f9;
}

.nav-link.active {
  color: var(--primary);
  font-weight: 700;
  background: rgba(2, 132, 199, 0.08);
}

.nav-mobile-actions {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-action-btn {
  padding: 7px 13px;
  font-size: 0.83rem;
  font-weight: 700;
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-toggle {
  display: none;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-main);
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.hamburger-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: #1e293b;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.mobile-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.w-full {
  width: 100%;
}

/* ==========================================================================
   Hero Interactive Showcase Section
   ========================================================================== */
.hero-showcase {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef6fc 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.hero-showcase::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.hero-dealership-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title-main {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--text-main);
}

.hero-lead-desc {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Trust Stats Bar in Hero */
.hero-trust-badges {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
}

.trust-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Interactive Spotlight Card on Right */
.hero-vehicle-stage {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.stage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.stage-badge {
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.stage-spotlight-box {
  position: relative;
  height: 320px;
  background: radial-gradient(circle at center, rgba(2, 132, 199, 0.08) 0%, rgba(241, 245, 249, 0.9) 70%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.stage-spotlight-box img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(15, 23, 42, 0.2));
  transition: transform 0.4s ease;
}

.stage-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.stage-model-title {
  font-size: 1.35rem;
  font-weight: 800;
}

.stage-model-specs {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stage-price-tag {
  text-align: right;
}

.stage-price-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

/* Model Switcher Buttons */
.stage-switcher-tabs {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.switcher-tab-btn {
  flex: 1;
  min-width: 100px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.switcher-tab-btn:hover, .switcher-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25);
}

/* ==========================================================================
   Interactive Vehicle Showcase with Filter Chips
   ========================================================================== */
.filter-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 35px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.filter-chips-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.filter-chip:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.filter-chip.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.search-input-box {
  position: relative;
  min-width: 240px;
}

.search-input-box input {
  width: 100%;
  padding: 9px 14px 9px 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--bg-subtle);
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.search-input-box input:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.search-icon-symbol {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==========================================================================
   Vehicle Card Grid
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.vehicle-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  position: relative;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  border-color: #bae6fd;
  box-shadow: var(--shadow-hover);
}

.card-img-wrap {
  position: relative;
  height: 230px;
  background: radial-gradient(circle at center, #ffffff 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

.card-img-wrap img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.12));
  transition: var(--transition);
}

.vehicle-card:hover .card-img-wrap img {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 14px 22px rgba(2, 132, 199, 0.22));
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: var(--shadow-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-main);
}

.card-tagline {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
}

.card-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: var(--bg-subtle);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  text-align: center;
}

.spec-mini-item {
  display: flex;
  flex-direction: column;
}

.spec-mini-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.spec-mini-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.card-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

.card-actions-group {
  display: flex;
  gap: 6px;
}

/* ==========================================================================
   Hero Smart Technology Showcase Section
   ========================================================================== */
.tech-section {
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.tech-card {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: var(--transition);
  position: relative;
}

.tech-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
  background: #ffffff;
}

.tech-icon-circle {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.tech-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.tech-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Live Instant EMI Calculator Box
   ========================================================================== */
.emi-calculator-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  padding: 36px;
  margin-top: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-main);
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.range-slider {
  width: 100%;
  height: 7px;
  background: var(--border-color);
  border-radius: 5px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  margin-top: 8px;
}

.range-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(2, 132, 199, 0.5);
  border: 2px solid #ffffff;
}

.emi-display {
  background: linear-gradient(145deg, #090e1a 0%, #172554 100%);
  border-radius: var(--radius-md);
  padding: 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.emi-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #38bdf8;
  margin: 12px 0 20px;
}

/* ==========================================================================
   Form Cards & Modals
   ========================================================================== */
.form-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 600;
}

.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* ==========================================================================
   Floating Action Bar & Dock
   ========================================================================== */
.floating-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
  text-decoration: none;
  transition: var(--transition);
}

.floating-pill-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.floating-pill-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.floating-pill-testride {
  background: var(--primary);
  color: #ffffff;
}

.floating-pill-testride:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.45);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #090e1a;
  color: #cbd5e1;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #38bdf8;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 15px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1280px) {
  .nav-link {
    padding: 6px 7px;
    font-size: 0.81rem;
  }
  .nav-menu {
    gap: 1px;
  }
  .header-action-btn {
    padding: 6px 11px;
    font-size: 0.80rem;
  }
  .brand-main-title {
    font-size: 1.15rem;
  }
  .brand-sub-tag {
    font-size: 0.62rem;
  }
}

@media (max-width: 1140px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 20px 30px rgba(15, 23, 42, 0.12);
    gap: 16px;
    margin: 0;
    z-index: 999;
  }
  
  .nav-container.show {
    display: flex;
  }
  
  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 6px;
    align-items: stretch;
  }
  
  .nav-link {
    padding: 12px 16px;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    width: 100%;
  }
  
  .nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
  }
  
  .header-actions .header-action-btn {
    display: none;
  }

  .hero-grid-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .emi-calculator-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-dock {
    bottom: 16px;
    right: 16px;
  }
  
  .floating-pill-btn {
    padding: 10px 16px;
    font-size: 0.82rem;
  }
}
