/* ==========================================================
   MAHAKAL TRAVELS - MAIN STYLESHEET
   Theme: Premium Spiritual (Ujjain / Mahakal / Simhastha)
   ========================================================== */

:root {
  --primary: #FF6A00;
  --primary-dark: #CC5500;
  --secondary: #111827;
  --bg: #F8FAFC;
  --accent: #FFD700;
  --white: #FFFFFF;
  --text-muted: #6B7280;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 10px 40px rgba(17, 24, 39, 0.08);
  --shadow-hover: 0 20px 50px rgba(255, 106, 0, 0.25);
  --gradient-primary: linear-gradient(135deg, #FF6A00 0%, #FF9248 100%);
  --gradient-dark: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFB800 100%);
}

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--secondary);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

a { text-decoration: none; transition: all 0.3s ease; }

::selection { background: var(--primary); color: #fff; }

/* ---------- Buttons ---------- */
.btn-gradient-primary {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-gradient-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.45);
  color: #fff;
}
.btn-outline-dark-custom {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 26px;
  background: transparent;
}
.btn-outline-dark-custom:hover { background: var(--secondary); color: #fff; }

/* ---------- Top bar & Header ---------- */
.top-bar { background: var(--secondary); color: #cbd5e1; font-size: 0.85rem; padding: 6px 0; }
.top-bar a { color: #cbd5e1; }
.top-bar-info span { margin-right: 20px; }
.top-bar-social a { color: #cbd5e1; margin-left: 12px; font-size: 0.95rem; }
.top-bar-social a:hover { color: var(--accent); }

.site-header { z-index: 1050; }
.main-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 10px 0;
}
.navbar-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.5rem; color: var(--secondary) !important; }
.brand-om { color: var(--primary); font-size: 1.8rem; }
.brand-text em { color: var(--primary); font-style: normal; }
.nav-link { font-weight: 500; color: var(--secondary) !important; margin: 0 8px; position: relative; }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--primary); transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.simhastha-link { color: var(--primary) !important; font-weight: 600; }
.badge-new { background: var(--accent); color: var(--secondary); font-size: 0.6rem; padding: 2px 6px; border-radius: 20px; margin-left: 4px; vertical-align: middle; }

/* ---------- Floating Buttons ---------- */
.floating-whatsapp {
  position: fixed; bottom: 90px; right: 20px; z-index: 1100;
  background: #25D366; color: #fff; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  animation: pulse 2s infinite;
}
.floating-book-btn {
  position: fixed; bottom: 20px; left: 0; right: 0; z-index: 1100;
  background: var(--gradient-primary); color: #fff; text-align: center;
  padding: 14px; font-weight: 600; margin: 0 16px; border-radius: 50px;
  box-shadow: 0 8px 24px rgba(255,106,0,0.4);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Hero ---------- */
.hero-section {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  overflow: hidden; color: #fff;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,24,39,0.75) 0%, rgba(17,24,39,0.55) 50%, rgba(17,24,39,0.9) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding-top: 60px; }
.hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; color: #fff; line-height: 1.15; }
.hero-content h1 span { color: var(--accent); }
.hero-content p { font-size: 1.15rem; color: #E5E7EB; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(10px); padding: 8px 18px;
  border-radius: 50px; font-size: 0.85rem; margin-bottom: 18px;
}

/* ---------- Glass Booking Form ---------- */
.booking-form-wrapper {
  position: relative; z-index: 3; background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-soft); margin-top: 30px;
}
.booking-form-wrapper .form-label { color: #fff; font-weight: 500; font-size: 0.85rem; }
.booking-form-wrapper .form-control,
.booking-form-wrapper .form-select {
  border-radius: 12px; border: none; padding: 12px 14px; background: rgba(255,255,255,0.92);
}
.booking-form-wrapper .form-control:focus,
.booking-form-wrapper .form-select:focus { box-shadow: 0 0 0 3px rgba(255,106,0,0.4); }
.trip-type-toggle .btn-check:checked + label { background: var(--gradient-primary); color: #fff; border-color: transparent; }
.trip-type-toggle label { border-radius: 50px !important; font-weight: 600; font-size: 0.85rem; padding: 8px 20px; }

/* ---------- Section Titles ---------- */
.section-eyebrow {
  color: var(--primary); text-transform: uppercase; letter-spacing: 2px; font-weight: 700;
  font-size: 0.8rem; display: inline-flex; align-items: center; gap: 8px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--primary); }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-top: 8px; }
.section-subtitle { color: var(--text-muted); max-width: 600px; }

/* ---------- Vehicle Cards ---------- */
.vehicle-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; border: 1px solid #EEF1F5;
}
.vehicle-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.vehicle-card img { height: 190px; width: 100%; object-fit: cover; }
.vehicle-card .card-body { padding: 20px; }
.vehicle-card .price-tag { color: var(--primary); font-weight: 700; font-size: 1.3rem; }
.vehicle-feature-list { display: flex; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; color: var(--text-muted); margin: 12px 0; }
.vehicle-feature-list span { display: flex; align-items: center; gap: 4px; }

/* ---------- Package Cards ---------- */
.package-card {
  border-radius: var(--radius-md); overflow: hidden; position: relative; height: 340px;
  background-size: cover; background-position: center; box-shadow: var(--shadow-soft);
}
.package-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,24,39,0) 30%, rgba(17,24,39,0.92) 100%);
}
.package-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; z-index: 2; color: #fff; }
.package-card-body .price { color: var(--accent); font-weight: 700; }

/* ---------- Route Chips ---------- */
.route-chip {
  background: #fff; border: 1px solid #EEF1F5; border-radius: var(--radius-md); padding: 18px;
  display: flex; justify-content: space-between; align-items: center; box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
}
.route-chip:hover { border-color: var(--primary); transform: translateX(4px); }

/* ---------- Stats / Why Choose Us ---------- */
.stat-card {
  background: var(--gradient-dark); color: #fff; border-radius: var(--radius-md); padding: 26px; text-align: center;
}
.stat-card h3 { color: var(--accent); font-size: 2.4rem; margin-bottom: 4px; }

.feature-icon-box {
  width: 60px; height: 60px; border-radius: 16px; background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem; margin-bottom: 16px;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff; border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-soft); height: 100%;
}
.testimonial-card .stars { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { background: var(--secondary); color: #9CA3AF; }
.footer-top { padding: 60px 0 30px; }
.footer-brand { color: #fff; font-size: 1.4rem; margin-bottom: 12px; }
.footer-about { font-size: 0.9rem; }
.site-footer h6 { color: #fff; margin-bottom: 16px; font-weight: 600; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-links a { color: #9CA3AF; }
.footer-links a:hover { color: var(--accent); }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; margin-right: 8px;
}
.footer-social a:hover { background: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; font-size: 0.85rem; }
.footer-legal a { color: #9CA3AF; margin-left: 16px; }
.footer-legal a:hover { color: var(--accent); }

/* ---------- Fare Result Box ---------- */
.fare-breakdown-box {
  background: #fff; border-radius: var(--radius-md); border: 1px dashed var(--primary); padding: 20px;
}
.fare-breakdown-box .row-line { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.92rem; color: var(--text-muted); }
.fare-breakdown-box .row-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.2rem; color: var(--secondary); border-top: 1px solid #eee; padding-top: 10px; margin-top: 6px; }

/* ---------- Utility ---------- */
.bg-soft { background: var(--bg); }
.rounded-xl { border-radius: var(--radius-lg); }
.section-py { padding: 80px 0; }

@media (max-width: 768px) {
  .section-py { padding: 50px 0; }
  .hero-section { min-height: auto; padding: 120px 0 60px; }
}
