/* ===================================================================
   DRIVER ZONE - Professional Car Driver Hire Service (Siliguri)
   Modern, Mobile-First Stylesheet & Design System
   Razorpay Merchant Compliance & Responsive UI System
=================================================================== */

:root {
  /* Brand Color Palette */
  --primary: #16a34a;          /* Rich forest/emerald green */
  --primary-hover: #15803d;    /* Deep green for hovers */
  --primary-dark: #0f5132;     /* Dark accent green */
  --primary-light: #dcfce7;    /* Soft mint background */
  --primary-subtle: #f0fdf4;   /* Very light mint tint */
  
  --secondary: #0f172a;        /* Deep navy/slate for dark headers */
  --secondary-light: #1e293b;  /* Slate dark */
  --secondary-subtle: #334155; /* Slate muted */
  
  --accent-amber: #d97706;     /* Warning/Trust badge gold */
  --accent-amber-light: #fef3c7;
  
  --bg-page: #f8fafc;          /* Clean off-white app background */
  --bg-card: #ffffff;          /* Pure white card backgrounds */
  --bg-alt: #f1f5f9;           /* Light slate alternate sections */
  
  --text-main: #0f172a;        /* High contrast primary text */
  --text-muted: #475569;       /* Secondary body copy */
  --text-subtle: #64748b;      /* Footnotes, small labels */
  --text-white: #ffffff;
  
  --border-light: #e2e8f0;     /* Clean border */
  --border-subtle: #cbd5e1;
  
  /* Elevation Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);

  /* Layout & Geometry */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --container-max: 1200px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: var(--primary-hover);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--secondary);
  line-height: 1.25;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Container Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

.container-narrow {
  max-width: 900px;
}

/* ===================================================================
   TOP NOTIFICATION & ANNOUNCEMENT BAR
=================================================================== */
.top-bar {
  background-color: var(--secondary);
  color: #cbd5e1;
  font-size: 0.815rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-info, .top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar a:hover {
  color: #86efac;
}

.top-badge {
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================================================================
   RESPONSIVE STICKY NAVBAR WITH BRAND LOGO
=================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Brand Logo (Using assets/logo.svg) */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
  transition: transform var(--transition-fast);
}

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

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--secondary-light);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  position: relative;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 2px;
}

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

/* Desktop CTA */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta {
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.25);
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Hamburger Toggle Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: background-color var(--transition-fast);
}

.nav-toggle:hover {
  background: #e2e8f0;
}

.nav-toggle .bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--secondary);
  border-radius: 2px;
  transition: all var(--transition-normal);
  transform-origin: center;
}

/* Hamburger Transforming into ✕ (Active State) */
.nav-toggle.is-active .bar-1 {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .bar-2 {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active .bar-3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================================================
   BUTTONS & BADGES
=================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
}

.btn-lg {
  padding: 0.9rem 1.9rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.28);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: var(--secondary-light);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-subtle);
  color: var(--secondary);
}

.btn-outline:hover {
  background-color: var(--bg-alt);
  border-color: var(--secondary);
}

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

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

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

.btn-whatsapp:hover {
  background-color: #1ebc57;
  color: #ffffff;
}

.btn-full {
  width: 100%;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.badge-amber {
  background-color: var(--accent-amber-light);
  color: #92400e;
}

.badge-dark {
  background-color: var(--secondary);
  color: #ffffff;
}

.badge-outline {
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

/* ===================================================================
   HERO SECTION & FULLY RESPONSIVE ENQUIRY BOX
=================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 70%, #064e3b 100%);
  color: #ffffff;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-text-block {
  min-width: 0;
}

.hero-subtitle-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(22, 163, 74, 0.2);
  border: 1px solid rgba(22, 163, 74, 0.4);
  color: #86efac;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  color: #ffffff;
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: #4ade80;
}

.hero-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.75rem;
}

.stat-item h3 {
  font-size: 1.75rem;
  color: #ffffff;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-item h3 span {
  color: var(--primary);
}

.stat-item p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================================================================
   ENQUIRY BOX / BOOKING CARD (100% MOBILE RESPONSIVE SYSTEM)
=================================================================== */
.hero-booking-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--text-main);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-booking-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  color: var(--secondary);
}

.hero-booking-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.booking-form-mini {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
  min-width: 0; /* Prevents input blowout in CSS grid/flex */
  box-sizing: border-box;
}

.form-label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--secondary-light);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.75rem 0.9rem;
  font-size: 0.925rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: var(--bg-page);
  color: var(--text-main);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
}

.form-input[type="date"],
.form-input[type="time"] {
  min-height: 44px;
  line-height: normal;
  color: var(--text-main);
  background-color: var(--bg-page);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
  background-color: #ffffff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

/* ===================================================================
   TRUST BADGES BAR (GOVT / GST / MSME / VERIFIED)
=================================================================== */
.trust-bar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: center;
}

.trust-badge-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem;
  background-color: var(--bg-page);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.trust-badge-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.trust-badge-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon svg {
  width: 22px;
  height: 22px;
}

.trust-badge-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: var(--secondary);
}

.trust-badge-content p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.25;
}

/* ===================================================================
   PAGE HEADER (ABOUT, CONTACT, LEGAL PAGES)
=================================================================== */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
  color: #ffffff;
  padding: 3.25rem 0;
  text-align: center;
}

.page-header h1 {
  color: #ffffff;
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.page-header p {
  color: #cbd5e1;
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: #e2e8f0;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

/* ===================================================================
   SECTION COMMONS
=================================================================== */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-dark {
  background-color: var(--secondary);
  color: #ffffff;
}

.section-dark h2, .section-dark h3 {
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

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

/* ===================================================================
   SERVICES SECTION
=================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: #cbd5e1;
}

.service-icon {
  width: 54px;
  height: 54px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.service-features li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ===================================================================
   PRICING TABLE SECTION (STRICT RAZORPAY INR COMPLIANCE)
=================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 15px 30px -5px rgba(22, 163, 74, 0.18);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.35);
}

.pricing-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.pricing-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing-rate {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.currency {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
}

.amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.pricing-list li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-terms {
  margin-top: 2.5rem;
  background-color: var(--primary-subtle);
  border: 1px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  color: var(--secondary-light);
}

.pricing-terms h4 {
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ===================================================================
   WHY CHOOSE US / FEATURES
=================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-box {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-fast);
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.feature-icon-circle svg {
  width: 28px;
  height: 28px;
}

.feature-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===================================================================
   HOW IT WORKS (STEPS)
=================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.step-num {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--border-light);
  line-height: 1;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--secondary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===================================================================
   CONTENT & LEGAL POLICY PAGES
=================================================================== */
.policy-container {
  max-width: 920px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.policy-meta span {
  font-size: 0.85rem;
  color: var(--text-subtle);
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-section h3 {
  font-size: 1.15rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--secondary-light);
}

.policy-section p {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.policy-section ul, .policy-section ol {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.policy-section li {
  margin-bottom: 0.45rem;
}

.highlight-box {
  background-color: var(--primary-subtle);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  color: var(--secondary-light);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0;
}

.alert-box {
  background-color: var(--accent-amber-light);
  border-left: 4px solid var(--accent-amber);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.alert-box p {
  color: #78350f;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Contact Specific Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  box-sizing: border-box;
}

.contact-info-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: 100%;
  box-sizing: border-box;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--secondary);
}

.contact-text p, .contact-text a {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.contact-text a:hover {
  color: var(--primary);
}

.hours-badge {
  display: inline-block;
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  margin-top: 0.35rem;
}

/* ===================================================================
   CTA BANNER SECTION
=================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #15803d 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(22, 163, 74, 0.25);
  margin-bottom: -3rem;
  position: relative;
  z-index: 10;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: #dcfce7;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 1.75rem;
}

.cta-banner .btn-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===================================================================
   MODERN MINIMAL FOOTER WITH LOGO BADGE (RAZORPAY COMPLIANT)
=================================================================== */
.site-footer-minimal {
  background-color: #090d16;
  color: #94a3b8;
  padding: 4.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.885rem;
}

.footer-minimal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

/* Row 1: Brand Logo & Tagline */
.footer-minimal-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo-card {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.footer-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 135px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.footer-divider {
  color: #475569;
  font-size: 1rem;
}

.footer-tagline {
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Row 2: Interlinked Legal & Policy Links */
.footer-minimal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
}

.footer-minimal-nav a {
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-minimal-nav a:hover {
  color: #4ade80;
  text-decoration: underline;
}

/* Row 3: Operational, Verification & Contact Information */
.footer-minimal-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 860px;
  line-height: 1.6;
}

.footer-minimal-info .info-item {
  color: #94a3b8;
  font-size: 0.85rem;
}

.footer-minimal-info strong {
  color: #e2e8f0;
}

.footer-minimal-info a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-minimal-info a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.info-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.badge-mini {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 0.725rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Row 4: Razorpay Trust & Bottom Strip */
.footer-minimal-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.815rem;
  color: #64748b;
}

.footer-minimal-bottom .payment-note {
  color: #94a3b8;
}

.footer-minimal-bottom .payment-note strong {
  color: #ffffff;
}

.footer-minimal-bottom .copyright-text {
  color: #64748b;
}

/* Floating Action Button (WhatsApp Quick Connect) */
.floating-action {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.fab-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

.fab-whatsapp {
  background-color: #25d366;
}

.fab-phone {
  background-color: var(--primary);
}

.fab-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* ===================================================================
   RESPONSIVE DESIGN & MOBILE ENQUIRY BOX OPTIMIZATION
=================================================================== */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-booking-card {
    max-width: 540px;
    margin: 0 auto;
  }

  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .navbar {
    height: 64px;
  }

  .brand-logo-img {
    height: 40px;
    max-width: 145px;
  }

  /* Show Hamburger Button on Mobile */
  .nav-toggle {
    display: flex;
  }

  /* Desktop CTA hidden on Mobile (Moved inside Mobile Menu) */
  .nav-actions {
    display: none;
  }

  /* Mobile Dropdown Menu */
  .nav-menu {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.25rem 1.75rem;
    gap: 0;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    pointer-events: none;
  }

  .nav-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-link.active {
    color: var(--primary);
    font-weight: 700;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active::before {
    content: "●";
    color: var(--primary);
    font-size: 0.85rem;
    margin-right: 0.5rem;
  }

  .nav-mobile-actions {
    display: block;
    margin-top: 1.25rem;
  }

  .nav-mobile-btn {
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  }

  /* Content Mobile Adjustments */
  .hero {
    padding: 2.75rem 0 3rem;
  }

  .hero-title {
    font-size: 2.05rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* =========================================================
     CRITICAL: 100% RESPONSIVE ENQUIRY BOX & FORM FIXES
     Fixes date/time and input overflow on mobile devices
  ========================================================= */
  .hero-booking-card {
    padding: 1.35rem 1.15rem;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  }

  .hero-booking-card h3 {
    font-size: 1.2rem;
  }

  .hero-booking-card p {
    font-size: 0.825rem;
    margin-bottom: 1rem;
  }

  /* Force 1-column stack so date, time, and inputs don't squeeze */
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
  }

  .form-group {
    width: 100%;
  }

  .form-input, .form-select, .form-textarea {
    font-size: 0.95rem; /* Prevents auto-zoom on iOS Safari */
    padding: 0.75rem 0.8rem;
  }

  .trust-badges-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  /* Contact page specific responsiveness */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .contact-info-card,
  .contact-grid .policy-container {
    padding: 1.5rem 1.15rem !important;
    border-radius: var(--radius-lg);
  }

  .policy-container {
    padding: 1.75rem 1.15rem;
  }

  .cta-banner {
    padding: 2.5rem 1.25rem;
    margin-bottom: -2rem;
  }

  .cta-banner h2 {
    font-size: 1.75rem;
  }

  .footer-minimal-brand {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-divider {
    display: none;
  }

  .footer-minimal-nav {
    border-radius: var(--radius-lg);
    gap: 0.5rem 1rem;
  }

  .footer-minimal-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
  .container {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-booking-card {
    padding: 1.15rem 0.85rem !important;
    border-radius: var(--radius-md);
  }

  .hero-booking-card h3 {
    font-size: 1.15rem;
  }

  .booking-form-mini {
    gap: 0.8rem;
  }

  .form-input, .form-select, .form-textarea {
    padding: 0.65rem 0.75rem;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-top: 1.25rem;
  }

  .stat-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }

  .stat-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
  }

  .footer-logo-card {
    padding: 4px 10px;
  }

  .footer-logo-img {
    height: 32px;
    max-width: 110px;
  }
}

