/* =============================================
   Priyadarshini Tours and Cargo — PRODUCTION CSS
   ============================================= */

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

:root {
  --black: #0a0a0a;
  --off-black: #111;
  --charcoal: #1e1e1e;
  --dark: #252525;
  --mid: #3a3a3a;
  --muted: #888;
  --light: #f0ede6;
  --white: #ffffff;
  --amber: #f5a623;
  --amber-dark: #d4891a;
  --amber-light: #ffc85c;
  --red: #e74c3c;
  --green: #27ae60;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* API / route messages — never use blocking alert() for automatic lookups */
.api-toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: min(92vw, 440px);
  padding: 0.85rem 1.15rem;
  background: #161616;
  border: 1px solid rgba(245, 166, 35, 0.45);
  border-radius: var(--radius);
  color: var(--light);
  font-size: 0.88rem;
  line-height: 1.45;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.api-toast.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 10001;
}

.floating-action {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.24);
  opacity: 0.95;
}

.floating-action span {
  font-size: 1.35rem;
  line-height: 1;
}

.floating-action-phone {
  background: var(--amber);
  color: var(--black);
}

.floating-action-whatsapp {
  background: #25d366;
}

@media (max-width: 640px) {
  .floating-actions {
    right: 0.9rem;
    bottom: 1rem;
  }
  .floating-action {
    width: 48px;
    height: 48px;
  }
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 { font-family: var(--font-display); letter-spacing: 0.02em; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 2.5rem;
  line-height: 1;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--black);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.full-width { width: 100%; }

/* ========== NAVBAR ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,166,35,0.15);
  transition: all 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.logo span { color: var(--amber); }
.logo-rotator {
  font: inherit;
  --rotator-line: 1em;
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  height: 1em;
  overflow: hidden;
  padding: 0 0.55rem;
  padding-top: 2px;
  padding-left: -7px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(180deg, rgba(245,166,35,0.14), rgba(245,166,35,0.05));
  box-shadow:
    0 0 0 1px rgba(245,166,35,0.28),
    0 0 24px rgba(245,166,35,0.16);
  box-sizing: border-box;
  width: max-content;
  max-width: 100%;
  flex-shrink: 0;
}
.logo-rotator-track {
  display: flex;
  flex-direction: column;
  animation: logoWordLoop 6.6s infinite;
  width: max-content;
  will-change: transform;
}
.logo-rotator-track > span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 1em;
  line-height: 1;
  font: inherit;
  color: var(--amber);
  text-shadow: 0 0 12px rgba(245,166,35,0.32);
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.nav-links a:hover { color: var(--amber); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 1rem;
}
.mobile-menu a {
  color: var(--light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu.open { display: flex; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 100px 2rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-stripe {
  position: absolute;
  width: 3px;
  top: 0; bottom: 0;
  opacity: 0.04;
}
.s1 { left: 25%; background: var(--amber); }
.s2 { left: 50%; background: var(--white); }
.s3 { left: 75%; background: var(--amber); }
.road-lines {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 60px, rgba(255,255,255,0.03) 60px, rgba(255,255,255,0.03) 120px);
}
.hero-content { max-width: 680px; animation: fadeUp 0.8s ease both; }
.hero-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--amber);
  border: 1px solid rgba(245,166,35,0.3);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber);
  line-height: 1;
}
.stat span:last-child {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s 0.3s ease both;
}
.truck-anim {
  font-size: 12rem;
  animation: truckFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(245,166,35,0.3));
}

/* ========== SERVICES ========== */
.services {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}
.service-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: clamp(1rem, 2.5vw, 1.75rem);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.service-card-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  margin-bottom: 0.5rem;
  padding-right: 0.2rem;
}
.service-card-body::-webkit-scrollbar {
  width: 6px;
}
.service-card-body::-webkit-scrollbar-thumb {
  background: rgba(245,166,35,0.28);
  border-radius: 999px;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.passenger-card::before { background: var(--amber); }
.cargo-card::before { background: var(--amber-light); }
.pakker-card::before { background: linear-gradient(90deg, var(--amber), #c4932a); }
.other-services-card::before { background: linear-gradient(90deg, #5cb87a, var(--amber-dark)); }
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.service-icon {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.35rem;
  flex-shrink: 0;
  line-height: 1;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  color: var(--white);
  margin-bottom: 0.45rem;
  flex-shrink: 0;
  line-height: 1.05;
}
.service-card p {
  color: var(--muted);
  margin-bottom: 0.65rem;
  font-size: clamp(0.78rem, 1.35vw, 0.9rem);
  line-height: 1.45;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0;
}
.service-features li {
  font-size: clamp(0.72rem, 1.25vw, 0.85rem);
  color: var(--light);
  font-family: var(--font-mono);
  line-height: 1.35;
}
.service-pricing {
  margin-top: auto;
  flex-shrink: 0;
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 0.65rem;
}
.service-pricing strong { color: var(--amber); font-size: clamp(1rem, 1.85vw, 1.2rem); }

/* ========== SERVICE DETAILS (same shell as former price calculator) ========== */
.calculator-section {
  padding: 6rem 2rem;
  background: var(--off-black);
}
.service-details-intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}
.calc-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: visible;
}

/* Desktop: make IN DETAIL form wider */
@media (min-width: 1024px) {
  .service-details-intro {
    max-width: 980px;
  }
  .calc-wrapper {
    max-width: 1040px;
  }
}
.calc-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.calc-tabs-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.calc-tabs-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.calc-tab {
  padding: 1.1rem;
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
}
.calc-tab.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
  background: rgba(245,166,35,0.05);
}
.calc-form {
  padding: 2rem;
}
.service-detail-panel .detail-lead {
  font-size: 1rem;
  color: var(--light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.25rem 0 1.5rem;
}
.detail-subhead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--amber-light);
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}
.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.detail-list li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  padding-left: 1rem;
  position: relative;
}
.detail-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: bold;
}
.detail-note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 1rem 0 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  border-left: 3px solid rgba(245,166,35,0.4);
}
.service-detail-panel .btn {
  margin-top: 0.25rem;
}

.hidden { display: none !important; }

/* ========== FORMS ========== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.place-field-wrap {
  position: relative;
  z-index: 1;
}
.place-field-wrap:focus-within {
  z-index: 20;
}
.places-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  margin: 0;
  padding: 6px 0;
  list-style: none;
  max-height: 260px;
  overflow-y: auto;
  background: #141414;
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  z-index: 50;
}
.places-dropdown li {
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s ease;
}
.places-dropdown li:last-child {
  border-bottom: none;
}
.places-dropdown li:not(.places-empty):hover {
  background: rgba(245,166,35,0.12);
}
.places-item-label {
  display: block;
  font-weight: 600;
  color: var(--white);
  font-size: 0.92rem;
}
.places-item-detail {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.35;
}
.places-empty {
  cursor: default;
  color: var(--muted);
  font-size: 0.85rem;
}
.places-empty:hover {
  background: transparent;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.req { color: var(--amber); }
input, select, textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.distance-input-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}
.distance-input-wrap input {
  flex: 1;
}
.distance-auto-hint {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  vertical-align: middle;
}
.distance-auto-field {
  cursor: default;
  pointer-events: none;
  background: rgba(255,255,255,0.03);
  border-style: dashed;
  color: rgba(255,255,255,0.92);
  -moz-appearance: textfield;
}
.distance-auto-field::-webkit-outer-spin-button,
.distance-auto-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.distance-auto-field.distance-loading {
  opacity: 0.75;
  border-color: rgba(245,166,35,0.35);
}
.distance-auto-field::placeholder {
  color: rgba(255,255,255,0.38);
  font-size: 0.88rem;
}
.distance-auto-btn {
  border: 1px solid rgba(245,166,35,0.5);
  background: rgba(245,166,35,0.12);
  color: var(--amber-light);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.distance-auto-btn:hover {
  border-color: var(--amber);
  background: rgba(245,166,35,0.2);
  color: var(--white);
}
.distance-auto-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}
input:focus, textarea:focus {
  border-color: var(--amber);
  background: rgba(245,166,35,0.05);
}
select:focus {
  border-color: var(--amber);
  background-color: rgba(245,166,35,0.05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f5a623' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
select {
  appearance: none;
  color-scheme: dark;
  background-color: rgba(255, 255, 255, 0.04);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c4c4c4' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  color: var(--white);
}
select option,
select optgroup {
  background-color: var(--charcoal);
  color: var(--white);
}
select option:checked,
select option:hover {
  background-color: var(--dark);
  color: var(--white);
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.2); }
textarea { resize: vertical; min-height: 80px; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.5); }

/* ========== BOOKING ========== */
.booking-section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.booking-intro {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}
.booking-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.booking-form {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.conditional-fields { display: flex; flex-direction: column; gap: 1rem; }
.other-services-hint {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 0.35rem;
}

/* IN DETAIL: smooth swap between trip route and other-services form */
.service-detail-panels {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-extra-panels {
  margin-top: 0.75rem;
}
.service-detail-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-detail-panel.is-active {
  grid-template-rows: 1fr;
}
.service-detail-panel-measure {
  min-height: 0;
  overflow: hidden;
}
.service-detail-panel:not(.is-active) .service-detail-panel-measure {
  pointer-events: none;
}
.service-detail-panel .service-detail-panel-measure > * {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-detail-panel.is-active .service-detail-panel-measure > * {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}
.service-detail-panel:not(.is-active) .service-detail-panel-measure > * {
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .service-detail-panel,
  .service-detail-panel .service-detail-panel-measure > * {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}
.live-price {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.live-price-label {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.live-price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber);
}

/* ========== PAYMENT ========== */
.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.payment-option input { display: none; }
.payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 1rem;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  position: relative;
}
.payment-option input:checked + .payment-card {
  border-color: var(--amber);
  color: var(--white);
  background: rgba(245,166,35,0.08);
}
.pay-icon { font-size: 1.5rem; }
.pay-badge {
  position: absolute;
  top: -10px;
  right: -6px;
  background: var(--amber);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  letter-spacing: 0.05em;
}
.payment-detail-section { margin-top: 0.5rem; }
.upi-qr-area { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.qr-placeholder { text-align: center; }
.qr-mock {
  width: 140px; height: 140px;
  border: 2px solid rgba(245,166,35,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
  background: rgba(245,166,35,0.05);
  position: relative;
}
.qr-mock::before, .qr-mock::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border: 3px solid var(--amber);
}
.qr-mock::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.qr-mock::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.qr-inner { font-size: 3rem; }
.upi-id { font-family: var(--font-mono); font-size: 0.85rem; color: var(--muted); }
.cod-info-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.cod-info-box span { font-size: 1.5rem; flex-shrink: 0; }
.submit-btn { margin-top: 0.5rem; font-size: 1rem; padding: 18px; }
.secure-note { text-align: center; font-size: 0.75rem; color: var(--muted); font-family: var(--font-mono); margin-top: 0.25rem; }

/* ========== SPINNER ========== */
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ========== HOW IT WORKS ========== */
.how-section {
  padding: 6rem 2rem;
  background: var(--off-black);
  text-align: center;
}
.how-section .section-label, .how-section .section-title { text-align: center; margin-left: auto; margin-right: auto; }
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 160px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.85rem; color: var(--muted); }
.step-arrow {
  font-size: 1.5rem;
  color: rgba(245,166,35,0.4);
  flex-shrink: 0;
}

/* ========== CONTACT ========== */
.contact-section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; color: var(--white); margin-bottom: 4px; }
.contact-item p { color: var(--muted); font-size: 0.95rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea { margin: 0; }

/* ========== FOOTER ========== */
.footer {
  background: var(--off-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 0.75rem; max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links h5 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  font-family: var(--font-mono);
  max-width: 1280px;
  margin: 0 auto;
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}
.modal {
  background: var(--charcoal);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 460px;
  width: 90%;
  animation: scaleIn 0.3s ease;
}
.modal-icon { font-size: 4rem; margin-bottom: 1rem; }
.modal h3 { font-family: var(--font-display); font-size: 2.5rem; color: var(--white); margin-bottom: 1rem; }
.modal p { color: var(--muted); margin-bottom: 1.5rem; }
.modal-booking-id {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--amber);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes truckFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-16px) rotate(3deg); }
}
@keyframes logoWordLoop {
  0%, 26% { transform: translateY(0); }
  33%, 59% { transform: translateY(calc(-1 * var(--rotator-line))); }
  66%, 92% { transform: translateY(calc(-2 * var(--rotator-line))); }
  100% { transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    aspect-ratio: 1 / 1;
    max-width: min(100%, 420px);
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 90px 1.5rem 3rem; }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .payment-options { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .booking-form { padding: 1.5rem; }
  .services, .calculator-section, .booking-section, .contact-section, .how-section { padding: 4rem 1.5rem; }
  .calc-tabs-three,
  .calc-tabs-four { grid-template-columns: 1fr; }
  .calc-tab { font-size: 0.88rem; padding: 1rem 0.6rem; }
  .detail-columns { grid-template-columns: 1fr; }
  .logo {
    max-width: calc(100vw - 90px);
  }
}

@media (max-width: 560px) {
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .stat-divider { display: none; }
}
