/* Custom Styles */
:root {
  --brand-primary: #6d28d9;
  --brand-indigo: #4338ca;
  --footer-dark: rgb(26, 29, 46);
}

.bg-footer-custom {
  background-color: var(--footer-dark);
}

/* Gradient Button & Logo */
.bg-gradient-brand {
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-indigo)
  );
  border: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.bg-gradient-brand:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: white;
}

/* Form Styling */
.footer-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white !important;
  border-radius: 12px 0 0 12px !important;
}

.footer-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--brand-primary);
  box-shadow: none;
}

.footer-input::placeholder {
  color: #9ca3af;
}

.btn-subscribe {
  border-radius: 0 12px 12px 0 !important;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Social Icons */
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #9ca3af;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--brand-primary);
  color: white;
  transform: translateY(-3px);
}

/* CTA Gradient & Shapes */
.cta-card {
  background: linear-gradient(135deg, #6d28d9 0%, #4338ca 50%, #5b21b6 100%);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Decorative Glows */
.glow-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}

.glow-1 {
  width: 250px;
  height: 250px;
  top: -100px;
  right: -50px;
}

.glow-2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: -60px;
}

/* Buttons & Badges */
.btn-glass {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white !important;
  transition: all 0.3s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.3);
}

.badge-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-tag {
  letter-spacing: 1px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 12px;
}

/* Gradient Text */
.text-gradient-brand {
  background: linear-gradient(135deg, #6d28d9, #4338ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom Accordion Styling */
.faq-accordion .accordion-item {
  border: 1px solid #f3f4f6;
  /* gray-100 */
  border-radius: 1.25rem !important;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  border-color: #e5e7eb;
}

/* Active State */
.faq-accordion .accordion-item:has(.show) {
  border-color: #ddd6fe;
  /* violet-200 */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-accordion .accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  color: #111827;
  box-shadow: none;
  background-color: white;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #7c3aed;
  /* violet-600 */
  background-color: white;
}

/* Custom Arrow */
.faq-accordion .accordion-button::after {
  background-color: #f3f4f6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236d28d9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-size: 1.25rem;
  border-radius: 8px;
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s ease;
}

/* Card Lift & Shadow */
.testimonial-card {
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #ddd6fe;
}

/* Quote Icon Styling */
.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.15;
  color: #7c3aed;
}

/* Custom Dots for Carousel */
.custom-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1d5db;
  border: none;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.custom-indicators .active {
  width: 30px;
  border-radius: 5px;
  background: linear-gradient(to right, #7c3aed, #4f46e5);
}

/* Gradient Text */
.text-gradient-brand {
  background: linear-gradient(to right, #7c3aed, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Feature Card Hover Effect */
.feature-card {
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Custom Primary Button */
.btn-brand {
  background: linear-gradient(to right, #7c3aed, #4f46e5);
  color: white;
  border: none;
  box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.3);
}

.btn-brand:hover {
  background: linear-gradient(to right, #6d28d9, #4338ca);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 20px 25px -5px rgba(124, 58, 237, 0.4);
}

/* Section Heading Gradient */
.text-gradient-brand {
  background: linear-gradient(to right, #7c3aed, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* City Card Base */
.city-card {
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
  /* gray-50 */
  border: 1px solid #f1f3f5;
  transition: all 0.5s ease;
  z-index: 1;
}

/* The Gradient Overlay */
.city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

/* Hover States */
.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.city-card:hover::before {
  opacity: 1;
}

.city-card:hover h3,
.city-card:hover p,
.city-card:hover .badge {
  color: white !important;
}

.city-card:hover .icon-box {
  background: rgba(255, 255, 255, 0.2) !important;
}

/* Individual City Gradients */
.city-sf::before {
  background: linear-gradient(to bottom right, #7c3aed, #4f46e5);
}

.city-ny::before {
  background: linear-gradient(to bottom right, #6366f1, #3b82f6);
}

.city-la::before {
  background: linear-gradient(to bottom right, #06b6d4, #14b8a6);
}

.city-chi::before {
  background: linear-gradient(to bottom right, #10b981, #22c55e);
}

.city-miami::before {
  background: linear-gradient(to bottom right, #f59e0b, #f97316);
}

.city-sea::before {
  background: linear-gradient(to bottom right, #f43f5e, #ec4899);
}

.city-aus::before {
  background: linear-gradient(to bottom right, #a855f7, #8b5cf6);
}

.city-bos::before {
  background: linear-gradient(to bottom right, #3b82f6, #6366f1);
}

/* Premium Dark Background */
.bg-app-gradient {
  background: radial-gradient(circle at 20% 20%, #252840 0%, #1a1d2e 100%);
  position: relative;
  overflow: hidden;
}

/* Glowing Background Orbs */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Text Gradient */
.text-gradient-cyan {
  background: linear-gradient(to right, #a78bfa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Safety Gradient Text & Backgrounds */
.text-gradient-emerald {
  background: linear-gradient(to right, #10b981, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-emerald-soft {
  background-color: #ecfdf5;
  /* Tailwind emerald-50 */
}

/* Card Hover Animation */
.safety-card {
  transition: all 0.3s ease-in-out;
  border: 1px solid #f3f4f6;
}

.safety-card:hover {
  transform: translateY(-5px);
  border-color: #a7f3d0 !important;
  /* emerald-200 */
  box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.1);
}

/* Progress Bar Customization */
.progress-safety {
  height: 12px;
  background-color: #d1fae5;
}

.progress-safety .progress-bar {
  background: linear-gradient(to right, #10b981, #14b8a6);
}

/* Feature Card Styles */
.feature-card {
  transition: all 0.5s ease;
  border: 1px solid #f8f9fa;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

/* Icon Container Scaling */
.icon-box {
  transition: transform 0.3s ease;
}

.feature-card:hover .icon-box {
  transform: scale(1.1);
}

/* Specific Border Hover Colors */
.border-violet-hover:hover {
  border-color: #c4b5fd !important;
}

.border-emerald-hover:hover {
  border-color: #a7f3d0 !important;
}

.border-amber-hover:hover {
  border-color: #fde68a !important;
}

.border-indigo-hover:hover {
  border-color: #c7d2fe !important;
}

.border-cyan-hover:hover {
  border-color: #a5f3fc !important;
}

.border-rose-hover:hover {
  border-color: #fecdd3 !important;
}

/* Text Gradient */
.text-gradient-violet {
  background: linear-gradient(to right, #7c3aed, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gradient Text and Buttons */
.text-gradient-indigo {
  background: linear-gradient(to right, #7c3aed, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-indigo {
  background: linear-gradient(to right, #7c3aed, #4f46e5);
}

/* Custom Tab Switcher */
.fleet-nav {
  background: #ffffff;
  padding: 6px;
  border-radius: 1rem;
  border: 1px solid #f1f3f5;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.fleet-nav .nav-link {
  border-radius: 0.75rem;
  padding: 10px 24px;
  color: #4b5563;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.fleet-nav .nav-link.active {
  background: linear-gradient(to right, #7c3aed, #4f46e5);
  color: white !important;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* Price Badge */
.price-badge {
  position: absolute;
  bottom: -15px;
  left: 30px;
  background: linear-gradient(to right, #8b5cf6, #9333ea);
  color: white;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.3);
}

/* Vehicle Image Container */
.vehicle-container {
  background: #ffffff;
  border-radius: 2rem;
  padding: 3rem;
  border: 1px solid #f3f4f6;
  transition: transform 0.5s ease;
}

.vehicle-container:hover img {
  transform: scale(1.05);
}

/* Connector Line (Desktop Only) */
@media (min-width: 992px) {
  .stepper-line {
    position: absolute;
    top: 25%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, #c4b5fd, #a5f3fc, #a7f3d0);
    z-index: 0;
  }
}

/* Card & Step Number Styling */
.step-card {
  transition: all 0.3s ease;
  z-index: 1;
}

.step-card:hover {
  transform: translateY(-8px);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Icon Gradients */
.bg-gradient-violet {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.bg-gradient-indigo {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.bg-gradient-cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.bg-gradient-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
}

/* Stat Card Hover Effect */
.stat-card {
  transition: all 0.5s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
}

/* Custom Icon Boxes */
.icon-shape {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  margin: 0 auto 1.25rem;
}

/* Hero Background & Overlays */
.hero-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #1a1d2e;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 29, 46, 0.95),
    rgba(26, 29, 46, 0.8),
    rgba(26, 29, 46, 0.5)
  );
  z-index: 1;
}

/* Glassmorphism & Floating Cards */
/* .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1.5rem;
        } */

/* Pulse Blobs */
.pulse-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: pulse-animation 4s infinite ease-in-out;
}

@keyframes pulse-animation {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Curve SVG at bottom */
.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 10;
}

/* Glassmorphism Effect */
/* .navbar-glass {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        } */

/* Nav Link Hover/Active */
.nav-link-custom {
  color: #4b5563;
  /* gray-600 */
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.nav-link-custom:hover {
  color: #7c3aed !important;
  /* violet-600 */
  background-color: #f9fafb;
}

.nav-link-custom.active {
  color: #7c3aed !important;
  background-color: #f5f3ff !important;
  /* violet-50 */
}

/* Logo Icon Gradient */
.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  z-index: 1050;
  /* Above nav and other elements */
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.3);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.back-to-top.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #6d28d9, #4338ca);
  box-shadow: 0 10px 20px -3px rgba(124, 58, 237, 0.5);
  transform: translateY(-4px);
}

/* Dark Glassmorphism for floating cards */
.glass-card-dark {
  background: rgba(15, 23, 42, 0.85);
  /* Slate-900 with alpha */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Image Hover Zoom effect */
.hover-zoom {
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.hover-zoom:hover {
  transform: scale(1.08);
}

/* Extra Shadow depth for production feel */
.shadow-xl {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

/* Tracking tighter for display fonts */
.tracking-wider {
  letter-spacing: 0.05em;
}

/* Ensuring stats look premium */
.text-gradient-indigo {
  background: linear-gradient(to right, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 1. Enhanced Glassmorphism */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

/* 2. Professional Gradient Text */
.text-gradient-indigo {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 3. Interactive Feature Cards */
.feature-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* 4. The Hero Pulse Animation */

/* 5. Custom Navbar Scroll State */
.navbar-glass {
  transition:
    background 0.3s ease,
    padding 0.3s ease;
}

.fleet-nav .nav-link {
  color: #64748b;
  border-radius: 12px;
  padding: 10px 24px;
  transition: 0.3s;
}

.fleet-nav .nav-link.active {
  background-color: #8b5cf6 !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

/* Initial state: Transparent */
.navbar-glass {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  padding-top: 1.5rem;
  /* Breathe a bit more at the top */
}

/* Scrolled state: White/Glass */
.navbar-glass.scrolled {
  background-color: rgba(255, 255, 255, 0.9) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Adjust nav link colors based on scroll */
.navbar-glass .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  transition: color 0.3s ease;
}

.navbar-glass.scrolled .nav-link {
  color: #1e293b !important;
  /* Dark text when bg is white */
}

/* Keep the 'Active' link or 'Testimonials' primary color visible */
.navbar-glass.scrolled .nav-link.text-primary {
  color: #8b5cf6 !important;
}

/* Brand text color transition */
.navbar-glass .navbar-brand span {
  color: white !important;
}

.navbar-glass.scrolled .navbar-brand span {
  color: #000 !important;
}

.service-image-wrapper {
  position: relative;
  border: 8px solid white;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25);
}

.bg-gradient-to-t {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
}

.service-nav .nav-link {
  color: #64748b;
  border-radius: 10px !important;
  transition: 0.3s;
}

.service-nav .nav-link.active {
  background: #8b5cf6 !important;
  color: white !important;
}

/* Feature Section Styling */
.text-violet {
  color: #8b5cf6;
}
.bg-violet {
  background-color: rgba(139, 92, 246, 0.1);
}
.text-gradient-violet {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Color-specific hover borders */
.border-violet-hover:hover {
  border-color: #8b5cf6 !important;
}
.border-emerald-hover:hover {
  border-color: #10b981 !important;
}
.border-amber-hover:hover {
  border-color: #f59e0b !important;
}
.border-indigo-hover:hover {
  border-color: #6366f1 !important;
}
.border-cyan-hover:hover {
  border-color: #06b6d4 !important;
}
.border-rose-hover:hover {
  border-color: #f43f5e !important;
}

/* Icon Box Animation on hover */
.feature-card:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
  transition: transform 0.3s ease;
}


/* Stepper Line Logic */
.stepper-line {
    position: absolute;
    top: 90px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(to right, #e2e8f0, #e2e8f0 10px, transparent 10px, transparent 20px);
    z-index: 1;
}

/* Step Number Styling */
.step-number {
    position: absolute;
    top: -10px;
    right: -15px;
    background: #f1f5f9;
    color: #6366f1;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Step Card Hover */
.step-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05) !important;
}

/* Gradient Backgrounds for Icons */
.bg-gradient-violet { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.bg-gradient-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.bg-gradient-cyan   { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.bg-gradient-emerald{ background: linear-gradient(135deg, #10b981, #059669); }



/* Safety Section Specials */
.bg-emerald-soft { background-color: rgba(16, 185, 129, 0.1); }

.text-gradient-emerald {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-emerald-gradient {
    background: linear-gradient(135deg, #059669, #10b981);
}

.progress-safety {
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

/* Progress Bar Shine Effect */
.progress-bar {
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background-image: linear-gradient(90deg, rgba(255,255,255,0) 0, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    animation: progress-shimmer 2s infinite;
}

@keyframes progress-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.safety-card:hover {
    border-color: #10b981 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1) !important;
}


/* Section Background */
.bg-app-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #252840 100%);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Phone UI Mockup */
.phone-mockup {
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 40px;
    padding: 10px;
    border: 4px solid #334155;
    position: relative;
    z-index: 2;
}

.phone-screen {
    background: #fff;
    height: 100%;
    width: 100%;
}

/* App Button Hover */
.app-btn {
    transition: all 0.3s ease;
}
.app-btn:hover {
    transform: translateY(-5px);
    background: #f8fafc !important;
}

/* Color Helpers */
.bg-indigo-soft { background-color: rgba(99, 102, 241, 0.1); }
.text-indigo { color: #6366f1; }
.btn-indigo { background: #6366f1; color: white; border: none; }
.btn-indigo:hover { background: #4f46e5; color: white; transform: translateY(-2px); }
.shadow-indigo { box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3); }

/* Feature Card Hover Effect */
.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
    background-color: #ffffff !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05) !important;
}

/* Typography Gradient */
.text-gradient-indigo {
    background: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.extra-small { font-size: 11px; }
.grayscale { filter: grayscale(100%); transition: 0.3s; }
.testimonial-card:hover .grayscale { filter: grayscale(0%); }

/* Custom Carousel Indicators */
.custom-indicators button {
    width: 30px !important;
    height: 4px !important;
    border-radius: 2px !important;
    background-color: #dee2e6 !important;
    border: none !important;
    transition: all 0.3s ease;
}

.custom-indicators button.active {
    background-color: #6366f1 !important;
    width: 50px !important;
}

/* Hover lift for cards */
.hover-lift {
    transition: transform 0.2s ease-in-out;
}
.hover-lift:hover {
    transform: translateY(-3px);
}

.testimonial-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.testimonial-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}


/* FAQ Accordion Styling */
.faq-accordion .accordion-item {
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button {
    background-color: #ffffff;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #6366f1; /* Indigo brand color */
    background-color: #ffffff;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(99, 102, 241, 0.1);
}

.faq-accordion .accordion-button::after {
    background-size: 1rem;
    transition: transform 0.3s ease;
}

/* Custom Indigo Border for the button */
.btn-outline-indigo {
    color: #6366f1;
    border: 2px solid #6366f1;
    transition: all 0.3s;
}

.btn-outline-indigo:hover {
    background-color: #6366f1;
    color: white;
}


/* CTA Specific Styles */
.text-indigo {
    color: #4f46e5 !important;
}

.btn-white {
    background-color: #ffffff;
    color: #4f46e5;
    border: none;
}

.btn-white:hover {
    background-color: #f8fafc;
    color: #4338ca;
    transform: translateY(-3px);
}

.badge-glass {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.promo-tag {
    letter-spacing: 2px;
    background: rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.bg-dark { background-color: #0f172a !important; } /* Modern Navy-Black */
.text-indigo { color: #818cf8 !important; }
.btn-indigo { background-color: #6366f1; color: white; border: none; }
.btn-indigo:hover { background-color: #4f46e5; color: white; }

/* Custom Footer Links */
.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: #818cf8;
    padding-left: 4px;
}

.custom-placeholder::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Social Icons */
.social-icon {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.social-icon:hover {
    color: #ffffff;
}

.social-icon i {
    width: 20px;
    height: 20px;
}



/* Typography & General Layout */
body {
    font-family: 'Inter', sans-serif; /* Recommended for readability */
    color: #334155;
    line-height: 1.6;
}

.text-indigo {
    color: #6366f1 !important;
}

.bg-indigo {
    background-color: #6366f1 !important;
}

/* Custom Card Styling */
.card.shadow-sm {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.card.shadow-sm:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05) !important;
}

/* List Group Refinement */
.list-group-item {
    background-color: transparent;
    color: #475569;
}

.list-group-item strong {
    color: #1e293b;
    display: block;
    margin-bottom: 0.25rem;
}

/* Responsive Grid Adjustments */
.bg-light.rounded-3 {
    border: 1px solid rgba(99, 102, 241, 0.08);
}

/* Specific to the Privacy Page */
.leading-relaxed {
    line-height: 1.8;
}

.opacity-25 {
    opacity: 0.25;
}

/* Button & Link Effects */
.btn-light.text-indigo {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-light.text-indigo:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Lucide Icon Alignment */
i[data-lucide] {
    vertical-align: middle;
    stroke-width: 2.5px;
    width: 20px;
    height: 20px;
}

/* Print Styles - Crucial for Legal Pages */
@media print {
    .bg-light, .card {
        background-color: white !important;
        box-shadow: none !important;
        border: none !important;
    }
    .btn, .text-center.bg-indigo {
        display: none !important;
    }
    body {
        font-size: 12pt;
    }
}


/* Terms & Conditions Specific */
.accordion-flush .py-4 {
    border-color: #f1f5f9 !important;
}

.badge.border {
    border-color: #e2e8f0 !important;
    font-size: 0.85rem;
}

.border-indigo {
    border-color: #6366f1 !important;
}

/* Make lists look professional */
ul.text-secondary {
    padding-left: 1.2rem;
}

ul.text-secondary li::marker {
    color: #6366f1;
}

/* Summary Box Glow */
.alert.bg-light {
    border: 1px solid rgba(99, 102, 241, 0.1) !important;
    background: linear-gradient(to right, #f8fafc, #ffffff) !important;
}


/* Safety Icons & Accents */
.text-emerald-600 { color: #059669 !important; }
.bg-emerald-100 { background-color: #d1fae5 !important; }
.text-rose-600 { color: #e11d48 !important; }
.bg-rose-100 { background-color: #ffe4e6 !important; }

/* Icon Box Sizing */
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }

/* Custom Badge/Alert Style */
.rounded-5 { border-radius: 2rem !important; }

/* Feature Icons in List */
.flex-shrink-0.text-indigo i {
    width: 24px;
    height: 24px;
    stroke-width: 2px;
}

/* Specific to Mountain Warning Box */
.border-warning {
    border-color: #f59e0b !important;
}


/* Card & Badge Customization */
.badge {
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.5em 1em;
}

.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}

/* Table Refinement */
.table thead th {
    border-bottom: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
}

.table tbody td {
    vertical-align: middle;
    color: #334155;
}

/* Timeline/Step Styling */
.rounded-5 {
    border-radius: 2rem !important;
}

/* Lucide Icons */
i[data-lucide] {
    stroke-width: 2.5px;
    width: 20px;
    height: 20px;
}

/* =============================================
   INNER PAGE HERO (About, Services, etc.)
   ============================================= */
.inner-page-hero {
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
}

/* Ensure inner pages have proper top padding for fixed navbar */
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 60%, #0f172a 100%);
    padding: 130px 0 60px;
    color: white;
    text-align: center;
}

/* =============================================
   BOOKING WIDGET
   ============================================= */
.booking-widget {
    border: 1px solid rgba(0,0,0,0.06);
    animation: slideInRight 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

.booking-type-tabs .booking-tab {
    color: #64748b;
    background: transparent;
    border: none;
    transition: all 0.2s ease;
    font-size: 13px;
}

.booking-type-tabs .booking-tab.active {
    background: white;
    color: #4f46e5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.booking-input-group {
    border: 1.5px solid transparent !important;
    transition: border-color 0.2s ease;
}

.booking-input-group:focus-within {
    border-color: #c4b5fd !important;
    background: white !important;
}

.booking-input-group input::placeholder { color: #94a3b8; }
.booking-input-group input:focus { box-shadow: none; }

.booking-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
}

.booking-connector {
    width: 2px;
    height: 16px;
    background: repeating-linear-gradient(
        to bottom,
        #cbd5e1, #cbd5e1 4px,
        transparent 4px, transparent 8px
    );
    margin-left: 16px;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar .col-6 {
    border-right: 1px solid #f1f5f9;
}

.stats-bar .col-6:last-child,
.stats-bar .col-md-3:last-child {
    border-right: none;
}

@media (max-width: 767px) {
    .stats-bar .col-6:nth-child(2n) { border-right: none; }
    .stats-bar .col-6:nth-child(1),
    .stats-bar .col-6:nth-child(2) { border-bottom: 1px solid #f1f5f9; }
}

/* =============================================
   POPULAR ROUTES SECTION
   ============================================= */
.route-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.route-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(79, 70, 229, 0.12) !important;
    border-color: #c4b5fd !important;
}

.route-icon {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-card-cta {
    cursor: pointer;
    transition: all 0.3s ease;
}

.route-card-cta:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(79, 70, 229, 0.3) !important;
    filter: brightness(1.05);
}

/* =============================================
   CAROUSEL DOTS
   ============================================= */
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-dot.active,
.carousel-dot[aria-current="true"] {
    width: 28px;
    border-radius: 4px;
    background: linear-gradient(to right, #7c3aed, #4f46e5);
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 1049;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    animation: waBounce 0.6s 2s ease-out both;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

@keyframes waBounce {
    0% { opacity: 0; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1); }
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #25d366;
    animation: waPulse 2.5s ease-out 3s infinite;
    z-index: -1;
}

@keyframes waPulse {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* =============================================
   SCROLL-REVEAL ANIMATIONS
   ============================================= */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for grid children */
.row .col:nth-child(1) .reveal-on-scroll,
.row .col-md-3:nth-child(1) .reveal-on-scroll { transition-delay: 0s; }
.row .col:nth-child(2) .reveal-on-scroll,
.row .col-md-3:nth-child(2) .reveal-on-scroll { transition-delay: 0.08s; }
.row .col:nth-child(3) .reveal-on-scroll,
.row .col-md-3:nth-child(3) .reveal-on-scroll { transition-delay: 0.16s; }
.row .col:nth-child(4) .reveal-on-scroll,
.row .col-md-3:nth-child(4) .reveal-on-scroll { transition-delay: 0.24s; }

/* =============================================
   HERO ENHANCEMENTS
   ============================================= */
.hero-wrapper {
    padding-bottom: 60px;
}

@media (max-width: 991px) {
    .hero-wrapper {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 80px;
    }
}

/* =============================================
   GENERAL SPACING UTILITY
   ============================================= */
.py-lg-7 { padding-top: 5rem !important; padding-bottom: 5rem !important; }

@media (min-width: 992px) {
    .py-lg-7 { padding-top: 7rem !important; padding-bottom: 7rem !important; }
}

/* =============================================
   TESTIMONIAL IMPROVEMENTS
   ============================================= */
.testimonial-card .lh-lg { line-height: 1.8; }

/* Fill star icon — Lucide SVGs need fill on the path */
.fill-warning svg, .fill-warning { fill: #ffc107; }

/* =============================================
   MOBILE BOOKING SECTION
   ============================================= */
@media (max-width: 991px) {
    .booking-widget {
        display: none !important;
    }
}

/* Mobile quick-book strip */
.mobile-cta-strip {
    background: linear-gradient(to right, #7c3aed, #4f46e5);
    padding: 16px;
}

/* =============================================
   NAVBAR IMPROVEMENTS
   ============================================= */
.navbar-glass .btn-outline-success {
    border-color: #10b981;
    color: #10b981;
}

.navbar-glass.scrolled .btn-outline-success {
    border-color: #059669;
    color: #059669;
}

.navbar-glass.scrolled .btn-outline-success:hover {
    background: #059669;
    color: white;
}

/* Ensure nav links are white initially on hero */
.home-top-nav:not(.scrolled) .btn-outline-success {
    border-color: rgba(255,255,255,0.6);
    color: rgba(255,255,255,0.9);
}

.home-top-nav:not(.scrolled) .btn-outline-success:hover {
    background: rgba(255,255,255,0.15);
    color: white;
}