:root {
  --primary-color: #ff6b6b;
  --primary-hover: #fa5252;
}

/* Primary Utility Classes */
.text-primary-custom {
  color: var(--primary-color) !important;
}

.bg-primary-custom {
  background-color: var(--primary-color) !important;
  border: none;
}

.btn-primary-custom {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover) !important;
}

.btn-green {
  background-color: #10b981;
  color: #fff;
  font-weight: 600;
}

.btn-green:hover {
  background-color: #059669;
  color: #fff;
}
.transition-all {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Navbar Base Styles */
.custom-navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}


/* Phone Text Normal & Hover State */
.custom-navbar .phone-link {
  color: #ffffff;
  transition: color 0.2s ease;
}

/* Hover Effects on Menu Items & Phone Link */
.navbar-nav .nav-link {
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.phone-link:hover {
  color: var(--primary-color) !important;
}

/* Icon Color inside Phone Link on Hover */
.custom-navbar .phone-link:hover .phone-icon {
  color: var(--primary-color) !important;
}

/* Scroll Active State Override */
.custom-navbar.navbar-light .phone-link {
  color: #0f172a; /* Dark text on white navbar */
}

.custom-navbar.scrolled .phone-link:hover {
  color: var(--primary-color) !important;
}
/* Hero Section Styling with Dark Overlay */
.hero-section {
  /*background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), */
  /*            url('/assets/images/hero.webp') no-repeat center center/cover;*/
  min-height: 100vh;
  color: #ffffff;
}

/* Offer Badge */
.offer-badge {
  background-color: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

/* Promo Card */
.promo-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 16px;
}

.promo-card .btn-dark-custom {
  background-color: #0f172a;
  color: #ffffff;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}
.promo-card .btn-dark-custom:hover {
  background-color: #1e293b;
}
/* Base Card & Inputs */
.search-card {
  max-width: 1100px;
  background-color: #ffffff;
}

.form-label-custom {
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

.input-custom {
  font-size: 0.85rem;
}

/* Hero Background Image with Overlay */
.booking-bg {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), 
              url('/assets/images/cta-banner.webp') no-repeat center center/cover;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Popular Destinations Badge */
.badge-light-danger {
  background-color: #ffe5e5;
  color: #ff6b6b;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  font-weight: 700;
}

/* Location Cards */
.location-card {
  height: 200px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Airport Code Badge (LAX, JFK, etc.) */
.airport-badge {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
}

/* Gradient Backgrounds */
.bg-grad-orange { background: linear-gradient(135deg, #f07b3f 0%, #ea5455 100%); }
.bg-grad-blue { background: linear-gradient(135deg, #5b86e5 0%, #36d1dc 100%); }
.bg-grad-teal { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.bg-grad-purple { background: linear-gradient(135deg, #b92b27 0%, #1565c0 100%); } /* Alternative: linear-gradient(135deg, #c471ed 0%, #f64f59 100%) */
.bg-grad-purple-alt { background: linear-gradient(135deg, #c04848 0%, #480048 100%); }
.bg-grad-pink-purple { background: linear-gradient(135deg, #da70d6 0%, #9370db 100%); }
.bg-grad-green { background: linear-gradient(135deg, #2af598 0%, #009efd 100%); }
.bg-grad-amber { background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%); }
.bg-grad-coral { background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%); }
.bg-grad-sky { background: linear-gradient(135deg, #3a7bd5 0%, #3aa17e 100%); }

/* Accurate Colors Matching Image */
.bg-card-lax { background: linear-gradient(135deg, #e65c40 0%, #dd4b39 100%); }
.bg-card-jfk { background: linear-gradient(135deg, #5381ed 0%, #4a71d8 100%); }
.bg-card-mia { background: linear-gradient(135deg, #26c6da 0%, #00acc1 100%); }
.bg-card-las { background: linear-gradient(135deg, #ba68c8 0%, #ab47bc 100%); }
.bg-card-sfo { background: linear-gradient(135deg, #26a69a 0%, #2e7d32 100%); }
.bg-card-ord { background: linear-gradient(135deg, #f57c00 0%, #e65100 100%); }
.bg-card-mco { background: linear-gradient(135deg, #e57373 0%, #e53935 100%); }
.bg-card-den { background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 100%); }


/* Fleet Badge Top Header */
.badge-fleet {
  background-color: #ffe5e5;
  color: #ff6b6b;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  font-weight: 700;
}

/* Category Filter Buttons */
.fleet-filter-btn {
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  color: #475569;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.fleet-filter-btn:hover,
.fleet-filter-btn.active {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.fleet-filter-btn .count {
  opacity: 0.6;
  font-size: 0.75rem;
}

/* Vehicle Cards */
.vehicle-card {
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* Image Container Badges */
.vehicle-img-wrap {
  position: relative;
  background-color: #f8fafc;
}

.vehicle-img-wrap img {
  object-fit: cover;
  height: 180px;
  width: 100%;
}

.tag-badge {
  position: absolute;
  top: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

.tag-economy { background: #e6f4ea; color: #1e7e34; left: 12px; }
.tag-van { background: #fef3c7; color: #d97706; left: 12px; }
.tag-suv { background: #e0f2fe; color: #0284c7; left: 12px; }
.tag-luxury { background: #f3e8ff; color: #9333ea; left: 12px; }
.tag-gps { background: rgba(255, 255, 255, 0.9); color: #475569; right: 12px; }

/* Specs Box Inside Card */
.specs-box {
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 10px 6px;
}

.spec-item {
  text-align: center;
  border-right: 1px solid #e2e8f0; /* CSS me border-right use hoga */
}

.spec-item:last-child {
  border-right: none; /* Last column ka border remove */
}

.spec-item i {
  font-size: 0.85rem;
  color: #64748b;
  display: block;
}

.spec-item span {
  font-size: 0.7rem;
  color: #475569;
  font-weight: 500;
}

/* Feature Pills */
.feature-pill {
  font-size: 0.68rem;
  background-color: #f1f5f9;
  color: #64748b;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}
.feature-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06) !important;
  }

  .bg-dark-blue {
    background-color: #203047; /* Exact matching deep navy color */
  }

  /* Optional icon color customization if needed */
  .bg-danger-subtle {
    background-color: #fff1f2 !important;
  }


    /* Badge styling */
  .bg-danger-subtle {
    background-color: #fff1f2 !important;
  }


  /* Custom Step Icon Box */
  .step-icon-box {
    background-color: #f8fafc !important;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .step-item:hover .step-icon-box {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
  }

  /* Desktop Connecting Dashed Arrow Positioning */
  .step-arrow {
    position: absolute;
    top: 30px;
    right: -50px;
    width: 100px;
    z-index: 1;
    pointer-events: none;
  }
    .custom-faq-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    transition: all 0.2s ease;
  }
  
  /* Active Card Highlight Styling */
  .custom-faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border: 1px solid rgba(244, 63, 94, 0.2) !important;
    box-shadow: 0 10px 25px rgba(244, 63, 94, 0.05) !important;
  }

  /* Accordion Button Customization */
  .custom-faq-accordion .accordion-button {
    background-color: transparent !important;
    font-size: 0.95rem;
  }

  .custom-faq-accordion .accordion-button:not(.collapsed) {
    color: #f43f5e !important; /* Soft Red Active Text */
  }

  /* Replacing Default Arrow Icon with Soft Red Chevron */
  .custom-faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c757d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.2s ease-in-out;
  }

  .custom-faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f43f5e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }

  /* Deep Blue Background */
  .bg-dark-blue {
    background-color: #202d42 !important;
  }

  /* Right-side soft radial gradient for exact depth effect */
  .cta-banner-card {
    background: linear-gradient(135deg, #1e293b 0%, #29384d 100%);
  }

  /* Primary Soft Red / Coral Button */
  .btn-coral-custom {
    background-color: #f43f5e !important;
    border-color: #f43f5e !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.35);
    transition: all 0.2s ease-in-out;
  }

  .btn-coral-custom:hover {
    background-color: #e11d48 !important;
    border-color: #e11d48 !important;
    box-shadow: 0 10px 25px rgba(244, 63, 94, 0.45);
    transform: translateY(-2px);
  }

  /* Glass / Outlined Light Button */
  .btn-outline-light-custom {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.2s ease-in-out;
  }

  .btn-outline-light-custom:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-2px);
  }

    /* Deep Dark Background matching screenshot */
  .bg-dark-navy {
    background-color: #17202e !important;
  }

  /* Newsletter Box Outer Border and Glow */
  .newsletter-wrapper {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Form Input Styling */
  .form-control-dark {
    background-color: #243042 !important;
    color: #ffffff !important;
  }

  .form-control-dark::placeholder {
    color: #94a3b8 !important;
    font-size: 0.875rem;
  }

  /* Brand & Accents */
  .bg-coral, .btn-coral-custom {
    background-color: #f43f5e !important;
  }

  .text-coral {
    color: #f43f5e !important;
  }

  .btn-coral-custom:hover {
    background-color: #e11d48 !important;
  }

  /* Social Circle Badges */
  .social-circle {
    background-color: #243042;
    border-radius: 6px;
    transition: all 0.2s ease;
  }

  .social-circle:hover {
    background-color: #f43f5e;
    color: #ffffff !important;
  }

  /* Footer Links Hover effect */
  .footer-links a {
    transition: color 0.2s ease;
    font-size: 0.85rem;
  }

  .footer-links a:hover, .hover-white:hover {
    color: #ffffff !important;
  }
  /* RTL / Spacing fix for container grid */
  @media (min-width: 768px) {
    .step-item {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
    @media (max-width: 768px) {
  .custom-navbar.navbar-dark .navbar-collapse{
  background-color: #fff;
}

.custom-navbar.navbar-dark .navbar-collapse a{
  color: #ccc;
}
}