/* ==========================================================================
   SHREE SHARADA TAXI - COASTAL EDITORIAL TRANSIT DESIGN SYSTEM
   Theme: Coastal High-Contrast Modernism & Luxury Chauffeur
   ========================================================================== */

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

:root {
  /* Brand Core Colors */
  --primary: #F4C401;
  --primary-hover: #ffcf10;
  --primary-glow: rgba(244, 196, 1, 0.45);
  --primary-glow-soft: rgba(244, 196, 1, 0.15);
  --primary-container: #241a00;
  --on-primary: #111111;
  
  /* Dark Canvas Surfaces */
  --bg-dark: #0a0a0b;
  --surface-deep: #111112;
  --surface-card: #18181b;
  --surface-card-hover: #222226;
  --surface-elevated: #27272a;
  
  /* Text & Typography */
  --text-white: #ffffff;
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-gold: #f4c401;
  --text-eyebrow: #d1c5ab;
  
  /* Borders & Hairlines */
  --border-light: rgba(255, 255, 255, 0.12);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(244, 196, 1, 0.4);
  --border-gold-solid: #F4C401;
  
  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-glow: 0 0 35px rgba(244, 196, 1, 0.35);
  --shadow-subtle: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.6);
  
  /* Layout Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background-color: var(--bg-dark);
  overflow-x: hidden;
  position: relative;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

ul {
  list-style: none;
}

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

/* Universal text wrap prevention of horizontal overflow */
h1, h2, h3, h4, h5, h6, p, span, a, button, input, select, textarea {
  overflow-wrap: break-word;
}

/* ==========================================================================
   UTILITY CONTAINER
   ========================================================================== */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

@media (max-width: 500px) {
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 350px) {
  .container {
    padding: 0 0.65rem;
  }
}

@media (max-width: 280px) {
  .container {
    padding: 0 0.45rem;
  }
}

@media (max-width: 240px) {
  .container {
    padding: 0 0.35rem;
  }
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-transform: capitalize;
  letter-spacing: 0.02em;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 500px) {
  .btn {
    padding: 0.75rem 1.35rem;
    font-size: 0.9rem;
    gap: 0.5rem;
  }
}

@media (max-width: 350px) {
  .btn {
    padding: 0.6rem 0.85rem;
    font-size: 0.82rem;
    gap: 0.35rem;
  }
}

@media (max-width: 280px) {
  .btn {
    padding: 0.5rem 0.65rem;
    font-size: 0.75rem;
  }
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 4px 20px rgba(244, 196, 1, 0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 196, 1, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-gold {
  background: rgba(244, 196, 1, 0.15);
  color: var(--primary);
  border: 1px solid rgba(244, 196, 1, 0.35);
}

/* ==========================================================================
   HEADER / NAVBAR (Components.js targets this)
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* SST Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.brand-logo-img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast), height var(--transition-fast);
}

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

.site-header.scrolled .brand-logo-img {
  height: 52px;
}

.brand-logo span.highlight {
  color: var(--primary);
}

.brand-logo .brand-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 0.4rem;
  padding: 2px 6px;
  border: 1px solid rgba(209, 197, 171, 0.3);
  border-radius: 4px;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 1.25rem;
}

.header-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.header-phone-link i {
  color: var(--primary);
  font-size: 1.1rem;
}

.header-phone-link:hover {
  border-color: var(--primary);
  background: rgba(244, 196, 1, 0.1);
  color: var(--primary);
}

@media (max-width: 1200px) {
  .header-phone-link span {
    display: none;
  }
  .header-phone-link {
    padding: 0.6rem;
  }
}

.header-btn {
  padding: 0.75rem 1.6rem;
  font-size: 0.9rem;
}

.mobile-toggle {
  display: none;
  font-size: 1.75rem;
  color: var(--text-white);
  cursor: pointer;
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.85rem 0;
  }
  .site-header.scrolled {
    padding: 0.65rem 0;
  }
  .brand-logo-img {
    height: 48px;
    max-width: 180px;
  }
  .site-header.scrolled .brand-logo-img {
    height: 40px;
  }
  .header-btn {
    display: none;
  }
}

@media (max-width: 500px) {
  .site-header {
    padding: 0.65rem 0;
  }
  .brand-logo-img {
    height: 40px;
    max-width: 140px;
  }
  .site-header.scrolled .brand-logo-img {
    height: 34px;
  }
  .nav-actions {
    gap: 0.65rem;
  }
  .header-phone-link {
    padding: 0.45rem 0.65rem;
    font-size: 0.85rem;
  }
  .mobile-toggle {
    font-size: 1.5rem;
  }
}

@media (max-width: 350px) {
  .site-header {
    padding: 0.45rem 0;
  }
  .brand-logo-img {
    height: 30px;
    max-width: 95px;
  }
  .site-header.scrolled .brand-logo-img {
    height: 26px;
  }
  .nav-actions {
    gap: 0.35rem;
  }
  .header-phone-link {
    padding: 0.3rem 0.45rem;
    font-size: 0.75rem;
  }
  .mobile-toggle {
    font-size: 1.25rem;
  }
}

@media (max-width: 280px) {
  .brand-logo-img {
    height: 26px;
    max-width: 80px;
  }
  .nav-actions {
    gap: 0.25rem;
  }
  .header-phone-link {
    padding: 0.25rem 0.35rem;
  }
  .mobile-toggle {
    font-size: 1.15rem;
  }
}

@media (max-width: 240px) {
  .brand-logo-img {
    height: 22px;
    max-width: 70px;
  }
  .nav-actions {
    gap: 0.2rem;
  }
}

/* ==========================================================================
   HERO SECTION (1:1 Stitch Replica - 4-Layer Architecture)
   ========================================================================== */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  box-sizing: border-box;
  background-color: #08090A;
  background-image: 
    radial-gradient(circle at 80% 50%, rgba(244, 196, 1, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 20% 90%, rgba(244, 196, 1, 0.05) 0%, transparent 50%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   LAYER 0: Background Canvas & Giant Yellow Portal Disc
   -------------------------------------------------------------------------- */
.hero-layer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background: radial-gradient(circle at 75% 45%, rgba(244, 196, 1, 0.12) 0%, rgba(244, 196, 1, 0.03) 50%, transparent 75%);
}

.hero-portal-container {
  position: absolute;
  bottom: -60px;
  top: auto;
  right: -5vw;
  transform: none;
  width: min(850px, 58vw);
  height: min(850px, 58vw);
  z-index: 2;
}

/* Yellow Geometric Radial Fan Beams Behind Ring */
.hero-portal-fan {
  position: absolute;
  inset: -60px;
  background: 
    conic-gradient(
      from 200deg at 50% 50%,
      transparent 0deg,
      rgba(244, 196, 1, 0.85) 35deg,
      rgba(244, 196, 1, 0.85) 60deg,
      transparent 95deg,
      transparent 180deg,
      rgba(244, 196, 1, 0.8) 220deg,
      rgba(244, 196, 1, 0.8) 250deg,
      transparent 285deg
    );
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.95;
  z-index: 1;
}

.hero-portal-ring {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 18px solid #F4C401;
  background: #08090A;
  box-shadow: 
    0 0 80px rgba(244, 196, 1, 0.35),
    inset 0 0 60px rgba(244, 196, 1, 0.25);
  overflow: hidden;
  z-index: 2;
}

.hero-portal-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
}

.hero-portal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.04);
}

.hero-portal-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, rgba(8, 9, 10, 0.85) 0%, rgba(8, 9, 10, 0.1) 40%, rgba(8, 9, 10, 0.4) 100%),
    linear-gradient(to top, rgba(8, 9, 10, 0.8) 0%, transparent 60%);
  pointer-events: none;
}

.portal-speed-curves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   LAYER 1: Vector Light & Landmarks (SVGs)
   -------------------------------------------------------------------------- */
.hero-layer-vectors {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

/* Coastal Highway Speed Trails (Bottom-Left) */
.hero-highway-speed-trails {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  max-width: 720px;
  height: 320px;
  z-index: 6;
}

.hero-highway-speed-trails svg {
  width: 100%;
  height: 100%;
}

/* Glowing Temple Gopuram Skyline Silhouette */
.hero-temple-skyline {
  position: absolute;
  bottom: 0;
  left: 25%;
  transform: translateX(-50%);
  right: auto;
  width: min(520px, 45vw);
  z-index: 6;
  pointer-events: none;
}

.hero-temple-skyline svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(244, 196, 1, 0.8)) drop-shadow(0 0 28px rgba(244, 196, 1, 0.45));
}

/* --------------------------------------------------------------------------
   LAYER 2: Hero Subject (Vehicle & CSS Mirror Reflection)
   -------------------------------------------------------------------------- */
.hero-layer-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-car-stage-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  top: auto;
  transform: none;
  width: min(705px, 46.5vw);
  min-width: 390px;
  z-index: 10;
}

/* Yellow Floor Reflection Perspective Graphic */
.hero-floor-geometry {
  position: absolute;
  bottom: -45px;
  left: -10%;
  width: 115%;
  height: 140px;
  background: 
    conic-gradient(
      from 130deg at 50% 0%,
      transparent 0deg,
      rgba(244, 196, 1, 0.45) 30deg,
      rgba(244, 196, 1, 0.7) 45deg,
      rgba(244, 196, 1, 0.2) 65deg,
      transparent 90deg
    );
  transform: scaleY(0.5) skewX(-22deg);
  filter: blur(12px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 8;
}

.hero-car-container {
  position: relative;
  width: 100%;
  display: inline-block;
}

.hero-car-cutout {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.95));
  position: relative;
  z-index: 12;
  animation: subtleCarFloat 6s ease-in-out infinite alternate;
}

@keyframes subtleCarFloat {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-5px);
  }
}

.hero-car-shadow {
  position: absolute;
  bottom: -8px;
  left: 6%;
  width: 88%;
  height: 32px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.7) 45%, transparent 75%);
  filter: blur(8px);
  z-index: 11;
}

/* Mirrored Ground Reflection Container */
.hero-car-reflection {
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  transform: scaleY(-1);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 25%, transparent 60%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 25%, transparent 60%);
  opacity: 0.75;
  filter: blur(0.8px);
  pointer-events: none;
  z-index: 9;
}

.hero-car-reflect-img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   LAYER 3: Foreground Content & Floating Navigation
   -------------------------------------------------------------------------- */
.hero-layer-content {
  position: relative;
  z-index: 20;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

.hero-content {
  max-width: 580px;
  z-index: 22;
  padding-right: 1rem;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #D4AF37;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.75rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title .title-white {
  display: block;
  color: #FFFFFF;
}

.hero-title .title-accent {
  display: block;
  color: #F4C401;
  text-shadow: 0 0 35px rgba(244, 196, 1, 0.4);
}

.hero-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #E2E2E2;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-description {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: #A1A1AA;
  max-width: 480px;
  margin-bottom: 2.25rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-cta-btn {
  font-family: 'Outfit', sans-serif;
  padding: 0.95rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 9999px;
  background: #F4C401;
  color: #111111;
  box-shadow: 0 6px 25px rgba(244, 196, 1, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-cta-btn:hover {
  background: #ffcf10;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(244, 196, 1, 0.65);
  color: #111111;
}

.hero-spacer {
  pointer-events: none;
}

/* Hero Social Floating Bar & Editorial Note (Bottom Right) */
.hero-meta-dock {
  position: absolute;
  bottom: 1.75rem;
  right: 2.25rem;
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  max-width: 250px;
  text-align: right;
}

.hero-socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-btn:hover {
  background: #F4C401;
  border-color: #F4C401;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(244, 196, 1, 0.5);
}

.hero-editorial-copy {
  font-size: 0.72rem;
  line-height: 1.4;
  color: #71717A;
  font-style: italic;
}

/* Responsive Scaling for Hero Section */
@media (max-width: 1200px) {
  .hero-portal-container {
    width: 650px;
    height: 650px;
    right: -10vw;
  }
  .hero-car-stage-wrapper {
    width: 45vw;
    min-width: 345px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 280px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-portal-container {
    width: 480px;
    height: 480px;
    top: auto;
    bottom: -40px;
    right: -50px;
    transform: none;
    opacity: 0.85;
  }
  .hero-car-stage-wrapper {
    width: 64vw;
    min-width: 240px;
    top: auto;
    bottom: 0;
    right: 0;
    transform: none;
  }
  .hero-meta-dock {
    position: static;
    margin-top: 2rem;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 4.5rem;
  }
  .hero-grid {
    padding-top: 1rem;
    padding-bottom: 200px;
  }
  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }
  .hero-tagline {
    font-size: 0.95rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .hero-description {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }
  .hero-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
  }
  .hero-portal-container {
    width: min(340px, 85vw);
    height: min(340px, 85vw);
    right: -25px;
    bottom: -30px;
  }
  .hero-car-stage-wrapper {
    width: 78vw;
    min-width: 0;
    max-width: 100%;
  }
  .hero-temple-skyline {
    position: absolute;
    bottom: 0;
    left: 30%;
    transform: translateX(-50%);
    right: auto;
    width: min(320px, 85vw);
    opacity: 0.75;
    margin-top: 0;
  }
  .hero-highway-speed-trails {
    width: 95%;
    height: 160px;
  }
}

@media (max-width: 350px) {
  .hero-section {
    padding-top: 3.5rem;
    padding-bottom: 1.5rem;
  }
  .hero-grid {
    padding-top: 0.5rem;
    padding-bottom: 140px;
    gap: 1rem;
  }
  .hero-content {
    padding-right: 0;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .hero-title {
    font-size: clamp(1.2rem, 6.5vw, 1.55rem);
    margin-bottom: 0.65rem;
    line-height: 1.15;
    word-break: break-word;
  }
  .hero-tagline {
    font-size: 0.75rem;
    gap: 0.25rem;
    margin-bottom: 0.85rem;
  }
  .hero-description {
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 1.15rem;
  }
  .hero-cta-btn {
    font-size: 0.82rem;
    padding: 0.65rem 1rem;
    width: 100%;
    justify-content: center;
  }
  .hero-portal-container {
    width: min(190px, 65vw);
    height: min(190px, 65vw);
    right: -10px;
    bottom: -15px;
  }
  .hero-car-stage-wrapper {
    width: 88vw;
    max-width: 280px;
    min-width: 0;
  }
  .hero-temple-skyline {
    width: min(180px, 75vw);
    left: 35%;
    opacity: 0.65;
  }
  .hero-highway-speed-trails {
    height: 90px;
    width: 100%;
  }
  .hero-meta-dock {
    margin-top: 1rem;
    align-items: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }
  .hero-socials {
    justify-content: center;
    gap: 0.5rem;
  }
  .social-icon-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  .hero-editorial-copy {
    font-size: 0.68rem;
    text-align: center;
  }
}

@media (max-width: 280px) {
  .hero-section {
    padding-top: 3rem;
  }
  .hero-title {
    font-size: 1.15rem;
  }
  .hero-grid {
    padding-bottom: 120px;
  }
  .hero-portal-container {
    width: 160px;
    height: 160px;
  }
  .hero-temple-skyline {
    width: 150px;
  }
}

@media (max-width: 240px) {
  .hero-title {
    font-size: 1.05rem;
  }
  .hero-grid {
    padding-bottom: 100px;
  }
  .hero-portal-container {
    width: 130px;
    height: 130px;
  }
}

/* ==========================================================================
   QUICK BOOKING STRIP / SEARCH WIDGET
   ========================================================================== */

.booking-strip-wrapper {
  position: relative;
  z-index: 30;
  margin-top: 3.5rem;
  margin-bottom: 5rem;
}

.booking-strip-card {
  background: #F4C401;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: 0 16px 40px rgba(244, 196, 1, 0.3), 0 20px 40px rgba(0, 0, 0, 0.6);
}

.trip-type-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding-bottom: 0.75rem;
}

.trip-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #18181b;
  background: rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition-fast);
}

.trip-tab:hover {
  color: #000000;
  background: rgba(0, 0, 0, 0.14);
}

.trip-tab.active {
  background: #0a0a0b;
  color: #ffffff;
  border-color: #0a0a0b;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.trip-tab.active i {
  color: #F4C401;
}

.booking-fields-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1rem;
  align-items: flex-end;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.booking-strip-card .field-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #111112;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-card .field-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-eyebrow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #111112;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-strip-card .field-input-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: #111112;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

.booking-strip-card .field-input-box:focus-within {
  border-color: #0a0a0b;
  box-shadow: 0 0 0 2px rgba(10, 10, 11, 0.25);
}

.booking-strip-card .field-input-box i {
  color: #18181b;
  font-size: 1.15rem;
}

.booking-strip-card .field-input-box input,
.booking-strip-card .field-input-box select {
  background: transparent;
  border: none;
  color: #111112;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  width: 100%;
  outline: none;
}

.booking-strip-card .field-input-box input::placeholder {
  color: #64748b;
  opacity: 1;
}

.booking-strip-card .field-input-box select option {
  background: #ffffff;
  color: #111112;
}

.modal-card .field-input-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 10, 11, 0.75);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--text-white);
  transition: all var(--transition-fast);
}

.modal-card .field-input-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(244, 196, 1, 0.25);
}

.modal-card .field-input-box i {
  color: var(--primary);
  font-size: 1.15rem;
}

.modal-card .field-input-box input,
.modal-card .field-input-box select {
  background: none;
  border: none;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.9rem;
  width: 100%;
  outline: none;
}

.modal-card .field-input-box select option {
  background: #18181b;
  color: #fff;
}

.modal-card .trip-tab {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
}

.modal-card .trip-tab:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
}

.modal-card .trip-tab.active {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(244, 196, 1, 0.3);
}

.modal-card .trip-tab.active i {
  color: inherit;
}

.booking-submit-btn {
  height: 50px;
  padding: 0 2rem;
  white-space: nowrap;
  background: #0a0a0b;
  color: #ffffff;
  border: 1px solid #0a0a0b;
  border-radius: var(--radius-md);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
}

.booking-submit-btn:hover {
  background: #27272a;
  color: #F4C401;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.booking-submit-btn i {
  color: #F4C401;
  transition: transform var(--transition-fast);
}

.booking-submit-btn:hover i {
  transform: translateX(3px);
}

/* ==========================================================================
   FEATURED SERVICES & HIGHLIGHTS
   ========================================================================== */

.section-padding {
  padding: 5rem 0;
  position: relative;
}

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

.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.service-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  background: var(--surface-card-hover);
  box-shadow: var(--shadow-card), 0 0 30px rgba(244, 196, 1, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(244, 196, 1, 0.12);
  border: 1px solid rgba(244, 196, 1, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 0 20px rgba(244, 196, 1, 0.5);
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   POPULAR COASTAL ROUTES & TOURS
   ========================================================================== */

.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.route-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.route-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.route-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.route-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.route-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.route-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.route-price span.label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-secondary);
}

/* ==========================================================================
   FOOTER (Components.js targets this - Aerial Drone View of Mangalore)
   ========================================================================== */

.site-footer {
  background: #080809;
  border-top: 1px solid rgba(244, 196, 1, 0.25);
  padding: 5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  max-width: 90%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  z-index: 3;
}

/* Mangalore Aerial Drone View Backdrop & Cinematic Overlay */
.footer-drone-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
  filter: saturate(1.2) contrast(1.1);
  transform: scale(1.02);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.5s ease;
}

.footer-drone-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 9, 0.82) 0%, rgba(8, 8, 9, 0.65) 50%, rgba(8, 8, 9, 0.9) 100%),
              radial-gradient(circle at 50% 30%, rgba(8, 8, 9, 0.4) 0%, rgba(8, 8, 9, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.footer-content-container {
  position: relative;
  z-index: 2;
}

/* Top Interactive Pre-Footer Strip */
.footer-top-strip {
  background: rgba(18, 18, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(244, 196, 1, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.75rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(244, 196, 1, 0.08);
}

.footer-strip-content {
  flex: 1;
}

.footer-strip-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  box-shadow: 0 0 10px var(--primary);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.6;
  }
}

.strip-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
}

.footer-strip-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.footer-strip-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer-strip-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.footer-cta-btn {
  font-size: 0.9rem;
  padding: 0.8rem 1.4rem;
  white-space: nowrap;
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Footer Main Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.15fr 1.45fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .brand-logo {
  margin-bottom: 1.25rem;
  display: inline-block;
}

.footer-brand .footer-logo-img {
  height: 80px;
  max-width: 260px;
  border-radius: 8px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 360px;
  margin-bottom: 1.25rem;
}

.footer-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d4d4d8;
}

.trust-chip i {
  color: var(--primary);
  font-size: 0.9rem;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-links a i {
  font-size: 0.8rem;
  color: var(--primary);
  opacity: 0.8;
  transition: transform var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-links a:hover i {
  opacity: 1;
  transform: translateX(2px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contact-item strong {
  color: var(--text-white);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.15rem;
  letter-spacing: 0.02em;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Footer Bottom Strip */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-copy p {
  margin-bottom: 0.25rem;
}

.footer-bottom-copy strong {
  color: var(--text-primary);
}

.footer-subtext {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.footer-legal-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-legal-links .legal-sep {
  color: var(--text-muted);
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer-bottom-tags {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.footer-bottom-tags i {
  color: var(--primary);
  font-size: 0.95rem;
}

.footer-bottom-tags a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-bottom-tags a:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .footer-top-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
  }
  .footer-strip-actions {
    width: 100%;
  }
  .footer-cta-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-top-strip {
    padding: 1.5rem;
  }
  .footer-strip-actions {
    flex-direction: column;
    width: 100%;
  }
  .footer-cta-btn {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ==========================================================================
   MODAL (Interactive Booking Dialog)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  overflow-y: auto;
}

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

.modal-card {
  background: #141416;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 580px;
  padding: 2.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 50px rgba(244, 196, 1, 0.15);
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform var(--transition-normal);
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal-backdrop.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 5;
}

.modal-close:hover {
  background: var(--primary);
  color: var(--on-primary);
}

.modal-header {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.modal-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 500px) {
  .modal-backdrop {
    padding: 0.75rem;
    align-items: center;
  }
  .modal-card {
    padding: 1.5rem 1.15rem;
    border-radius: var(--radius-lg);
    max-height: 92vh;
    max-height: 92dvh;
  }
  .modal-header {
    margin-bottom: 1rem;
    padding-right: 2.5rem;
  }
  .modal-title {
    font-size: 1.35rem;
  }
  .modal-subtitle {
    font-size: 0.82rem;
  }
  .modal-form {
    gap: 0.85rem;
  }
  .modal-form-grid-2,
  .modal-form > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  .modal-card .trip-type-tabs {
    flex-wrap: wrap;
    gap: 0.35rem;
  }
  .modal-card .trip-tab {
    padding: 0.4rem 0.75rem;
    font-size: 0.78rem;
    flex: 1;
    min-width: 80px;
    justify-content: center;
  }
}

@media (max-width: 350px) {
  .modal-backdrop {
    padding: 0.35rem;
  }
  .modal-card {
    padding: 1.15rem 0.75rem;
  }
  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
  }
  .modal-title {
    font-size: 1.15rem;
  }
  .modal-subtitle {
    font-size: 0.78rem;
  }
  .modal-card .field-input-box {
    padding: 0.6rem 0.65rem;
    gap: 0.5rem;
  }
  .modal-card .field-input-box input,
  .modal-card .field-input-box select {
    font-size: 0.82rem;
  }
}

/* ==========================================================================
   MOBILE MENU DRAWER
   ========================================================================== */

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 85vw);
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #111113;
  border-left: 1px solid var(--border-light);
  z-index: 1500;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
  overflow-y: auto;
  box-sizing: border-box;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mobile-nav-links a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

@media (max-width: 350px) {
  .mobile-nav-drawer {
    padding: 1.5rem 1rem;
    width: min(280px, 90vw);
  }
  .mobile-nav-links {
    gap: 1.15rem;
    margin-top: 1.5rem;
  }
  .mobile-nav-links a {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.25rem;
  }
  .booking-fields-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-submit-btn {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    gap: 2.5rem;
  }
  .hero-content {
    order: 1;
    padding-right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-description {
    margin: 0 auto 2rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
  .section-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 640px) {
  .booking-fields-grid {
    grid-template-columns: 1fr;
  }
  .booking-submit-btn {
    grid-column: span 1;
  }
  .services-grid,
  .routes-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .section-padding {
    padding: 3rem 0;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-title {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
    margin-bottom: 0.65rem;
  }
  .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .service-card {
    padding: 1.6rem 1.25rem;
  }
  .service-card h3 {
    font-size: 1.2rem;
  }
  .route-card {
    padding: 1.25rem 1rem;
  }
  .booking-strip-wrapper {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .booking-strip-card {
    padding: 1.25rem 1rem;
  }
  .trip-type-tabs {
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
  }
  .trip-tab {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    flex: 1;
    min-width: 80px;
    justify-content: center;
  }
  .booking-submit-btn {
    width: 100%;
    height: auto;
    min-height: 48px;
    padding: 0.75rem 1rem;
    white-space: normal;
    font-size: 0.9rem;
  }
  .site-footer {
    padding: 3.5rem 0 2rem;
  }
  .footer-top-strip {
    padding: 1.5rem 1.15rem;
    margin-bottom: 2.5rem;
    gap: 1.25rem;
  }
  .footer-strip-title {
    font-size: 1.2rem;
  }
  .footer-strip-desc {
    font-size: 0.85rem;
  }
  .footer-grid {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .footer-brand .footer-logo-img {
    height: auto;
    max-width: 200px;
  }
  .footer-brand p {
    font-size: 0.88rem;
    max-width: 100%;
  }
  .footer-contact-item {
    font-size: 0.85rem;
  }
  .footer-contact-item a {
    word-break: break-all;
    overflow-wrap: anywhere;
  }
  .footer-bottom {
    padding-top: 1.5rem;
    gap: 0.85rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 350px) {
  .section-padding {
    padding: 2.25rem 0;
  }
  .section-header {
    margin-bottom: 1.5rem;
  }
  .section-eyebrow {
    font-size: 0.72rem;
    margin-bottom: 0.5rem;
  }
  .section-title {
    font-size: clamp(1.15rem, 5.2vw, 1.4rem);
    margin-bottom: 0.5rem;
  }
  .section-subtitle {
    font-size: 0.8rem;
  }
  .service-card {
    padding: 1.15rem 0.8rem;
    border-radius: var(--radius-md);
  }
  .service-card h3 {
    font-size: 1.05rem;
  }
  .service-card p {
    font-size: 0.82rem;
  }
  .service-icon-box {
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    border-radius: 8px;
  }
  .booking-strip-wrapper {
    margin-top: 1.25rem;
    margin-bottom: 2rem;
  }
  .booking-strip-card {
    padding: 0.85rem 0.6rem;
    border-radius: var(--radius-md);
  }
  .trip-type-tabs {
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
  }
  .trip-tab {
    padding: 0.35rem 0.45rem;
    font-size: 0.7rem;
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    justify-content: center;
    text-align: center;
  }
  .trip-tab:last-child {
    flex: 1 1 100%;
  }
  .booking-strip-card .field-input-box {
    padding: 0.5rem 0.55rem;
    gap: 0.45rem;
  }
  .booking-strip-card .field-input-box input,
  .booking-strip-card .field-input-box select {
    font-size: 0.78rem;
  }
  .booking-submit-btn {
    min-height: 42px;
    padding: 0.6rem 0.75rem;
    font-size: 0.82rem;
  }
  .site-footer {
    padding: 2.5rem 0 1.5rem;
  }
  .footer-top-strip {
    padding: 1rem 0.75rem;
    margin-bottom: 1.75rem;
    border-radius: var(--radius-md);
    gap: 1rem;
  }
  .footer-strip-title {
    font-size: 1.02rem;
  }
  .footer-strip-desc {
    font-size: 0.78rem;
  }
  .footer-strip-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  .footer-cta-btn {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
    justify-content: center;
  }
  .footer-grid {
    gap: 1.75rem;
    margin-bottom: 1.75rem;
  }
  .footer-brand .footer-logo-img {
    max-width: 130px;
    height: auto;
  }
  .footer-brand p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  .footer-trust-chips {
    gap: 0.25rem;
    margin-bottom: 1rem;
  }
  .trust-chip {
    font-size: 0.68rem;
    padding: 0.2rem 0.4rem;
  }
  .footer-col h4 {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }
  .footer-links {
    gap: 0.65rem;
  }
  .footer-links a {
    font-size: 0.78rem;
  }
  .footer-contact-item {
    font-size: 0.78rem;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
  }
  .footer-bottom {
    padding-top: 1.25rem;
    font-size: 0.75rem;
    gap: 0.65rem;
  }
}

@media (max-width: 280px) {
  .section-padding {
    padding: 1.75rem 0;
  }
  .trip-tab {
    flex: 1 1 100%;
  }
  .booking-strip-card {
    padding: 0.75rem 0.45rem;
  }
  .footer-top-strip {
    padding: 0.85rem 0.5rem;
  }
  .footer-brand .footer-logo-img {
    max-width: 110px;
  }
}

@media (max-width: 240px) {
  .section-title {
    font-size: 1.1rem;
  }
  .booking-strip-card {
    padding: 0.65rem 0.35rem;
  }
  .footer-top-strip {
    padding: 0.75rem 0.45rem;
  }
  .footer-brand .footer-logo-img {
    max-width: 95px;
  }
}

/* ==========================================================================
   FLOATING QUICK ACTIONS (WhatsApp & Call Buttons - Bottom Right)
   ========================================================================== */

.floating-quick-actions {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom));
  right: max(24px, env(safe-area-inset-right));
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  pointer-events: auto;
}

.floating-btn {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.65rem;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, filter 0.28s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* WhatsApp Floating Button */
.floating-whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 3px 8px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.floating-whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), 0 4px 10px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

/* Call Hotline Floating Button */
.floating-call-btn {
  background: linear-gradient(135deg, #F4C401 0%, #d4a700 100%);
  color: #080809 !important;
  box-shadow: 0 8px 24px rgba(244, 196, 1, 0.45), 0 3px 8px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.floating-call-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(244, 196, 1, 0.65), 0 4px 10px rgba(0, 0, 0, 0.5);
  color: #080809;
}

.floating-btn:active {
  transform: translateY(0) scale(0.96);
}

/* Animated Radiant Pulse Rings */
.floating-pulse-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: floatRingPulse 2.6s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.floating-whatsapp-btn .floating-pulse-ring {
  border: 2px solid #25D366;
  animation-delay: 0s;
}

.floating-call-btn .floating-pulse-ring {
  border: 2px solid #F4C401;
  animation-delay: 1.3s;
}

@keyframes floatRingPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.85;
  }
  60% {
    transform: scale(1.45);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Tooltip Badge on Hover */
.floating-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(14, 14, 16, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.floating-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: rgba(14, 14, 16, 0.94);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-btn:hover .floating-tooltip,
.floating-btn:focus-visible .floating-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Mobile Responsiveness for Floating Actions */
@media (max-width: 768px) {
  .floating-quick-actions {
    bottom: max(18px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
    gap: 10px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
  }
}

@media (max-width: 400px) {
  .floating-quick-actions {
    bottom: max(14px, env(safe-area-inset-bottom));
    right: max(12px, env(safe-area-inset-right));
    gap: 8px;
  }
  .floating-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
  .floating-tooltip {
    display: none; /* Hide tooltips on extra small screens */
  }
}

