/* ==========================================================================
   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: #0d2b52; /* Deep Navy Blue */
  --secondary-light: #1a4080; /* Medium Navy */
  --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(13, 43, 82, 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(13, 43, 82, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -5px rgba(13, 43, 82, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 40px -10px rgba(13, 43, 82, 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 ── */
.topbar {
  background: linear-gradient(90deg, #010810 0%, #041430 50%, #010810 100%);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
  letter-spacing: 0.2px;
}

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

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

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

.topbar-info span:hover {
  color: #fff;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

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

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

/* ── Header & Navigation — Premium Deep Navy ── */
@keyframes headerShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(
    105deg,
    #020c1b 0%,
    #041430 20%,
    #071e47 40%,
    #041430 60%,
    #020c1b 80%,
    #071e47 100%
  );
  background-size: 300% 300%;
  animation: headerShimmer 12s ease infinite;
  border-bottom: 1px solid;
  border-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(249,115,22,0.6) 25%,
    rgba(249,115,22,1) 50%,
    rgba(249,115,22,0.6) 75%,
    transparent 100%
  ) 1;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 2px 20px rgba(0,0,0,0.5);
  transition: box-shadow 0.35s ease;
}

/* Subtle diagonal light streak */
header.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 25%,
    rgba(255,255,255,0.028) 48%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

header.site-header.scrolled {
  background: linear-gradient(
    105deg,
    #010810 0%,
    #020f28 30%,
    #041838 55%,
    #020f28 80%,
    #010810 100%
  );
  background-size: 300% 300%;
  animation: headerShimmer 8s ease infinite;
  box-shadow:
    0 4px 32px rgba(0,0,0,0.7),
    0 1px 0 rgba(249,115,22,0.25),
    inset 0 -1px 0 rgba(249,115,22,0.08);
}

header.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  gap: 12px;
  overflow: visible;
  position: relative;
  z-index: 1;
}

/* ── Logo ── */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
  text-decoration: none;
}

.logo-link span {
  background: linear-gradient(90deg, #ffffff 0%, #cbd5f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.5);
  flex-shrink: 0;
}

/* ── Nav Links ── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.07);
}

.nav-link.active {
  color: var(--primary);
  background: rgba(249, 115, 22, 0.1);
  font-weight: 600;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  width: auto;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #fb923c);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* ── Nav CTA Buttons ── */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.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: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  background-color: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.55);
  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: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  z-index: 101;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: rgba(255,255,255,0.15);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(rgba(13, 43, 82, 0.85), rgba(13, 43, 82, 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-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 8px;
}

.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: linear-gradient(160deg, rgba(13, 43, 82, 0.92) 0%, rgba(8, 27, 53, 0.95) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-radius: var(--radius-xl);
  padding: 38px 34px;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.55),
              0 8px 24px -8px rgba(249, 115, 22, 0.18),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  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.45);
  box-shadow: 0 28px 70px -12px rgba(0, 0, 0, 0.6),
              0 12px 30px -8px rgba(249, 115, 22, 0.28),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.booking-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.booking-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  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: rgba(255, 255, 255, 0.88);
  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: 13px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: #f1f5f9;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.form-control:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background-color: rgba(255, 255, 255, 0.09);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.22),
              inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.form-control option {
  color: #1f2937;
}

/* 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%23cbd5e1%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), #060f20);
  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(13, 43, 82, 0.9), rgba(13, 43, 82, 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: linear-gradient(160deg, rgba(13, 43, 82, 0.97) 0%, rgba(8, 27, 53, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 24px 60px -12px rgba(13, 43, 82, 0.35),
              0 8px 24px -8px rgba(249, 115, 22, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  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 28px 70px -12px rgba(13, 43, 82, 0.45),
              0 12px 30px -8px rgba(249, 115, 22, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-form-card h3,
.contact-form-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.contact-form-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  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 — Mobile Optimised
   ========================================================================== */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 20px;
  }

  .hero-title {
    text-align: center;
  }

  .hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-buttons {
    justify-content: center;
  }

  .hero-tag-container {
    text-align: center;
    justify-content: 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;
  }

  .booking-card {
    padding: 30px 26px;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  /* Container padding */
  .container {
    padding: 0 16px;
  }

  /* Hide topbar on mobile — saves space */
  .topbar {
    display: none;
  }

  /* Header */
  header.site-header .container {
    height: 64px;
    overflow: visible;
  }

  .menu-toggle {
    display: block;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile nav drawer — dark navy */
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100dvh - 72px);
    background: linear-gradient(180deg, #0a1f3d 0%, #0d2b52 100%);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 32px;
    gap: 6px;
    box-shadow: 4px 0 30px rgba(0,0,0,0.4);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 200;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
  }

  .nav-menu li {
    width: 85%;
  }

  .nav-link {
    display: block;
    font-size: 1.05rem;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.3px;
  }

  .nav-link:hover {
    background-color: rgba(255,255,255,0.07);
    color: #fff;
  }

  .nav-link.active {
    background-color: rgba(249, 115, 22, 0.15);
    color: var(--primary);
    font-weight: 600;
    border: 1px solid rgba(249,115,22,0.25);
  }

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

  .nav-menu.open {
    left: 0;
  }

  /* Mobile CTA in nav */
  .nav-menu::after {
    content: '';
    display: block;
    height: 80px; /* space for bottom bar */
  }

  .nav-cta {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 52px 0 80px;
  }

  .hero .container {
    gap: 28px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    text-align: center;
  }

  .hero-desc {
    font-size: 1rem;
    text-align: center;
  }

  div[style*="display: flex"][style*="gap: 10px"] {
    justify-content: center;
  }

  .hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    width: 100%;
  }

  .hero-cta-buttons .btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    justify-content: center;
  }

  .hero-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
  }

  .hero-feat-item h4 {
    font-size: 1.4rem;
  }

  .hero-feat-item p {
    font-size: 0.75rem;
  }

  /* Booking card */
  .booking-card {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
  }

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

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

  /* Keep the short Name + Phone pair side-by-side in the popup booking
     modal so the whole form + submit button fits on screen without scrolling. */
  .booking-form .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .form-control {
    padding: 13px 16px;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  select.form-control {
    font-size: 16px;
  }

  .booking-form button[type="submit"],
  .contact-form button[type="submit"] {
    padding: 15px 20px;
    font-size: 1rem;
  }

  /* Section spacing */
  section.section {
    padding: 52px 0;
  }

  .sec-header {
    margin-bottom: 32px;
  }

  .sec-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  /* Grids → single column on mobile */
  .routes-grid,
  .fleet-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-card {
    padding: 24px 16px;
  }

  /* Inner page hero */
  .inner-hero {
    padding: 56px 0 48px;
  }

  .inner-hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-content h3 {
    font-size: 1.45rem;
  }

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

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form-card {
    padding: 24px 20px;
  }

  .contact-card {
    padding: 22px 18px;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.95rem;
    padding: 18px 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  footer.site-footer {
    padding: 48px 0 100px; /* Bottom pad for sticky bar */
  }

  /* CTA band */
  .cta-band .container {
    padding: 0 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0 10px;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Floating buttons */
  .floating-widgets {
    bottom: 76px;
    right: 16px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  /* Mobile sticky bar */
  .mobile-sticky-bar {
    display: grid;
    height: 56px;
  }

  .mobile-sticky-bar a {
    font-size: 0.9rem;
    gap: 6px;
    min-height: 44px;
  }
}

/* ── Small Mobile ── */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

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

  .hero {
    padding: 44px 0 72px;
  }

  .hero-features {
    gap: 8px;
  }

  .hero-feat-item h4 {
    font-size: 1.25rem;
  }

  .booking-card {
    padding: 20px 16px;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .why-card {
    padding: 20px 12px;
  }

  .why-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    margin-bottom: 14px;
  }

  .why-card h3 {
    font-size: 0.95rem;
  }

  .route-body {
    padding: 18px;
  }

  .review-card {
    padding: 22px 18px;
  }

  .inner-hero h1 {
    font-size: 1.65rem;
  }

  .stat-item h4 {
    font-size: 1.65rem;
  }

  .contact-form-card {
    padding: 20px 16px;
  }

  .cta-band h2 {
    font-size: 1.6rem;
  }

  .cta-band p {
    font-size: 0.95rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding-bottom: 8px;
  }
}

/* ── Tiny phones (e.g. iPhone SE) ── */
@media (max-width: 380px) {
  .logo-link span {
    display: none;
  }

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

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

  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .mobile-sticky-bar a {
    font-size: 0.8rem;
    gap: 4px;
  }
}

@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(6, 15, 32, 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: linear-gradient(160deg, rgba(13, 43, 82, 0.98) 0%, rgba(8, 27, 53, 1) 100%);
  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(6, 15, 32, 0.6), var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  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(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  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, rgba(249, 115, 22, 0.16) 0%, rgba(249, 115, 22, 0.08) 100%);
  border: 1.5px solid rgba(249, 115, 22, 0.55);
  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);
  }
}

/* ==========================================================================
   Light Popup Theme (scoped to the booking modal) — cream card + orange frame
   ========================================================================== */
.booking-modal-content {
  background: linear-gradient(170deg, #ffffff 0%, #fffaf3 100%);
  border: 2px solid var(--primary);
  border-radius: 22px;
  box-shadow: 0 30px 70px -18px rgba(15, 23, 42, 0.45),
              0 0 0 6px rgba(249, 115, 22, 0.08);
  max-width: 540px;
}

.booking-modal-content .booking-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 34px 32px 30px;
}

.booking-modal-content .booking-card::before {
  display: none;
}

/* Urgency pill above the heading */
.modal-urgency-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  background: #fff1ec;
  border: 1.5px solid rgba(220, 38, 38, 0.35);
  color: #dc2626;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.2px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.12);
}

/* Heading + description on the light card */
.booking-modal-content h3,
.booking-modal-content .booking-card h3 {
  color: var(--text-dark);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.booking-modal-content .booking-card-desc {
  color: var(--text-muted);
}

/* Uppercase muted labels (emojis stay intact) */
.booking-modal-content .form-group label {
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

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

/* Light input fields */
.booking-modal-content .form-control {
  background-color: #ffffff;
  border: 1.5px solid #e5e7eb;
  color: var(--text-dark);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.booking-modal-content .form-control::placeholder {
  color: #9ca3af;
}

.booking-modal-content .form-control:hover {
  border-color: #d1d5db;
  background-color: #ffffff;
}

.booking-modal-content .form-control:focus {
  border-color: var(--primary);
  background-color: #fffaf5;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18),
              inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.booking-modal-content select.form-control {
  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%236b7280%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");
}

/* Close button tuned for the light card */
.booking-modal-content .booking-modal-close {
  background: #f3f4f6;
  color: var(--text-muted);
}

.booking-modal-content .booking-modal-close:hover {
  background-color: var(--primary);
  color: #ffffff;
}

/* Best price banner text readable on light background */
.booking-modal-content .best-price-banner .highlight-title {
  color: var(--secondary);
  text-shadow: none;
}

/* Trust footer note (mirrors the image's fine print) */
.modal-trust-note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.2px;
}

/* ==========================================================================
   Light Theme for Enquiry / Contact Form Cards (matches the popup theme)
   ========================================================================== */
.contact-form-card {
  background: linear-gradient(170deg, #ffffff 0%, #fffaf3 100%);
  border: 2px solid var(--primary);
  box-shadow: 0 30px 70px -18px rgba(15, 23, 42, 0.22),
              0 0 0 6px rgba(249, 115, 22, 0.07);
  color: var(--text-dark);
}

.contact-form-card::before {
  display: none;
}

.contact-form-card:hover {
  box-shadow: 0 34px 80px -18px rgba(15, 23, 42, 0.28),
              0 0 0 6px rgba(249, 115, 22, 0.1);
}

.contact-form-card h3,
.contact-form-card h2 {
  color: var(--text-dark);
}

.contact-form-card p {
  color: var(--text-muted);
}

/* Uppercase muted labels (emojis stay intact) */
.contact-form-card .form-group label {
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

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

/* Light input fields */
.contact-form-card .form-control {
  background-color: #ffffff;
  border: 1.5px solid #e5e7eb;
  color: var(--text-dark);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.contact-form-card .form-control::placeholder {
  color: #9ca3af;
}

.contact-form-card .form-control:hover {
  border-color: #d1d5db;
  background-color: #ffffff;
}

.contact-form-card .form-control:focus {
  border-color: var(--primary);
  background-color: #fffaf5;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18),
              inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.contact-form-card select.form-control {
  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%236b7280%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");
}

/* Best price banner text readable on the light card */
.contact-form-card .best-price-banner .highlight-title {
  color: var(--secondary);
  text-shadow: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 0 14px rgba(249, 115, 22, 0.45), 0 2px 8px rgba(0,0,0,0.3);
  border: 1.5px solid rgba(249, 115, 22, 0.35);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.3s ease;
  flex-shrink: 0;
  display: block;
}

.logo-link:hover .logo-img {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 22px rgba(249, 115, 22, 0.65), 0 4px 12px rgba(0,0,0,0.3);
}
