:root {
  --navy: #0f172a;
  --sky: #38bdf8;
  --sky-deep: #0ea5e9;
  --mint: #25d366;
  --ink: #162033;
  --soft: #f8fafc;
  --line: #dbe4f0;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 40px;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.logo {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.9;
}

.logo span {
  color: var(--sky);
}

.logo-img {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-img img {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.logo-tagline {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-img:hover img {
  transform: scale(1.05);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.hero,
.district-hero {
  padding: 88px 20px;
}

.hero {
  background: linear-gradient(135deg, #0f172a 0%, #164e63 45%, #38bdf8 100%);
  color: var(--white);
}

.hero-inner,
.district-hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.district-hero h1 {
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero p,
.district-hero p {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 24px;
}

.btn,
.whatsapp-btn,
.book-button,
.back a {
  display: inline-block;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn {
  padding: 14px 28px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.btn:hover,
.whatsapp-btn:hover,
.book-button:hover,
.back a:hover,
.city-card:hover,
.service-button:hover {
  transform: translateY(-2px);
}

.city-section,
.booking,
.services,
.contact,
.pincode-section,
.district-services,
.cars-section {
  padding: 72px 20px;
}

.city-section,
.booking,
.contact,
.district-services {
  text-align: center;
}

.city-section h2,
.booking h2,
.services h2,
.contact h2,
.district-services h2,
.cars-section h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 14px;
  color: var(--navy);
}

.section-copy,
.contact-copy,
.service-status {
  max-width: 640px;
  margin: 0 auto;
  color: #475569;
}

.pincode-section {
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.pincode-shell {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.pincode-copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 14px;
}

.pincode-copy p {
  max-width: 560px;
  color: #475569;
}

.pincode-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.14);
  color: var(--sky-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pincode-samples {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pincode-samples span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.pincode-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(145deg, #0f172a, #164e63);
  box-shadow: var(--shadow);
}

.pincode-card label {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-weight: 700;
}

.pincode-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pincode-form input {
  flex: 1 1 180px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 15px;
}

.pincode-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.pincode-form input:focus {
  outline: none;
  border-color: var(--sky);
}

.pincode-btn {
  padding: 14px 20px;
  border: none;
  border-radius: 14px;
  background: var(--mint);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pincode-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.24);
}

.pincode-result {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.pincode-result.success {
  background: rgba(37, 211, 102, 0.18);
  color: #d1fae5;
}

.pincode-result.warning {
  background: rgba(251, 191, 36, 0.18);
  color: #fef3c7;
}

.pincode-result.error {
  background: rgba(248, 113, 113, 0.18);
  color: #fee2e2;
}

.city-container,
.card-container,
.car-grid,
.service-box {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.city-container,
.card-container,
.car-grid {
  margin-top: 28px;
}

.city-card {
  min-width: 260px;
  max-width: 320px;
  padding: 28px;
  border-radius: 24px;
  color: var(--white);
  box-shadow: var(--shadow);
  text-align: left;
}

.dhanbad-card {
  background: linear-gradient(145deg, #1d4ed8, #0f172a);
}

.bokaro-card {
  background: linear-gradient(145deg, #047857, #0f172a);
}

.city-label {
  display: block;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.city-meta {
  display: block;
  color: rgba(255, 255, 255, 0.86);
}

.booking {
  background: linear-gradient(135deg, #0f172a 0%, #164e63 48%, #38bdf8 100%);
  color: var(--white);
}

.booking-shell {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.booking-copy {
  text-align: left;
}

.booking-copy h2,
.booking-copy p,
.booking .eyebrow {
  color: var(--white);
}

.booking-copy p {
  max-width: 520px;
}

.support-box {
  margin-top: 22px;
  max-width: 520px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(10px);
  text-align: left;
}

.support-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  color: var(--white);
}

.support-box p {
  max-width: none;
  color: rgba(255, 255, 255, 0.88);
}

.support-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.support-whatsapp,
.support-call {
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
}

.support-call {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.support-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.22);
}

.booking-form {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 15px;
  background: var(--white);
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--sky-deep);
}

.map-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-btn {
  flex: 1 1 180px;
  padding: 14px 18px;
  border: none;
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.secondary-map-btn {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.distance-result {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.distance-result.success {
  background: rgba(37, 211, 102, 0.18);
  color: #d1fae5;
}

.distance-result.warning {
  background: rgba(251, 191, 36, 0.18);
  color: #fef3c7;
}

.distance-result.error {
  background: rgba(248, 113, 113, 0.18);
  color: #fee2e2;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-align: left;
}

.consent-check input {
  margin-top: 3px;
  accent-color: var(--mint);
}

.consent-check a {
  color: #d1fae5;
  text-decoration: underline;
}

.whatsapp-btn {
  padding: 14px 24px;
  background: var(--mint);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.24);
}

.booking-submit {
  width: 100%;
  text-align: center;
}

.cost-sharing-section {
  padding: 56px 20px;
  background: #f8fbff;
}

.cost-sharing-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, #0f172a, #164e63);
  color: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.cost-sharing-copy h2 {
  font-size: clamp(30px, 4vw, 40px);
  margin-bottom: 14px;
}

.cost-sharing-copy p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
}

.cost-eyebrow {
  margin-bottom: 16px;
}

.cost-sharing-note {
  margin-top: 16px;
  font-weight: 700;
  color: #d1fae5;
}

.why-choose-section {
  padding: 56px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #164e63 48%, #38bdf8 100%);
}

.why-choose-box {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.why-choose-box h2 {
  font-size: clamp(30px, 4vw, 40px);
  color: var(--white);
  margin-bottom: 14px;
}

.why-eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  margin-bottom: 16px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.why-card {
  padding: 24px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
}

.why-card h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.84);
}

.how-booking-section {
  padding: 56px 20px;
  background: #f8fbff;
}

.how-booking-box {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.how-booking-box h2 {
  font-size: clamp(30px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 14px;
}

.how-eyebrow {
  background: rgba(56, 189, 248, 0.14);
  color: var(--sky-deep);
  margin-bottom: 16px;
}

.how-booking-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.how-step-card {
  padding: 24px 20px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  text-align: left;
}

.step-number {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(145deg, #1d4ed8, #0f172a);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.how-step-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.how-step-card p {
  color: #475569;
}

.faq-section {
  padding: 56px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.faq-box {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.faq-box h2 {
  font-size: clamp(30px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 14px;
}

.faq-eyebrow {
  background: rgba(56, 189, 248, 0.14);
  color: var(--sky-deep);
  margin-bottom: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.faq-card {
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  text-align: left;
  overflow: hidden;
}

.faq-card summary {
  position: relative;
  padding: 24px 56px 24px 22px;
  font-size: 20px;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-card p {
  padding: 0 22px 24px;
  color: #475569;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef6ff;
  color: var(--sky-deep);
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-card[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--sky-deep);
  color: var(--white);
}

.faq-card[open] summary {
  padding-bottom: 14px;
}

.services {
  background: var(--white);
  color: var(--ink);
  text-align: center;
}

.services h2 {
  color: var(--navy);
}

.service-card-container {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.service-tile {
  width: 280px;
  min-height: 220px;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.service-tile h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: var(--white);
}

.service-tile p {
  color: rgba(255, 255, 255, 0.88);
}

.city-travel-card {
  background: linear-gradient(145deg, #1d4ed8, #0f172a);
}

.outstation-card {
  background: linear-gradient(145deg, #047857, #0f172a);
}

.events-card {
  background: linear-gradient(145deg, #0f172a, #7c3aed);
}

.driver-section {
  padding: 72px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #164e63 48%, #38bdf8 100%);
  color: var(--white);
}

.driver-preview-section {
  padding: 56px 20px;
  background: #f8fbff;
}

.driver-preview-box {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 28px;
  border-radius: 28px;
  background: linear-gradient(145deg, #0f172a, #164e63);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.driver-preview-box h2 {
  font-size: clamp(30px, 4vw, 40px);
  margin-bottom: 12px;
}

.driver-preview-box p {
  color: rgba(255, 255, 255, 0.86);
}

.preview-eyebrow {
  margin-bottom: 16px;
}

.driver-page-hero {
  min-height: auto;
}

.driver-form-section {
  padding: 56px 20px;
  background: #f8fbff;
}

.driver-form-shell {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.driver-form-copy {
  text-align: left;
}

.driver-form-copy h2 {
  font-size: clamp(30px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 14px;
}

.driver-form-copy p {
  color: #475569;
  max-width: 480px;
}

.form-eyebrow {
  background: rgba(56, 189, 248, 0.14);
  color: var(--sky-deep);
  margin-bottom: 16px;
}

.driver-form-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.driver-form-card input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 15px;
  background: var(--white);
}

.driver-form-card input:focus {
  outline: none;
  border-color: var(--sky-deep);
}

.dark-consent {
  background: #f8fbff;
  color: #334155;
}

.dark-consent a {
  color: var(--sky-deep);
}

.driver-form-result {
  padding: 14px 16px;
  border-radius: 14px;
  background: #eef6ff;
  color: #334155;
  font-size: 14px;
}

.driver-form-result.success {
  background: #dcfce7;
  color: #166534;
}

.driver-form-result.error {
  background: #fee2e2;
  color: #991b1b;
}

.driver-form-btn {
  width: 100%;
  text-align: center;
}

.driver-shell {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.driver-copy {
  text-align: left;
}

.driver-copy h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 14px;
  color: var(--white);
}

.driver-copy p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.88);
}

.driver-note {
  margin-top: 14px;
  font-size: 14px;
  color: #dbeafe;
}

.driver-join-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.driver-join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
}

.driver-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.driver-benefit-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.driver-benefit-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: var(--white);
}

.driver-benefit-card p {
  color: rgba(255, 255, 255, 0.84);
}

.compliance-section {
  padding: 56px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #164e63 48%, #38bdf8 100%);
}

.compliance-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(10px);
  text-align: center;
}

.compliance-box h2 {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--white);
  margin-bottom: 14px;
}

.compliance-box p {
  color: rgba(255, 255, 255, 0.86);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 18px;
}

.compliance-item {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.compliance-note {
  font-weight: 700;
  color: #d1fae5 !important;
}

.card,
.district-car-card {
  background: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card {
  width: 280px;
  padding: 28px;
}

.card h3,
.car-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: var(--navy);
}

.card p,
.car-content p {
  color: #475569;
}

.contact {
  background: linear-gradient(135deg, #0f172a 0%, #164e63 48%, #38bdf8 100%);
  color: var(--white);
}

.contact h2 {
  color: var(--white);
}

.contact-copy {
  color: rgba(255, 255, 255, 0.86);
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact-phone {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.2);
}

.contact-highlight {
  margin-top: 16px;
  color: #dbeafe;
  font-weight: 700;
}

.legal-note-section {
  padding: 32px 20px 56px;
  background: #fff8e8;
}

.compact-legal {
  padding-top: 0;
}

.legal-note-box {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid #f2d38b;
  border-radius: 20px;
  background: #fffdf7;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.legal-note-box h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 28px;
}

.legal-note-box p {
  margin-bottom: 10px;
  color: #5b4630;
}

.legal-page {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.legal-hero {
  padding: 84px 20px 52px;
  background: linear-gradient(135deg, #0f172a 0%, #164e63 48%, #38bdf8 100%);
  color: var(--white);
}

.legal-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 14px;
}

.legal-wrapper {
  max-width: 920px;
  margin: -24px auto 56px;
  padding: 0 20px;
}

.legal-card {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px 28px;
}

.legal-card + .legal-card {
  margin-top: 22px;
}

.legal-card h2 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 28px;
}

.legal-card p,
.legal-card li {
  color: #475569;
}

.legal-card ul {
  padding-left: 20px;
  margin-top: 10px;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-meta {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.legal-links {
  margin-top: 16px;
}

.legal-links a {
  color: #bfdbfe;
}

.footer {
  padding: 26px 20px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
}

.footer-note {
  max-width: 760px;
  margin: 0 auto 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer a {
  color: #93c5fd;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(145deg, #25d366, #16a34a);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(22, 163, 74, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(22, 163, 74, 0.4);
}

.floating-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.floating-whatsapp-text {
  font-size: 14px;
  line-height: 1;
}

.social-section {
  padding: 56px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #164e63 48%, #38bdf8 100%);
}

.social-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.social-box h2 {
  font-size: clamp(30px, 4vw, 40px);
  color: var(--white);
  margin-bottom: 14px;
}

.social-box p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 32px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.social-link:hover {
  transform: translateY(-3px);
}

.facebook-link {
  background: linear-gradient(145deg, #1877f2, #0c5ecf);
}

.facebook-link:hover {
  box-shadow: 0 14px 28px rgba(24, 119, 242, 0.4);
}

.instagram-link {
  background: linear-gradient(145deg, #e4405f, #c13584, #833ab4);
}

.instagram-link:hover {
  box-shadow: 0 14px 28px rgba(228, 64, 95, 0.4);
}

.social-link svg {
  width: 28px;
  height: 28px;
}

.district-page {
  min-height: 100vh;
}

.district-header {
  position: sticky;
  top: 0;
  z-index: 10;
}

.dhanbad-theme .district-hero {
  background: linear-gradient(135deg, #172554 0%, #1d4ed8 50%, #60a5fa 100%);
  color: var(--white);
}

.bokaro-theme .district-hero {
  background: linear-gradient(135deg, #052e2b 0%, #047857 50%, #34d399 100%);
  color: var(--white);
}

.dhanbad-theme .booking {
  background: linear-gradient(135deg, #172554 0%, #1d4ed8 50%, #60a5fa 100%);
}

.bokaro-theme .booking {
  background: linear-gradient(135deg, #052e2b 0%, #047857 50%, #34d399 100%);
}

.service-box {
  margin-top: 24px;
}

.service-button {
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  font-weight: 700;
}

.dhanbad-theme .service-button.active {
  background: #1d4ed8;
  color: var(--white);
}

.bokaro-theme .service-button.active {
  background: #047857;
  color: var(--white);
}

.service-status {
  margin-top: 18px;
  font-weight: 700;
}

.cars-section {
  background: #f8fafc;
}

.car-grid {
  align-items: stretch;
}

.district-car-card {
  width: min(100%, 320px);
}

.district-car-card img {
  height: 210px;
  object-fit: cover;
}

.car-content {
  padding: 22px;
}

.book-button {
  margin-top: 16px;
  padding: 12px 20px;
  color: var(--white);
}

.dhanbad-theme .book-button {
  background: #1d4ed8;
}

.bokaro-theme .book-button {
  background: #047857;
}

.dhanbad-theme .secondary-map-btn {
  border-color: rgba(191, 219, 254, 0.3);
}

.bokaro-theme .secondary-map-btn {
  border-color: rgba(209, 250, 229, 0.3);
}

.premium-card {
  border-width: 2px;
}

.dhanbad-theme .premium-card {
  border-color: rgba(29, 78, 216, 0.32);
}

.bokaro-theme .premium-card {
  border-color: rgba(4, 120, 87, 0.32);
}

.back {
  padding: 0 20px 50px;
  text-align: center;
}

.back a {
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
}

@media (max-width: 760px) {
  .header {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 14px 18px;
    gap: 14px;
    align-items: center;
  }

  .logo-img {
    flex-shrink: 0;
    gap: 10px;
    align-items: center;
  }

  .logo-img img {
    height: 42px;
  }

  .logo-tagline {
    font-size: 13px;
    white-space: nowrap;
    max-width: none;
  }

  .nav {
    flex: 1 1 100%;
    justify-content: center;
    gap: 14px;
    order: 2;
  }

  .nav a {
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s ease;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .hero,
  .district-hero,
  .city-section,
  .booking,
  .cost-sharing-section,
  .services,
  .driver-preview-section,
  .driver-section,
  .compliance-section,
  .contact,
  .faq-section,
  .pincode-section,
  .district-services,
  .cars-section {
    padding-top: 56px;
    padding-bottom: 56px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .booking-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pincode-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pincode-copy {
    text-align: center;
  }

  .pincode-copy h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .pincode-copy p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
  }

  .pincode-tag {
    margin-bottom: 12px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .pincode-samples {
    justify-content: center;
  }

  .pincode-samples span {
    padding: 8px 12px;
    font-size: 13px;
  }

  .driver-shell,
  .driver-form-shell,
  .driver-benefits,
  .compliance-grid,
  .why-choose-grid,
  .how-booking-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .booking-copy {
    text-align: center;
  }

  .booking-copy p {
    max-width: 100%;
    margin: 0 auto;
  }

  .driver-copy,
  .driver-form-copy {
    text-align: center;
  }

  .driver-copy p,
  .driver-form-copy p {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero h1,
  .district-hero h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .hero p,
  .district-hero p,
  .booking-copy p,
  .contact-copy,
  .section-copy,
  .pincode-copy p {
    font-size: 16px;
    line-height: 1.6;
  }

  .booking-form,
  .pincode-card,
  .legal-card {
    padding: 24px 20px;
  }

  .pincode-card {
    width: min(100%, 380px);
    max-width: 380px;
    margin: 0 auto;
    padding: 20px 18px;
    border-radius: 22px;
  }

  .pincode-card label {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .booking-form {
    width: 100%;
    max-width: 100%;
    gap: 14px;
    border-radius: 22px;
  }

  .booking-form input,
  .booking-form select {
    padding: 15px 16px;
    font-size: 16px;
    min-height: 48px;
  }

  .map-actions,
  .contact-actions,
  .pincode-form,
  .support-actions {
    flex-direction: column;
    gap: 12px;
  }

  .map-actions {
    gap: 12px;
  }

  .pincode-form {
    gap: 12px;
  }

  .map-btn,
  .contact-phone,
  .whatsapp-btn,
  .pincode-btn,
  .support-call,
  .support-whatsapp {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    font-size: 16px;
    min-height: 48px;
  }

  .pincode-form input,
  .pincode-btn {
    padding: 14px 16px;
    font-size: 16px;
  }

  .pincode-form input {
    flex: 0 1 auto;
    width: 100%;
    min-height: 48px;
  }

  .pincode-form input::placeholder {
    font-size: 14px;
  }

  .support-box {
    padding: 24px 20px;
    max-width: 100%;
    border-radius: 20px;
  }

  .support-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .support-box p {
    font-size: 16px;
    line-height: 1.6;
  }

  .map-btn {
    flex: 1 1 auto;
    padding: 15px 16px;
    font-size: 16px;
    min-height: 48px;
  }

  .distance-result {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .pincode-result {
    margin-top: 14px;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .city-card {
    min-width: 0;
    width: 100%;
    padding: 26px;
    border-radius: 20px;
  }

  .city-label {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .city-meta {
    font-size: 15px;
  }

  .city-card,
  .card,
  .district-car-card,
  .service-tile {
    width: 100%;
    max-width: 100%;
  }

  .service-tile,
  .district-car-card {
    min-height: auto;
  }

  .service-tile {
    padding: 26px;
    border-radius: 20px;
  }

  .service-tile h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .service-tile p {
    font-size: 16px;
    line-height: 1.6;
  }

  .district-car-card {
    border-radius: 20px;
  }

  .district-car-card img {
    height: 200px;
  }

  .car-content {
    padding: 24px;
  }

  .car-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .car-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .book-button {
    margin-top: 18px;
    padding: 14px 22px;
    font-size: 16px;
    min-height: 48px;
  }

  .back {
    padding: 0 18px 48px;
  }

  .back a {
    padding: 14px 24px;
    font-size: 16px;
    min-height: 48px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    gap: 10px;
    padding: 13px 16px;
    box-shadow: 0 18px 36px rgba(22, 163, 74, 0.4);
  }

  .floating-whatsapp-icon {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .floating-whatsapp-text {
    font-size: 14px;
  }

  .btn,
  .whatsapp-btn,
  .driver-join-btn {
    padding: 15px 28px;
    font-size: 16px;
    min-height: 48px;
  }

  .eyebrow,
  .pincode-tag,
  .support-label,
  .cost-eyebrow,
  .why-eyebrow,
  .how-eyebrow,
  .faq-eyebrow,
  .form-eyebrow,
  .preview-eyebrow {
    font-size: 12px;
    padding: 7px 14px;
  }

  .why-card,
  .how-step-card,
  .driver-benefit-card {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .why-card h3,
  .how-step-card h3,
  .driver-benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .why-card p,
  .how-step-card p,
  .driver-benefit-card p {
    font-size: 16px;
    line-height: 1.6;
  }

  .faq-card summary {
    padding: 22px 54px 22px 20px;
    font-size: 18px;
  }

  .faq-card p {
    padding: 0 20px 22px;
    font-size: 16px;
    line-height: 1.6;
  }

  .faq-card[open] summary {
    padding-bottom: 16px;
  }

  .compliance-item {
    padding: 18px 16px;
    font-size: 15px;
  }

  .legal-card {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .legal-card h2 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 16px;
    line-height: 1.6;
  }

  .legal-note-box {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .legal-note-box h2 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .legal-note-box p {
    font-size: 15px;
    line-height: 1.6;
  }

  .cost-sharing-box,
  .driver-preview-box,
  .compliance-box {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .driver-form-card {
    padding: 24px 20px;
    border-radius: 24px;
    gap: 16px;
  }

  .driver-form-card input {
    padding: 15px 16px;
    font-size: 16px;
    min-height: 48px;
  }

  .consent-check {
    padding: 16px 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  .dark-consent {
    padding: 16px 18px;
  }

  .social-link {
    padding: 16px 26px;
    font-size: 16px;
  }

  .social-link svg {
    width: 26px;
    height: 26px;
  }

  .footer {
    padding: 28px 20px;
  }

  .footer-note {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 12px 16px;
  }

  .logo-img img {
    height: 38px;
  }

  .logo-tagline {
    font-size: 12px;
  }

  .nav a {
    font-size: 14px;
    padding: 6px 10px;
  }

  .hero h1,
  .district-hero h1 {
    font-size: 28px;
  }

  .hero p,
  .district-hero p {
    font-size: 15px;
  }

  .btn,
  .whatsapp-btn,
  .driver-join-btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }

  .floating-whatsapp-icon {
    width: 30px;
    height: 30px;
  }

  .floating-whatsapp-text {
    font-size: 13px;
  }
}
