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

:root {
  --bg-primary: hsl(220, 20%, 97%); /* Premium Off-White */
  --bg-secondary: hsl(0, 0%, 100%); /* Pure White */
  --bg-tertiary: hsl(220, 16%, 94%); /* Light Gray */
  --accent-saffron: hsl(22, 100%, 52%); /* #FF6D00 Electric Saffron */
  --accent-saffron-glow: rgba(255, 109, 0, 0.08);
  --accent-teal: hsl(22, 100%, 45%); /* Secondary warm accent */
  --accent-teal-glow: rgba(255, 109, 0, 0.05);
  --accent-green: hsl(145, 80%, 40%); /* Eco Green for battery/success */
  --accent-green-glow: rgba(46, 204, 113, 0.08);
  --text-primary: hsl(222, 47%, 11%); /* Deep Slate for high contrast */
  --text-secondary: hsl(215, 25%, 27%); /* Medium Slate */
  --text-muted: hsl(215, 16%, 50%); /* Cool Gray */
  --border-color: rgba(15, 23, 42, 0.06);
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 15px 35px -5px rgba(255, 109, 0, 0.12), 0 5px 15px -5px rgba(0, 0, 0, 0.05);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(15, 23, 42, 0.05);
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 5% 15%, rgba(255, 109, 0, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 95% 75%, rgba(255, 109, 0, 0.02) 0%, transparent 45%);
  background-attachment: fixed;
}

/* Custom Selection */
::selection {
  background: var(--accent-saffron);
  color: #fff;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 2px solid var(--bg-primary);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-saffron);
}

/* Glassmorphism Navbar (Dynamic class added via JS) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  color: #fff; /* White initially on cover */
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.brand-logo-img {
  height: 38px;
  width: auto;
  border-radius: 8px;
  margin-right: 12px;
  vertical-align: middle;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 2px;
  transition: var(--transition-smooth);
}

header.scrolled .logo {
  color: var(--text-primary);
}

.logo-text {
  font-weight: 900;
}

.logo .char-bhar {
  color: var(--accent-saffron);
  text-shadow: 0 0 10px var(--accent-saffron-glow);
}

.logo .brand-bike {
  background: linear-gradient(135deg, #ffffff 50%, var(--accent-saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition-smooth);
}

header.scrolled .logo .brand-bike {
  background: linear-gradient(135deg, var(--text-primary) 50%, var(--accent-saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85); /* Light initially */
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

header.scrolled .nav-links a {
  color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-saffron) !important;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Zomato-Style Hero Cover Banner */
.hero-cover {
  position: relative;
  height: 520px;
  background: url('assets/hero_bg.png') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.52); /* Semi-transparent darken overlay */
  z-index: 1;
}

.hero-cover-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-cover h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 850;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  line-height: 1.2;
}

.hero-cover p.hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Zomato Search Bar Overlay styling */
.search-container {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.search-bar {
  display: flex;
  background: #ffffff;
  border-radius: 14px;
  padding: 8px 16px;
  align-items: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.search-location-wrapper {
  display: flex;
  align-items: center;
  width: 38%;
  gap: 8px;
  color: var(--accent-saffron);
}

.search-icon-pin {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.search-location-wrapper select {
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  background: transparent;
  width: 100%;
  cursor: pointer;
}

.search-divider {
  width: 1px;
  height: 24px;
  background: rgba(0, 0, 0, 0.12);
  margin: 0 16px;
  flex-shrink: 0;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  width: 58%;
  gap: 8px;
  color: var(--text-muted);
}

.search-icon-lens {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.search-input-wrapper input {
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-primary);
  width: 100%;
  background: transparent;
}

.search-input-wrapper input::placeholder {
  color: var(--text-muted);
}

/* Zomato-Style Feature Category Cards */
.category-section {
  padding: 4.5rem 0 3rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.category-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-saffron);
}

.category-image-box {
  height: 185px;
  position: relative;
  overflow: hidden;
  background: #eee;
}

/* Fallback card backgrounds using gradients */
.cimg-1 { background: linear-gradient(135deg, hsl(22, 100%, 65%), hsl(22, 100%, 48%)); }
.cimg-2 { background: linear-gradient(135deg, #1e293b, #334155); }
.cimg-3 { background: linear-gradient(135deg, hsl(145, 60%, 50%), hsl(145, 80%, 35%)); }

.category-image-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.category-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.category-info {
  padding: 1.5rem;
}

.category-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.category-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Popular Localities/Stations Grid */
.localities-section {
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
}

.localities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.locality-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
}

.locality-card:hover {
  border-color: var(--accent-saffron);
  box-shadow: 0 4px 15px rgba(255, 109, 0, 0.06);
  transform: translateY(-2px);
}

.locality-details h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 2px;
}

.locality-details span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.locality-arrow {
  color: var(--text-muted);
  font-weight: 900;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.locality-card:hover .locality-arrow {
  color: var(--accent-saffron);
  transform: translateX(4px);
}

/* Split Showcase Section */
.showcase-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border-color);
}

/* Device mockup elements remain unchanged */
.phone-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup-wrapper::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--accent-saffron-glow) 0%, transparent 70%);
  z-index: 1;
}

.phone-frame {
  width: 290px;
  height: 585px;
  background: #090a0f;
  border: 10px solid #1f2230;
  border-radius: 40px;
  position: relative;
  z-index: 2;
  box-shadow: 
    0 25px 50px -12px rgba(15, 23, 42, 0.15),
    0 0 30px rgba(255, 109, 0, 0.05);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 18px;
  background: #1f2230;
  border-radius: 0 0 15px 15px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #f8f9fa;
  position: relative;
}

.phone-status-bar {
  height: 25px;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  color: rgba(15, 23, 42, 0.6);
  font-weight: 600;
  z-index: 9;
  margin-top: 2px;
}

.status-icons {
  display: flex;
  gap: 4px;
}

.phone-map-view {
  flex: 1;
  position: relative;
  background: #eaf0f6;
  background-size: 40px 40px, 20px 20px, 20px 20px;
  overflow: hidden;
}

.user-dot-pulse {
  position: absolute;
  top: 140px;
  left: 110px;
  width: 14px;
  height: 14px;
  background: var(--accent-saffron);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(255, 109, 0, 0.4);
  animation: pulse-orange 2s infinite;
}

.bike-marker {
  position: absolute;
  width: 26px;
  height: 26px;
  background: var(--accent-saffron);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 109, 0, 0.3);
}

.bike-marker::after {
  content: '⚡';
  color: white;
  font-size: 0.6rem;
  transform: rotate(45deg);
}

.bm-1 { top: 80px; left: 190px; }
.bm-2 { top: 250px; left: 60px; }
.bm-3 { top: 170px; left: 210px; }

.hub-marker {
  position: absolute;
  top: 110px;
  left: 40px;
  width: 32px;
  height: 32px;
  background: rgba(46, 204, 113, 0.15);
  border: 1.5px solid var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-green 3s infinite;
}

.phone-widget-wallet {
  position: absolute;
  top: 35px;
  left: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.phone-bottom-panel {
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px 20px 0 0;
  padding: 14px;
  z-index: 8;
}

.bike-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.bike-details h4 {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.bike-details span {
  font-size: 0.6rem;
  color: var(--text-muted);
}

.battery-gauge {
  background: rgba(46, 204, 113, 0.1);
  color: var(--accent-green);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.unlock-slider {
  background: linear-gradient(90deg, var(--accent-saffron), hsl(22, 100%, 46%));
  border-radius: 12px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 109, 0, 0.2);
}

/* Feature Grid Cards */
.features-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border-color);
}

/* Workflow Timelines (4 Steps) */
.workflow-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border-color);
  background: linear-gradient(180deg, transparent, rgba(255, 109, 0, 0.01) 50%, transparent);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.workflow-step {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  z-index: 5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.workflow-step:hover {
  transform: translateY(-8px);
  border-color: var(--accent-saffron);
  box-shadow: var(--shadow-glow);
}

.step-num {
  width: 44px;
  height: 44px;
  background: rgba(255, 109, 0, 0.05);
  color: var(--accent-saffron);
  border: 1px solid rgba(255, 109, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  margin: 0 auto 1.5rem auto;
  font-size: 1.15rem;
  transition: var(--transition-smooth);
}

.workflow-step:hover .step-num {
  background: var(--accent-saffron);
  color: #fff;
  border-color: var(--accent-saffron);
}

.workflow-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.workflow-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Connective arrows for workflow (desktop only) */
@media (min-width: 1024px) {
  .workflow-step:not(:last-child)::after {
    content: '➔';
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: rgba(15, 23, 42, 0.1);
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 10;
  }
}

/* Subscription & Pricing Cards */
.pricing-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
}

.pricing-card.popular {
  border-color: var(--accent-saffron);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(180deg, var(--bg-secondary), rgba(255, 109, 0, 0.01));
}

/* Download App Section */
.download-section {
  margin: 6rem 0;
}

.download-card {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
}

.download-info h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 850;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.download-info p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.store-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #0f172a;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.store-btn:hover {
  transform: translateY(-3px);
  border-color: var(--accent-saffron);
  box-shadow: 0 5px 15px var(--accent-saffron-glow);
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-btn-text span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-btn-text strong {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans);
}

/* Mini Phone Visual Mockup for QR */
.download-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mini-phone-frame {
  width: 250px;
  height: 380px;
  background: #0d0e15;
  border: 8px solid #1f2230;
  border-radius: 32px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  overflow: hidden;
}

.mini-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 12px;
  background: #1f2230;
  border-radius: 0 0 10px 10px;
  z-index: 10;
}

.mini-phone-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.scan-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
}

.qr-code-box {
  background: #fff;
  padding: 12px;
  border-radius: 16px;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  color: #1f2230;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Interactive Accordion FAQ styling */
.faq-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border-color);
}

.faq-container {
  max-width: 850px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.accordion-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-item:hover {
  border-color: var(--accent-saffron);
  box-shadow: 0 4px 15px rgba(255, 109, 0, 0.04);
}

.accordion-header {
  padding: 1.25rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background: var(--bg-secondary);
  transition: var(--transition-smooth);
}

.accordion-header h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 600;
}

.accordion-icon {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--accent-saffron);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff;
}

.accordion-content-inner {
  padding: 0 1.75rem 1.5rem 1.75rem;
  border-top: 1px solid transparent;
}

.accordion-item.active .accordion-content-inner {
  border-top-color: rgba(15, 23, 42, 0.03);
}

.accordion-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

/* App Data / Corporate Info Card Layout */
.corporate-note {
  margin: 6rem 0;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
}

/* Legal Pages & Main Policy Details */
main.container {
  margin-top: 9rem;
  margin-bottom: 6rem;
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 4.5rem 4rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-saffron), var(--accent-saffron));
  border-radius: 0 0 4px 0;
}

h1 {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary) 60%, var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.policy-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--accent-saffron);
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.5px;
}

p, li {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.7;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 2rem;
}

li {
  margin-bottom: 0.85rem;
  padding-left: 0.35rem;
}

/* Contact Info Highlight Box */
.info-box {
  background: var(--bg-tertiary);
  border-left: 4px solid var(--accent-saffron);
  border-radius: 0 16px 16px 0;
  padding: 2rem;
  margin: 3rem 0;
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.02);
}

.info-box p {
  margin-bottom: 0.85rem;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.info-box strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Modern Footer */
footer {
  background-color: var(--bg-tertiary);
  border-top: 1px solid var(--border-color);
  padding: 6rem 2rem 4rem 2rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  font-weight: 850;
}

.footer-brand h3 span.char-bhar {
  color: var(--accent-saffron);
}

.footer-brand h3 span.brand-bike {
  background: linear-gradient(135deg, var(--text-primary) 50%, var(--accent-saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 380px;
  line-height: 1.6;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.25px;
}

.footer-links ul {
  list-style: none;
  margin-left: 0;
}

.footer-links li {
  margin-bottom: 0.95rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent-saffron);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.legal-notice {
  font-size: 0.8rem !important;
  color: var(--text-muted);
  margin-top: 0.35rem;
  opacity: 0.75;
}

/* Responsive Overrides */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .download-card {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
    text-align: center;
  }
  .store-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem 1rem;
  }
  
  .nav-links {
    margin-left: 0;
    gap: 1.5rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .localities-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .search-bar {
    flex-direction: column;
    padding: 12px;
    gap: 10px;
  }
  
  .search-location-wrapper, .search-input-wrapper {
    width: 100%;
  }
  
  .search-divider {
    display: none;
  }

  .card {
    padding: 3rem 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .corporate-note {
    padding: 2.5rem 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Core Button Styles */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background-color: var(--accent-saffron);
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  cursor: pointer;
  box-shadow: 0 4px 15px var(--accent-saffron-glow);
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 109, 0, 0.25);
  background-color: hsl(22, 100%, 48%);
  color: #ffffff !important;
}

.btn-secondary {
  background-color: transparent;
  border: 1.5px solid var(--accent-saffron);
  color: var(--accent-saffron);
  box-shadow: none;
}

.btn-secondary:hover {
  background-color: var(--accent-saffron-glow);
  color: var(--accent-saffron);
  border-color: var(--accent-saffron);
}

/* Pricing Card Typography and Elements */
.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-saffron);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-weight: 500;
}

.pricing-features {
  list-style: none !important;
  margin: 0 0 2rem 0 !important;
  padding: 0 !important;
  flex: 1;
}

.pricing-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 0 !important;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: bold;
}
