/* ==========================================================================
   Nainital Taxi Service - Design System & Stylesheet
   ========================================================================== */

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

/* Variables */
:root {
  /* Colors */
  --primary: #f97316; /* Modern Sunset Orange */
  --primary-hover: #ea580c;
  --secondary: #0f3d2e; /* Forest Pine Green */
  --secondary-light: #1f6b4e;
  --accent: #2563eb; /* Royal Call Blue */
  --accent-green: #22c55e; /* WhatsApp Green */
  
  --bg-light: #faf8f5; /* Premium soft cream background */
  --bg-white: #ffffff;
  --bg-gray-alt: #f3f4f6; /* Gray-100 */
  --text-dark: #111827; /* Gray-900 */
  --text-muted: #4b5563; /* Gray-600 */
  --text-light: #f9fafb;
  
  --border-light: rgba(15, 61, 46, 0.08);
  --border-orange: rgba(249, 115, 22, 0.2);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 61, 46, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -5px rgba(15, 61, 46, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 40px -10px rgba(15, 61, 46, 0.15);
  --shadow-primary: 0 8px 20px -4px rgba(249, 115, 22, 0.35);

  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* Layout Wrapper */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top bar style */
.topbar {
  background-color: var(--secondary);
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.topbar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-links a {
  color: var(--primary);
  font-weight: 600;
}

.topbar-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Header & Navigation */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

header.site-header.scrolled {
  background-color: rgba(250, 248, 245, 0.95);
  box-shadow: var(--shadow-md);
}

header.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  gap: 12px;
  overflow: hidden;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-size: clamp(0.95rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--secondary);
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.25rem;
  box-shadow: var(--shadow-primary);
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: white;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(249, 115, 22, 0.45);
}

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

.btn-secondary:hover {
  background-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background-color: var(--secondary);
  color: white;
}

.btn-whatsapp {
  background-color: var(--accent-green);
  color: white;
}

.btn-whatsapp:hover {
  background-color: #16a34a;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--secondary);
  cursor: pointer;
  z-index: 101;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(rgba(15, 61, 46, 0.85), rgba(15, 61, 46, 0.92)), url('images/hero_bg.png') no-repeat center center/cover;
  padding: 100px 0 120px;
  color: white;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to top, var(--bg-light), transparent);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(249, 115, 22, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.hero-feat-item h4 {
  font-size: 1.75rem;
  color: var(--primary);
  font-weight: 800;
}

.hero-feat-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Premium Glassmorphism Booking Card */
.booking-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 38px 34px;
  box-shadow: 0 10px 30px -10px rgba(15, 61, 46, 0.08), 
              0 20px 40px -15px rgba(249, 115, 22, 0.12),
              var(--shadow-xl);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.booking-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 12px 35px -8px rgba(15, 61, 46, 0.1), 
              0 24px 45px -12px rgba(249, 115, 22, 0.16),
              var(--shadow-xl);
}

.booking-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.booking-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 26px;
  line-height: 1.5;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 2px;
  transition: var(--transition);
}

.form-group:focus-within label {
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(15, 61, 46, 0.15);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-dark);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.form-control::placeholder {
  color: #9ca3af;
  opacity: 0.8;
}

.form-control:hover {
  border-color: rgba(249, 115, 22, 0.45);
  background-color: #ffffff;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15),
              0 4px 12px rgba(249, 115, 22, 0.08);
}

/* Custom styling for select inputs */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%230f3d2e%27%20stroke-width%3D%272.5%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%276%209%2012%2015%2018%209%27%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 42px;
  cursor: pointer;
}

select.form-control:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23f97316%27%20stroke-width%3D%272.5%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%276%209%2012%2015%2018%209%27%3E%3C/polyline%3E%3C/svg%3E");
}

.booking-form button[type="submit"],
.contact-form button[type="submit"] {
  width: 100% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-weight: 800;
  padding: 16px 28px;
  border-radius: var(--radius-md) !important; /* Rectangular corners matching inputs */
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: white !important;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%) !important;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  margin-top: 15px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.booking-form button[type="submit"]:hover,
.contact-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5) !important;
  background: linear-gradient(135deg, var(--primary-hover) 0%, #ea580c 100%) !important;
}

.booking-form button[type="submit"]:active,
.contact-form button[type="submit"]:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2) !important;
}

/* Section Common Styles */
section.section {
  padding: 80px 0;
}

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

.sec-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.sec-tag {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.sec-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--secondary);
  margin-bottom: 16px;
}

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

/* Route Cards Grid */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.route-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.route-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-orange);
}

.route-img-container {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.route-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.route-card:hover .route-img {
  transform: scale(1.08);
}

.route-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--secondary);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.route-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.route-body h3 {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.route-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.route-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 0;
  margin-bottom: 16px;
}

.route-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

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

/* Why Us Section */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background-color: var(--bg-white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-orange);
}

.why-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(249, 115, 22, 0.08);
  border-radius: var(--radius-md);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  font-size: 1.75rem;
}

.why-card h3 {
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Fleet Section */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fleet-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

.fleet-img-container {
  height: 160px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  display: grid;
  place-items: center;
  font-size: 4rem;
}

.fleet-body {
  padding: 24px;
}

.fleet-body h3 {
  font-size: 1.35rem;
  color: var(--secondary);
}

.fleet-capacity {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin: 4px 0 16px;
}

.fleet-features {
  list-style: none;
  margin-bottom: 24px;
}

.fleet-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* Testimonials / Review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 24px;
  right: 30px;
  font-size: 2.5rem;
  color: rgba(249, 115, 22, 0.08);
  font-family: serif;
  line-height: 1;
}

.stars {
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background-color: var(--secondary);
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--font-headings);
  font-weight: 700;
}

.reviewer-info h4 {
  font-size: 0.95rem;
  color: var(--secondary);
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA Band Section */
.cta-band {
  background: linear-gradient(135deg, var(--secondary), #091f17);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* FAQ Section Styling */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-orange);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question span {
  width: 24px;
  height: 24px;
  background-color: rgba(249, 115, 22, 0.08);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 28px;
}

.faq-answer p {
  padding-bottom: 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  background-color: var(--primary);
  color: white;
}

/* Footer Section */
footer.site-footer {
  background-color: #0b131f; /* Midnight Blue-black */
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  color: white;
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 24px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.95rem;
}

.social-link:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.footer-column h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact li i {
  color: var(--primary);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}

/* Floating Widgets */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  animation: floatPulse 2s infinite;
  cursor: pointer;
}

.float-wa {
  background-color: var(--accent-green);
}

.float-call {
  background-color: var(--accent);
}

@keyframes floatPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.float-call {
  animation: floatCallPulse 2s infinite;
}

@keyframes floatCallPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Mobile Bottom Sticky Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--secondary);
  z-index: 98;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
}

.mobile-sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-weight: 700;
  color: white;
  font-size: 0.95rem;
}

.mobile-sticky-bar .msb-call {
  background-color: var(--accent);
}

.mobile-sticky-bar .msb-wa {
  background-color: var(--accent-green);
}

/* Inner Page Hero Styles */
.inner-hero {
  background: linear-gradient(rgba(15, 61, 46, 0.9), rgba(15, 61, 46, 0.95)), url('images/hero_bg.png') no-repeat center center/cover;
  padding: 80px 0;
  color: white;
  text-align: center;
}

.inner-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.breadcrumbs {
  display: inline-flex;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

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

/* About Page Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-content h3 {
  font-size: 1.75rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  background-color: var(--bg-white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-item p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  font-size: 1.35rem;
  color: var(--secondary);
  margin-bottom: 24px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(249, 115, 22, 0.08);
  border-radius: var(--radius-md);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 4px;
}

.contact-text p, .contact-text a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.map-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-md);
  height: 250px;
  overflow: hidden;
}

.contact-form-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(15, 61, 46, 0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 10px 30px -10px rgba(15, 61, 46, 0.06), 0 20px 40px -15px rgba(15, 61, 46, 0.04);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.contact-form-card:hover {
  box-shadow: 0 12px 35px -8px rgba(15, 61, 46, 0.08), 0 24px 45px -12px rgba(15, 61, 46, 0.06);
}

.contact-form-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.contact-form-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 26px;
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 125px;
  line-height: 1.5;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 20px;
  }
  
  .hero-title {
    text-align: center;
  }
  
  .hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-tag-container {
    text-align: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  header.site-header .container {
    height: 70px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-light);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    gap: 28px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-cta {
    display: none;
  }
  
  .routes-grid, .why-us-grid, .fleet-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-widgets {
    bottom: 80px;
    right: 20px;
  }
  
  .mobile-sticky-bar {
    display: grid;
  }
  
  .hero {
    padding: 60px 0 80px;
  }
  
  section.section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-card {
    padding: 24px;
  }

  .logo-link {
    max-width: 200px;
    font-size: 0.9rem;
    gap: 6px;
  }
}

@media (max-width: 380px) {
  /* On very small phones, hide logo text — show icon only */
  .logo-link span {
    display: none;
  }

  .logo-link {
    max-width: unset;
  }
}


/* ==========================================================================
   Booking Modal Overlay and Animations
   ========================================================================== */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 31, 23, 0.7); /* Forest pine dark tinted transparent */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.booking-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-content {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 620px;
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 50px -12px rgba(9, 31, 23, 0.4), var(--shadow-xl);
  border: 1px solid var(--border-orange);
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.booking-modal-overlay.open .booking-modal-content {
  transform: translateY(0) scale(1);
}

.booking-modal-content::-webkit-scrollbar {
  width: 8px;
}
.booking-modal-content::-webkit-scrollbar-track {
  background: transparent;
}
.booking-modal-content::-webkit-scrollbar-thumb {
  background: var(--border-orange);
  border-radius: 4px;
}

.booking-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(15, 61, 46, 0.06);
  border: none;
  font-size: 22px;
  font-weight: 700;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--secondary);
  transition: var(--transition);
  z-index: 100;
}

.booking-modal-close:hover {
  background-color: var(--primary);
  color: white;
  transform: rotate(90deg);
}

body.modal-open {
  overflow: hidden;
}

/* Modal Inner Card Tuning */
.booking-modal-content .booking-card {
  box-shadow: none;
  border: none;
  background: transparent;
  padding: 30px;
}

.booking-modal-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
}

/* ==========================================================================
   Best Price Guarantee Highlight Banner & Keyframes
   ========================================================================== */
.best-price-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #164e3c 100%);
  border: 2.5px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-align: center;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
  animation: pulseHighlight 3s infinite ease-in-out;
  transition: all 0.3s ease;
}

.best-price-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.3);
}

.best-price-banner .highlight-title {
  color: #ffffff;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.best-price-banner .highlight-divider {
  color: var(--primary);
  font-weight: 900;
  margin: 0 4px;
}

.best-price-banner .highlight-subtitle {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@keyframes pulseHighlight {
  0% {
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.15);
    border-color: var(--primary);
  }
  50% {
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4), 0 0 12px rgba(249, 115, 22, 0.2);
    border-color: #ff8c3a;
  }
  100% {
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.15);
    border-color: var(--primary);
  }
}

.logo-img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: var(--shadow-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
  display: block;
}

.logo-link:hover .logo-img {
  transform: scale(1.08) rotate(6deg);
}
