/* CUSTOM CODE */
/* INFLUX INFOTECH */
/* Custom Variables */
:root {
  --primary-color: #002d55;
  --secondary-color: #f47221;
  --primary-hover: #001a33;
  --secondary-hover: #d65d14;
}

/* 1. Navigation & Links */
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--secondary-color) !important;
}

/* 2. Buttons - Primary */
.btn-primary,
.btn-main,
.theme-btn {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
}

.btn-primary:hover {
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
}

/* 3. Buttons - Secondary (Action/Call to Action) */
.btn-secondary,
.btn-booking,
.search-btn {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background-color: var(--secondary-hover) !important;
}

/* 4. Headings & Accents */
h1,
h2,
h3,
h4 {
  color: var(--primary-color);
}

.section-title span,
.text-secondary {
  color: var(--secondary-color) !important;
}

/* 5. Icon Boxes & Counters */
.icon-box i,
.counter-box .count-number {
  color: var(--secondary-color);
}

/* 6. Footer Styles */
.footer {
  background-color: var(--primary-color);
  color: #ffffff;
}
/* Padding Top Utilities */
.pt-10 {
  padding-top: 10px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
.pt-60 {
  padding-top: 60px !important;
}
.pt-70 {
  padding-top: 70px !important;
}
.pt-80 {
  padding-top: 80px !important;
}
.pt-90 {
  padding-top: 90px !important;
}
.pt-100 {
  padding-top: 100px !important;
}

/* Padding Left Utilities */
.pl-10 {
  padding-left: 10px !important;
}
.pl-20 {
  padding-left: 20px !important;
}
.pl-30 {
  padding-left: 30px !important;
}
.pl-40 {
  padding-left: 40px !important;
}
.pl-50 {
  padding-left: 50px !important;
}
.pl-60 {
  padding-left: 60px !important;
}
.pl-70 {
  padding-left: 70px !important;
}
.pl-80 {
  padding-left: 80px !important;
}
.pl-90 {
  padding-left: 90px !important;
}
.pl-100 {
  padding-left: 100px !important;
}

/* CSS */
.main-header-nine {
  padding: 0;
}
.main-header-nine .header-nine {
  background-color: var(--primary-color);
  border-radius: 0px 0px 10px 10px;
}
.main-header-nine
  .header-nine
  .header-nav
  .main-menu-wrapper
  .main-nav
  > li
  > a {
  color: #fff;
  padding: 4px 16px;
  border-radius: 50px;
}
a.logo-white.header-logo {
  width: 150px;
}
.section-head-nine h2 {
  font-size: 50px;
  margin-bottom: 12px;
}
.section-head-nine h2 span {
  color: #f47221;
  font-style: normal;
  text-decoration: none;
}
.location-text {
  text-transform: uppercase;
  font-size: 25px !important;
}
.badge.badge-warning {
  background: var(--primary-color);
  color: #fff !important;
  font-weight: normal !important;
  text-transform: uppercase !important;
}
.bg-info {
  background-color: #2b2b2bad !important;
  border: 1px solid #2b2b2b00 !important;
  color: #fff;
  font-weight: normal !important;
  text-transform: uppercase !important;
}
.best-seller-badge {
  position: absolute;
  top: 10px;
  left: 0;
  background: linear-gradient(
    to right,
    var(--secondary-color),
    var(--secondary-hover)
  );
  color: white;
  padding: 3px 25px 3px 10px;
  font-size: 13px;
  font-weight: 700;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0, 85% 50%, 100% 100%, 0 100%);
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
}
.best-seller-badge::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 5px 0;
  border-color: transparent var(--secondary-hover) transparent transparent;
}
.tour-includes i {
  margin-right: 5px;
  margin-left: 5px;
  text-align: right;
  padding-left: 10px;
  font-size: 16px;
}
h6.d-flex.align-items-center.tour-includes {
  font-size: 13px;
  text-transform: uppercase;
  color: #515151;
}

/*  */
/* Card Core */
.home-tour-list-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative; /* Essential for relative positioning below */
}

/* Fix: Image Container */
.home-tour-list-img-box {
  position: relative;
  height: 180px;
  width: 100%;
}

.home-tour-image-link {
  display: block;
  height: 100%;
}

.home-tour-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fix: Best Seller Ribbon Positioning & Z-index */
.home-tour-list-badge {
  position: absolute;
  top: 10px;
  left: 0;
  background: #e67e22; /* Screenshot orange */
  color: #fff;
  padding: 3px 15px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10; /* Ensures it is on top of image & content */
  clip-path: polygon(0 0, 100% 0, 85% 50%, 100% 100%, 0 100%);
}

/* Hyperlink Styling (Heading) */
.home-tour-list-title a {
  text-decoration: none;
  color: var(--primary-color); /* Match default text color */
}

.home-tour-list-title a:hover {
  color: var(--secondary-color); /* Theme red on hover */
}

/* (Everything else remains the same as previously fixed CSS) */
.home-tour-list-img-overlay {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.home-tour-list-tag-red {
  background: var(--secondary-color);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 11px;
}
.home-tour-list-tag-dark {
  background: var(--primary-color);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.home-tour-list-content {
  padding: 12px 15px;
}
.home-tour-list-category {
  font-size: 14px;
  color: #616161;
  margin-bottom: 4px;
}
.domestic-emi {
  display: none !important;
}
.home-tour-list-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.home-tour-list-heading {
  font-size: 14px;
  font-weight: 500;
  color: #616161;
  text-transform: uppercase;
}
.home-tour-list-icons i {
  color: var(--secondary-color);
  font-size: 17px;
}
.home-tour-list-pricing-box {
  background: #f1f3f5;
  padding: 15px;
  margin-top: auto;
}
.home-tour-price-left h4 {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  color: var(--primary-color);
}
.home-tour-price-left h4 span {
  font-size: 14px;
}
.home-tour-emi-right {
  color: #007bff;
  font-size: 11px;
}
.home-tour-list-btn-view,
.home-tour-list-btn-book {
  padding: 5px 5px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.home-tour-list-btn-view {
  border: 1.5px solid var(--secondary-color);
  color: var(--secondary-color);
  background: #fff;
}
.home-tour-list-btn-view:hover {
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  background: #fff;
}
.home-tour-list-btn-book {
  background: var(--primary-color);
  color: #fff;
  border: 1.5px solid var(--primary-color);
}
.home-tour-list-btn-book:hover {
  background: var(--secondary-color);
  color: #fff;
  border: 1.5px solid var(--secondary-color);
}
.home-tour-list-footer {
  padding: 10px 15px;
  border-top: 1px solid #eee;
}
.home-tour-foot-link {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: underline;
}
/* EMI Hide karne ke liye aapki existing class */
.domestic-emi {
  display: none !important;
}

/* Jab EMI hide ho, toh price text aur amount ko ek line mein laane ke liye */
.home-tour-price-left.d-flex {
  width: 100%; /* Full width le lega jab EMI nahi hogi */
}

.home-tour-price-left small {
  margin-bottom: 0;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
}

.home-tour-price-left h4 {
  margin-bottom: 0; /* Heading ki default margin hatane ke liye */
}

/* International tours ke liye (jahan EMI dikh rahi hai) balance maintain karne ke liye */
.home-tour-emi-right:not(.domestic-emi) ~ .home-tour-price-left {
  display: block !important; /* Wahan vertical hi rahega */
}
a.home-tour-foot-link.get {
  color: #595959;
  font-weight: 600;
  font-size: 13px;
}
a.home-tour-foot-link.wa {
  color: var(--secondary-hover);
  font-weight: 600;
  font-size: 13px;
}
.why-choose-nine {
  padding-bottom: 50px;
  background-color: #f4722112;
}
header.fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 0.9s;
  -ms-transition: all 0.9s;
  transition: all 0.9s;
  background-color: var(--primary-color);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0px 4px 34px 0px rgba(229, 229, 229, 0.25);
}
header.fixed .header-nav .main-menu-wrapper .main-nav > li > a {
  color: #fff;
}
.mean-container .mean-nav > ul li a {
  color: #4e5561;
  font-weight: 500;
  padding: 10px 0;
  border: 0;
  width: 100%;
  z-index: 6;
  position: relative;
}
@media (max-width: 768px) {
  .google-translate-hide {
    display: none;
  }
}
.details-info h6 {
  min-width: 160px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600 !important;
}
.details-info {
  border-bottom: 1px solid #ccdae6;
  padding: 5px;
  /* padding-bottom: 5px; */
  margin-bottom: 0px;
}
/* Itinerary table */
.iti-table {
  border-collapse: collapse;
  width: 100%;
  /* max-width: 800px; */
  font-size: 14px;
}
.iti-table th,
.iti-table td {
  border: 1px solid #ccc;
  padding: 5px;
  text-align: left;
}
.iti-table th {
  background-color: #667e93;
  color: white;
  padding: 5px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
/* Zebra striping - even rows */
.iti-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Odd rows */
.iti-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
.iti-table tbody tr:hover {
  background-color: #e4ebf1;
}
.meal-cell {
  text-align: center;
  font-weight: bold;
}
/* Itinerary table */

/*  */
.itinerary-faq-content {
  padding: 0;
}

.transport-card,
.hotel-card {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.transport-card {
  background: linear-gradient(135deg, #2b5876, #4e4376);
}

.hotel-card {
  background: linear-gradient(135deg, #e96443, #904e95);
}

.transport-card i,
.hotel-card i {
  font-size: 18px;
}

.activity-list {
  padding: 0;
}

.activity-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}

/* Odd/Even row colors */
.activity-row:nth-child(odd) {
  background-color: #ffffff;
}

.activity-row:nth-child(even) {
  background-color: #f8f9fa;
}

.activity-row:hover {
  background-color: #fff9e6;
}

.time {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
}

.time i {
  width: 20px;
  color: #5a67d8;
}

.meal .badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  font-weight: 500;
}

@media (max-width: 600px) {
  .activity-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
/*  */
h2.mb-1.d-flex.align-items-center.flex-wrap.mb-2 {
  font-size: 23px;
}
/* 030626 */
/* Fix for accordion - ensures proper data-bs-parent behavior */

/* Fix for activity row - text left align */
.activity-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  transition: all 0.25s ease;
  cursor: pointer;
  gap: 20px;
}

.time {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  min-width: 120px;
  color: #2c3e50;
}

.time i {
  width: 24px;
  color: #e67e22;
}

.detail {
  flex: 1;
  text-align: left;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
}

.detail i {
  margin-right: 6px;
  color: var(--primary-color);
}

.meal {
  margin-left: auto;
}
.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: transparent;
  box-shadow: none;
}
.incl-excl {
  list-style: none;
  padding: 0;
  margin: 0;
}
.incl-excl li {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.incl-excl .fa-check-circle {
  color: #28a745;
  margin-top: 3px;
}
.incl-excl .fa-times-circle {
  color: #dc3545;
  margin-top: 3px;
}

/* */
/* Typography Preserves */
:root {
  --primary-color: #052f55; /* Primary Navy */
  --secondary-navy: #0a3d6b; /* Secondary Navy */
  --secondary-color: #f37021; /* Orange Accent */
  --accent-hover: #ff8c3a; /* Orange Hover */
  --dark-neutral: #1b1f23; /* Text */
  --muted-text: #6b7280; /* Muted Text */
  --light-neutral: #f5f6f7; /* Background */
  --white: #ffffff; /* Card Background */
  --border-color: #dce2e8; /* Border */
  --font-primary: "Inter", sans-serif;
  --font-display: "Playfair Display", serif;
}
h1,
h2,
h3 {
  color: var(--primary-color);
  font-weight: 700;
}
h2 {
  font-size: 1.85rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Palette-locked utility overrides (no new colours introduced) */
.text-primary {
  color: var(--primary-color) !important;
}
.text-danger {
  color: var(--secondary-color) !important;
}
.text-success {
  color: var(--primary-color) !important;
}
.text-warning {
  color: var(--secondary-color) !important;
}
.text-muted {
  color: var(--muted-text) !important;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-success {
  background-color: var(--secondary-navy) !important;
}
.bg-dark {
  background-color: var(--secondary-navy) !important;
}

/* Navigation Header */
.navbar-brand img {
  max-height: 50px;
}
.shigeta-nav {
  background-color: var(--white);
  border-bottom: 3px solid var(--secondary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.nav-link {
  color: var(--primary-color) !important;
  font-weight: 600;
}
.nav-link:hover {
  color: var(--secondary-color) !important;
}

/* Breadcrumb Banner */
.breadcrumb-banner {
  background:
    linear-gradient(rgba(5, 47, 85, 0.85), rgba(5, 47, 85, 0.85)),
    url("https://images.unsplash.com/photo-1542044896530-05d85be9b11a?auto=format&fit=crop&w=1920&q=80")
      center/cover no-repeat;
  color: var(--white);
  padding: 3rem 0;
}
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.breadcrumb-item.active {
  color: var(--white);
}

/* Tour Badges & Labels */
.badge-premium {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 4px;
}
.badge-accent {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 4px;
}

/* Sidebar Styling */
.sticky-sidebar {
  position: sticky;
  top: 20px;
  z-index: 100;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--secondary-color);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

/* Gallery Grid */
.gallery-main {
  height: 380px;
  object-fit: cover;
  border-radius: 6px;
  width: 100%;
}
.gallery-sub {
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 20px;
}

/* Accordion Style overrides */
.accordion-button:not(.collapsed) {
  background-color: rgba(5, 47, 85, 0.05);
  color: var(--primary-color);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* Card styles preserving site template */
.info-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.info-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.accent-icon {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

/* Global buttons */
.btn-shigeta-primary {
  background-color: var(--secondary-color);
  color: var(--white);
  font-weight: 600;
  border: none;
  transition: background 0.2s;
}
.btn-shigeta-primary:hover {
  background-color: var(--accent-hover);
  color: var(--white);
}
.btn-shigeta-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
}
.btn-shigeta-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Sticky Bottom Bar for conversions */
.sticky-bottom-action {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  padding: 0.75rem 1rem;
  display: none;
}
@media (max-width: 991.98px) {
  .sticky-bottom-action {
    display: block;
  }
  body {
    padding-bottom: 75px;
  }
}

/* Quick Floating Actions (WhatsApp & Call) */
.floating-action-btn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.2s;
}
.float-btn:hover {
  transform: scale(1.1);
  color: var(--white);
}
.float-whatsapp {
  background-color: var(--secondary-color);
}
.float-call {
  background-color: var(--primary-color);
}

/* --- Detailed Day Itinerary Cards --- */
/* Functional meal-code colours (B/L/D legend) used only on meal badges */
:root {
  --meal-b: #f2b705; /* Breakfast */
  --meal-l: #2ba84a; /* Lunch */
  --meal-d: #e2483b; /* Dinner */
}
.itin-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted-text);
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  margin-bottom: 1rem;
}
.itin-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.itin-day {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  background: var(--white);
}
.itin-head {
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.85rem 1.1rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}
.itin-head strong {
  font-weight: 700;
}
.itin-eye {
  opacity: 0.9;
  transition: transform 0.2s;
}
.itin-day.is-collapsed .itin-body {
  display: none;
}
.itin-day.is-collapsed .itin-eye {
  opacity: 0.55;
}
.itin-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.1rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.92rem;
}
.itin-row .itin-ico {
  width: 22px;
  text-align: center;
  flex: 0 0 22px;
  font-size: 0.95rem;
}
.itin-row .itin-txt {
  flex: 1 1 auto;
}
.itin-row .itin-end {
  flex: 0 0 auto;
  margin-left: auto;
}
.itin-transport {
  background: var(--primary-color);
  color: var(--white);
  border-top: none;
}
.itin-meal {
  background: linear-gradient(
    90deg,
    var(--secondary-navy) 0%,
    var(--secondary-color) 100%
  );
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.itin-step {
  background: var(--light-neutral);
  color: var(--primary-color);
  font-weight: 600;
}
.itin-step .itin-ico {
  color: var(--secondary-color);
}
.itin-act {
  background: var(--white);
  color: var(--dark-neutral);
}
.itin-act .itin-ico {
  color: var(--secondary-color);
}
.itin-overnight {
  background: var(--white);
  color: var(--dark-neutral);
  font-weight: 600;
}
.itin-overnight .itin-ico {
  color: var(--secondary-color);
}
.itin-note {
  padding: 0.7rem 1.1rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.82rem;
  color: var(--muted-text);
  background: var(--light-neutral);
}
.meal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.18rem 0.55rem;
  border-radius: 5px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.meal-badge.meal-b {
  background: var(--meal-b);
  color: var(--dark-neutral);
}
.meal-badge.meal-l {
  background: var(--meal-l);
}
.meal-badge.meal-d {
  background: var(--meal-d);
}

/* Custom Bullet List icons */
.custom-list {
  list-style: none;
  padding-left: 0;
}
.custom-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
}
.custom-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Exclusions list */
.exclusion-list li::before {
  content: "\f00d";
  color: var(--secondary-color);
}

/* Footer styling */
footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
footer h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
footer a:hover {
  color: var(--white);
}
.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition:
    color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(
    var(--bs-border-radius) - (var(--bs-border-width))
  );
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url(
    data:image/svg + xml,
    %3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 16 16"fill="%23212529"%3e%3cpathfill-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
  );
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url(
    data:image/svg + xml,
    %3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 16 16"fill="%23052c65"%3e%3cpathfill-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
  );
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
  flex-direction: row;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}

/* Company Section */
#company {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 15px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Heading */
#company .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0b4d8b;
  margin-bottom: 10px;
  position: relative;
}

#company .section-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #f6a623;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

#company .section-sub {
  text-align: center;
  color: #777;
  margin-bottom: 35px;
  font-size: 16px;
}

/* Table */
#company table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

#company th,
#company td {
  padding: 16px 18px;
  border-bottom: 1px solid #e6e6e6;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.8;
}

/* Left Column */
#company th {
  width: 230px;
  background: #0d5aa7;
  color: #fff;
  font-weight: 600;
  text-align: left;
}

/* Right Column */
#company td {
  background: #fff;
  color: #333;
}

/* Remove Last Border */
#company tr:last-child th,
#company tr:last-child td {
  border-bottom: none;
}

/* Hover Effect */
#company tr:hover td {
  background: #f8fbff;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  #company .section-title {
    font-size: 28px;
  }

  #company table,
  #company tbody,
  #company tr,
  #company th,
  #company td {
    display: block;
    width: 100%;
  }

  #company th {
    border-bottom: none;
    border-radius: 0;
  }

  #company td {
    border-bottom: 1px solid #ddd;
  }

  #company tr {
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}
/* Meet the Owner Section */
#owner {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 15px;
  font-family: Arial, Helvetica, sans-serif;
}

#owner .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0b4d8b;
  margin-bottom: 10px;
  position: relative;
}

#owner .section-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #f6a623;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

#owner .section-sub {
  text-align: center;
  color: #777;
  margin-bottom: 40px;
  font-size: 16px;
}

/* Owner Card */
#owner .owner {
  display: flex;
  align-items: center;
  gap: 35px;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

#owner .owner img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  border: 5px solid #f8fbff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

#owner .owner .role {
  display: inline-block;
  background: #0d5aa7;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

#owner .owner h3 {
  font-size: 32px;
  color: #0b4d8b;
  margin: 0 0 10px;
}

#owner .owner p {
  color: #444;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 15px;
}

#owner .owner p strong {
  color: #222;
  font-size: 17px;
}

#owner .owner p em {
  color: #0d5aa7;
  font-weight: 600;
  font-style: normal;
}

/* Responsive */
@media (max-width: 768px) {
  #owner .section-title {
    font-size: 28px;
  }

  #owner .owner {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  #owner .owner img {
    width: 180px;
    height: 220px;
  }

  #owner .owner h3 {
    font-size: 26px;
  }
}
/*==========================
      OUR DRIVERS
==========================*/

#drivers {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 15px;
  font-family: Arial, Helvetica, sans-serif;
}

#drivers .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0b4d8b;
  margin-bottom: 10px;
  position: relative;
}

#drivers .section-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #f6a623;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

#drivers .section-sub {
  text-align: center;
  color: #777;
  font-size: 16px;
  margin-bottom: 40px;
}

/* Cards Grid */

#drivers .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Single Card */

#drivers .card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  border: 1px solid #ececec;
}

#drivers .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

/* Image */

#drivers .card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}

/* Card Body */

#drivers .card-body {
  padding: 22px;
}

#drivers .card-body h4 {
  margin: 0;
  color: #0b4d8b;
  font-size: 24px;
  font-weight: 700;
}

/* Badge */

#drivers .tag {
  display: inline-block;
  margin: 12px 0 18px;
  background: #0b4d8b;
  color: #fff;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

#drivers .card-body p {
  margin: 0;
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

/* Responsive */

@media (max-width: 768px) {
  #drivers {
    margin: 50px auto;
  }

  #drivers .section-title {
    font-size: 28px;
  }

  #drivers .cards {
    grid-template-columns: 1fr;
  }

  #drivers .card img {
    height: 240px;
  }
}
/*==========================
       OUR GUIDES
==========================*/

#guides {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 15px;
  font-family: Arial, Helvetica, sans-serif;
}

#guides .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0b4d8b;
  margin-bottom: 10px;
  position: relative;
}

#guides .section-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #f6a623;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
}

#guides .section-sub {
  text-align: center;
  color: #777;
  font-size: 16px;
  margin-bottom: 40px;
}

/* Cards */

#guides .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

#guides .card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

#guides .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image */

#guides .card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* Body */

#guides .card-body {
  padding: 22px;
}

#guides .card-body h4 {
  margin: 0;
  color: #0b4d8b;
  font-size: 24px;
  font-weight: 700;
}

/* Badge */

#guides .tag {
  display: inline-block;
  margin: 12px 0 18px;
  background: #0b4d8b;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

#guides .card-body p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

/* Responsive */

@media (max-width: 768px) {
  #guides {
    margin: 50px auto;
  }

  #guides .section-title {
    font-size: 28px;
  }

  #guides .cards {
    grid-template-columns: 1fr;
  }

  #guides .card img {
    height: 260px;
  }
}
/* Bottom Buttons */
.influx-bottom-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  z-index: 9999;
}

/* Airport Button */
.airport-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f47c20;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);

  /* Airport Button ऊपर */
  transform: translateY(-11px);
}

.airport-btn img {
  width: 20px;
  height: 20px;
}

/* WhatsApp Button */
.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;

  /* WhatsApp Button नीचे */
  transform: translateY(12px);
}

.whatsapp-float img {
  width: 58px;
  height: 58px;
  display: block;
  border-radius: 50%;
}

/* ===== Hero with booking form ===== */
.hero {
  background:
    linear-gradient(100deg, rgba(11, 15, 21, 0.95) 35%, rgba(11, 15, 21, 0.55)),
    url("https://shigetatravels.com/wp-content/uploads/2025/08/AdobeStock_461453971-scaled.jpeg")
      center/cover;
  padding: 100px 20px;
}
.hero-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: 2.9rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 em {
  color: #f47c20;
  font-style: normal;
}
.hero p.lead {
  font-size: 1.08rem;
  margin-bottom: 26px;
  max-width: 520px;
  color: #ffffff;
}
.hero .ticks {
  list-style: none;
  margin-bottom: 30px;
}
.hero .ticks li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #fff;
}
.hero .ticks li::before {
  content: "✔";
  color: #f2b24c;
  margin-right: 10px;
  font-weight: 700;
}

/* Booking form card */
.booking {
  background: #1a2230;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.booking h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.booking .tag {
  font-size: 0.82rem;
  color: #f47c20;
  margin-bottom: 20px;
  display: block;
}
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #9aa4b5;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.field input,
.field select {
  width: 100%;
  background: #232d3f;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  padding: 12px 14px;
  font-size: 0.95rem;
}
.field input::placeholder {
  color: #6b7686;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.booking .btn1 {
  width: 100%;
  margin-top: 8px;
}
.booking .note {
  font-size: 0.78rem;
  color: #7d8798;
  margin-top: 12px;
  text-align: center;
}

/* ===== Stats ===== */
.stats {
  background: #1a2230;
  border-top: #f1f3f5;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
}
.stat {
  padding: 34px 16px;
}
.stat b {
  display: block;
  font-size: 2.1rem;
  color: #f47c20;
  font-weight: 800;
}
.stat span {
  font-size: 0.9rem;
  color: #8d97a8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== Fleet ===== */
.fleet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 26px;
}
.car {
  background: var(--dark-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease;
}
.car:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}
.car .thumb {
  height: 150px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.car-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.car h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.car .cap {
  font-size: 0.83rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.car ul {
  list-style: none;
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.car li {
  margin-bottom: 6px;
}
.car li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}
.car .price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.car .price b {
  color: #fff;
  font-size: 1.3rem;
}
.car .price small {
  color: #8d97a8;
  font-size: 0.78rem;
}
.car .price a {
  font-weight: 700;
  font-size: 0.88rem;
}

/* ===== How it works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  counter-reset: step;
}
.step {
  background: var(--dark-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.07);
}
.step .icon {
  font-size: 2.3rem;
  margin-bottom: 14px;
}
.step h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.9rem;
}

/* ===== Services ===== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}
.service {
  background: var(--dark-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 26px;
}
.service h3 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.service p {
  font-size: 0.9rem;
}

/* ===== Testimonials ===== */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.quote {
  background: var(--dark-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}
.quote .stars {
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.15em;
}
.quote p {
  font-size: 0.93rem;
  margin-bottom: 16px;
}
.quote b {
  color: #fff;
  font-size: 0.9rem;
}
.quote span {
  display: block;
  font-size: 0.8rem;
  color: #7d8798;
}

/* ===== CTA banner ===== */
.cta {
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  text-align: center;
  padding: 64px 20px;
}
.cta h2 {
  color: #fff;
  font-size: 1.9rem;
  margin-bottom: 10px;
}
.cta p {
  color: #ffe1e6;
  margin-bottom: 26px;
}
.cta .btn {
  background: #10151d;
}
.cta .btn:hover {
  background: #000;
}

.btn1 {
  display: inline-block;
  background: #f47c20;
  color: #fff;
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}

.btn2 {
  display: inline-block;
  background: #0d5aa7;
  color: #fff;
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}

.eyebrow {
  color: #f2b24c;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

/*  */
/* =========================================
   VEHICLE FLEET SECTION
========================================= */

#vehicle-fleet {
  background: #10151d;
  color: #ffffff;
  padding: 70px 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* =========================================
   HEADING
========================================= */

#vehicle-fleet .vehicle-eyebrow {
  display: block;
  text-align: center;

  color: #ff3b4d;
  font-size: 13px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1.5px;

  margin-bottom: 8px;
}

#vehicle-fleet .vehicle-title {
  margin: 0 0 12px;

  color: #ffffff;
  text-align: center;

  font-size: 36px;
  font-weight: 700;
}

#vehicle-fleet .vehicle-sub {
  max-width: 760px;

  margin: 0 auto 40px;

  color: #9fa9b9;
  text-align: center;

  font-size: 15px;
  line-height: 1.7;
}

/* =========================================
   VEHICLE GRID
========================================= */

#vehicle-fleet .vehicle-fleet {
  width: 100%;
  max-width: 1070px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  padding: 0 15px;
  box-sizing: border-box;
}

/* =========================================
   VEHICLE CARD
========================================= */

#vehicle-fleet .vehicle-card {
  background: #1a2230;

  border: 1px solid #2e394a;
  border-radius: 15px;

  overflow: hidden;

  min-height: 450px;

  display: flex;
  flex-direction: column;

  transition: all 0.3s ease;
}

/* First card red border */

#vehicle-fleet .vehicle-card:first-child {
  border-color: #e93649;
}

/* Hover */

#vehicle-fleet .vehicle-card:hover {
  transform: translateY(-5px);

  border-color: #ff3b4d;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* =========================================
   VEHICLE IMAGE
========================================= */

#vehicle-fleet .vehicle-thumb {
  height: 150px;

  background: #232d3f;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 48px;
  line-height: 1;
}

/* =========================================
   VEHICLE BODY
========================================= */

#vehicle-fleet .vehicle-body {
  padding: 25px 21px 20px;

  display: flex;
  flex-direction: column;

  flex: 1;

  box-sizing: border-box;
}

#vehicle-fleet .vehicle-body h3 {
  margin: 0 0 10px;

  color: #ffffff;

  font-size: 18px;
  font-weight: 700;
}

/* =========================================
   CAPACITY
========================================= */

#vehicle-fleet .vehicle-cap {
  display: block;

  color: #ffb21c;

  font-size: 12px;
  font-weight: 500;

  margin-bottom: 17px;

  line-height: 1.5;
}

/* =========================================
   FEATURES
========================================= */

#vehicle-fleet .vehicle-body ul {
  list-style: none;

  padding: 0;
  margin: 0;
}

#vehicle-fleet .vehicle-body ul li {
  position: relative;

  padding-left: 14px;

  margin-bottom: 13px;

  color: #c2c9d4;

  font-size: 13px;
  line-height: 1.5;
}

#vehicle-fleet .vehicle-body ul li::before {
  content: "•";

  position: absolute;

  left: 0;
  top: 0;

  color: #ff3d4f;

  font-size: 15px;
  font-weight: bold;
}

/* =========================================
   PRICE
========================================= */

#vehicle-fleet .vehicle-price {
  margin-top: auto;

  padding-top: 22px;

  border-top: 1px solid #303a49;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 8px;
}

#vehicle-fleet .vehicle-price b {
  color: #ffffff;

  font-size: 21px;
  font-weight: 700;

  white-space: nowrap;
}

#vehicle-fleet .vehicle-price small {
  color: #8e98a9;

  font-size: 10px;

  white-space: nowrap;
}

#vehicle-fleet .vehicle-price a {
  color: #ff3b4d;

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;

  white-space: nowrap;

  transition: color 0.2s ease;
}

#vehicle-fleet .vehicle-price a:hover {
  color: #ffffff;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
  #vehicle-fleet .vehicle-fleet {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  #vehicle-fleet {
    padding: 50px 15px;
  }

  #vehicle-fleet .vehicle-title {
    font-size: 28px;
  }

  #vehicle-fleet .vehicle-sub {
    font-size: 14px;
    margin-bottom: 30px;
  }

  #vehicle-fleet .vehicle-fleet {
    grid-template-columns: 1fr;

    gap: 20px;

    padding: 0;
  }

  #vehicle-fleet .vehicle-card {
    min-height: 430px;
  }

  #vehicle-fleet .vehicle-thumb {
    height: 140px;
  }
}
/* =========================================
   HOW IT WORKS / BOOKING PROCESS
========================================= */

#booking-process {
  background: #10151d;
  color: #ffffff;
  padding-bottom: 70px;
  font-family: Arial, Helvetica, sans-serif;
}

/* =========================================
   HEADING
========================================= */

#booking-process .process-eyebrow {
  display: block;

  text-align: center;

  color: #ff3b4d;

  font-size: 13px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1.5px;

  margin-bottom: 8px;
}

#booking-process .process-title {
  margin: 0 0 12px;

  color: #ffffff;

  text-align: center;

  font-size: 36px;
  font-weight: 700;
}

#booking-process .process-sub {
  max-width: 650px;

  margin: 0 auto 45px;

  color: #9fa9b9;

  text-align: center;

  font-size: 15px;
  line-height: 1.7;
}

/* =========================================
   PROCESS GRID
========================================= */

#booking-process .process-steps {
  width: 100%;
  max-width: 1050px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;

  padding: 0 15px;

  box-sizing: border-box;
}

/* =========================================
   PROCESS CARD
========================================= */

#booking-process .process-card {
  position: relative;

  background: #1a2230;

  border: 1px solid #2e394a;

  border-radius: 15px;

  padding: 32px 25px 28px;

  text-align: center;

  min-height: 270px;

  box-sizing: border-box;

  transition: all 0.3s ease;
}

#booking-process .process-card:hover {
  transform: translateY(-5px);

  border-color: #ff3b4d;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* =========================================
   ICON
========================================= */

#booking-process .process-icon {
  width: 70px;
  height: 70px;

  margin: 0 auto 22px;

  background: #232d3f;

  border: 1px solid #344154;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 32px;

  line-height: 1;

  transition: all 0.3s ease;
}

#booking-process .process-card:hover .process-icon {
  border-color: #ff3b4d;

  transform: scale(1.05);
}

/* =========================================
   CARD HEADING
========================================= */

#booking-process .process-card h3 {
  margin: 0 0 12px;

  color: #ffffff;

  font-size: 18px;

  font-weight: 700;

  line-height: 1.4;
}

/* =========================================
   CARD TEXT
========================================= */

#booking-process .process-card p {
  margin: 0;

  color: #aeb7c5;

  font-size: 13px;

  line-height: 1.7;
}

/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 900px) {
  #booking-process .process-steps {
    grid-template-columns: repeat(2, 1fr);

    max-width: 700px;
  }
}

/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 600px) {
  #booking-process {
    padding-bottom: 50px;
  }

  #booking-process .process-title {
    font-size: 28px;
  }

  #booking-process .process-sub {
    font-size: 14px;

    margin-bottom: 30px;
  }

  #booking-process .process-steps {
    grid-template-columns: 1fr;

    gap: 20px;

    padding: 0;
  }

  #booking-process .process-card {
    min-height: auto;

    padding: 30px 22px;
  }
}
/* =========================================
   CHAUFFEUR SERVICES SECTION
========================================= */

#chauffeur-services {
  background: #10151d;
  color: #ffffff;
  padding-bottom: 70px;
  font-family: Arial, Helvetica, sans-serif;
}

/* =========================================
   HEADING
========================================= */

#chauffeur-services .service-eyebrow {
  display: block;

  text-align: center;

  color: #ff3b4d;

  font-size: 13px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1.5px;

  margin-bottom: 8px;
}

#chauffeur-services .service-title {
  margin: 0 0 12px;

  color: #ffffff;

  text-align: center;

  font-size: 36px;
  font-weight: 700;

  line-height: 1.3;
}

#chauffeur-services .service-sub {
  max-width: 700px;

  margin: 0 auto 45px;

  color: #9fa9b9;

  text-align: center;

  font-size: 15px;
  line-height: 1.7;
}

/* =========================================
   SERVICES GRID
========================================= */

#chauffeur-services .service-grid {
  width: 100%;
  max-width: 1070px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  padding: 0 15px;

  box-sizing: border-box;
}

/* =========================================
   SERVICE CARD
========================================= */

#chauffeur-services .service-card {
  background: #1a2230;

  border: 1px solid #2e394a;

  border-radius: 15px;

  padding: 25px 23px;

  min-height: 175px;

  box-sizing: border-box;

  transition: all 0.3s ease;
}

#chauffeur-services .service-card:hover {
  transform: translateY(-5px);

  border-color: #ff3b4d;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* =========================================
   SERVICE TITLE
========================================= */

#chauffeur-services .service-card h3 {
  margin: 0 0 12px;

  color: #ffffff;

  font-size: 17px;
  font-weight: 700;

  line-height: 1.45;
}

/* =========================================
   SERVICE DESCRIPTION
========================================= */

#chauffeur-services .service-card p {
  margin: 0;

  color: #aeb7c5;

  font-size: 13px;

  line-height: 1.7;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  #chauffeur-services .service-grid {
    grid-template-columns: repeat(2, 1fr);

    max-width: 800px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  #chauffeur-services {
    padding-bottom: 50px;
  }

  #chauffeur-services .service-title {
    font-size: 28px;
  }

  #chauffeur-services .service-sub {
    font-size: 14px;

    margin-bottom: 30px;
  }

  #chauffeur-services .service-grid {
    grid-template-columns: 1fr;

    gap: 18px;

    padding: 0;
  }

  #chauffeur-services .service-card {
    min-height: auto;

    padding: 23px 20px;
  }

  #chauffeur-services .service-card h3 {
    font-size: 16px;
  }
}

/* =========================================
   TRAVELER REVIEWS SECTION
========================================= */

#traveler-reviews {
  background: #10151d;
  color: #ffffff;
  padding-bottom: 70px;
  font-family: Arial, Helvetica, sans-serif;
}

/* =========================================
   HEADING
========================================= */

#traveler-reviews .review-eyebrow {
  display: block;

  text-align: center;

  color: #ff3b4d;

  font-size: 13px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 1.5px;

  margin-bottom: 8px;
}

#traveler-reviews .review-title {
  margin: 0 0 12px;

  color: #ffffff;

  text-align: center;

  font-size: 36px;
  font-weight: 700;

  line-height: 1.3;
}

#traveler-reviews .review-sub {
  max-width: 650px;

  margin: 0 auto 45px;

  color: #9fa9b9;

  text-align: center;

  font-size: 15px;
  line-height: 1.7;
}

/* =========================================
   REVIEW GRID
========================================= */

#traveler-reviews .review-grid {
  width: 100%;
  max-width: 1050px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

  padding: 0 15px;

  box-sizing: border-box;
}

/* =========================================
   REVIEW CARD
========================================= */

#traveler-reviews .review-card {
  background: #1a2230;

  border: 1px solid #2e394a;

  border-radius: 15px;

  padding: 27px 24px;

  min-height: 260px;

  display: flex;
  flex-direction: column;

  box-sizing: border-box;

  transition: all 0.3s ease;
}

#traveler-reviews .review-card:hover {
  transform: translateY(-5px);

  border-color: #ff3b4d;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* =========================================
   STARS
========================================= */

#traveler-reviews .review-stars {
  color: #ffb21c;

  font-size: 17px;

  letter-spacing: 2px;

  margin-bottom: 18px;
}

/* =========================================
   REVIEW TEXT
========================================= */

#traveler-reviews .review-card p {
  margin: 0 0 22px;

  color: #c2c9d4;

  font-size: 14px;

  line-height: 1.75;

  flex: 1;
}

/* =========================================
   REVIEW NAME
========================================= */

#traveler-reviews .review-card b {
  display: block;

  color: #ffffff;

  font-size: 13px;

  font-weight: 700;

  margin-bottom: 5px;
}

/* =========================================
   REVIEW TYPE
========================================= */

#traveler-reviews .review-card > span {
  display: block;

  color: #8e98a9;

  font-size: 11px;

  line-height: 1.5;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  #traveler-reviews .review-grid {
    grid-template-columns: repeat(2, 1fr);

    max-width: 800px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  #traveler-reviews {
    padding-bottom: 50px;
  }

  #traveler-reviews .review-title {
    font-size: 28px;
  }

  #traveler-reviews .review-sub {
    font-size: 14px;

    margin-bottom: 30px;
  }

  #traveler-reviews .review-grid {
    grid-template-columns: 1fr;

    gap: 18px;

    padding: 0;
  }

  #traveler-reviews .review-card {
    min-height: auto;

    padding: 24px 20px;
  }
}
/* =========================================
   RIDE CTA SECTION
========================================= */

#ride-cta {
  width: 100%;
  max-width: 1050px;

  margin: 20px auto 70px;

  padding: 55px 30px;

  box-sizing: border-box;

  background: #1a2230;

  border: 1px solid #2e394a;

  border-radius: 18px;

  text-align: center;

  color: #ffffff;

  font-family: Arial, Helvetica, sans-serif;

  position: relative;

  overflow: hidden;
}

/* Red top accent */

#ride-cta::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 100px;
  height: 3px;

  background: #ff3b4d;

  border-radius: 0 0 5px 5px;
}

/* =========================================
   CTA HEADING
========================================= */

#ride-cta h2 {
  margin: 0 0 12px;

  color: #ffffff;

  font-size: 30px;

  font-weight: 700;

  line-height: 1.35;
}

/* =========================================
   CTA DESCRIPTION
========================================= */

#ride-cta p {
  margin: 0 0 27px;

  color: #aeb7c5;

  font-size: 14px;

  line-height: 1.7;
}

/* =========================================
   CTA BUTTON
========================================= */

#ride-cta .ride-cta-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 0 28px;

  box-sizing: border-box;

  background: #ff3b4d;

  color: #ffffff;

  border: 1px solid #ff3b4d;

  border-radius: 8px;

  font-size: 14px;

  font-weight: 700;

  text-decoration: none;

  transition: all 0.3s ease;
}

#ride-cta .ride-cta-button:hover {
  background: #ffffff;

  color: #ff3b4d;

  border-color: #ffffff;

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  #ride-cta {
    margin: 15px 15px 50px;

    width: auto;

    padding: 40px 20px;

    border-radius: 15px;
  }

  #ride-cta h2 {
    font-size: 24px;
  }

  #ride-cta p {
    font-size: 13px;

    margin-bottom: 23px;
  }

  #ride-cta .ride-cta-button {
    width: 100%;

    padding: 0 20px;
  }
}
