:root {
  --primary-color: #00498c;
  --white: #ffffff;
  --dark-blue: #003366;
}

/* Top Bar */
.topbar {
  background: var(--primary-color);
  color: var(--white);
  font-size: 0.9rem;
  padding: 6px 0;
}

.topbar i {
  color: #ffffff; /* gold accent */
  margin-right: 5px;
}

.topbar .topbar-right {
  font-size: 0.85rem;
}

/* On small screens, hide email + tagline */
@media (max-width: 768px) {
  .topbar .topbar-right {
    display: none !important;
  }
  .topbar .ms-4 { 
    display: none !important; /* hides email */
  }
}

/* Main Navbar */
.main-navbar {
  background: var(--white);
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #eee;
}

.logo-img {
  height: 60px;
}

/* Nav Links */
.nav-link {
  color: var(--primary-color) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #000 !important;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 6px;
  border: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.dropdown-item {
  font-weight: 500;
}

.dropdown-item:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Call Button */
.call-btn {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: var(--dark-blue);
  color: var(--white);
}

/* Mobile Toggler */
.custom-toggler {
  border: none;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,73,140,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* Mobile Navbar Menu */
@media (max-width: 991px) {
  .main-navbar .navbar-collapse {
    background: var(--white); /* white background */
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  }

  .main-navbar .nav-link {
    display: block;
    padding: 10px 0;
    margin: 0;
    font-size: 1rem;
    color: var(--primary-color) !important;
    border-bottom: 1px solid #f1f1f1;
  }

  .main-navbar .nav-link:last-child {
    border-bottom: none;
  }

  /* Dropdown inside mobile */
  .main-navbar .dropdown-menu {
    background: #f8f9fa;
    border: none;
    margin-top: 0;
    padding: 0.5rem 0;
    box-shadow: none;
  }

  .main-navbar .dropdown-item {
    padding: 10px 20px;
    font-size: 0.95rem;
    color: var(--primary-color);
  }

  .main-navbar .dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white);
  }

  /* Call Button inside mobile menu */
  .main-navbar .call-btn {
    display: block;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
    font-size: 1rem;
    border-radius: 8px;
  }
}




.hero-section {
  background: #f5f5f5; /* light grey */
  padding: 4rem 0;
}

.hero-text {
  color: #333;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00498c; /* brand color */
}

.hero-subtitle {
  font-size: 1.1rem;
  margin: 1rem 0 1.5rem;
  color: #555;
}

.hero-features span {
  margin-right: 15px;
  font-weight: 500;
  color: #333;
}

.hero-features i {
  color: #00498c;
  margin-right: 6px;
}

/* Buttons */
.hero-buttons .btn {
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.call-btn {
  background: #00498c;
  color: #fff;
}

.call-btn:hover {
  background: #003366;
  color: #fff;
}

.book-btn {
  background: #000000;
  color: #fff;
}

.book-btn:hover {
  background: #e6b800;
  color: #000;
}

/* Car Image */
.hero-car {
  max-width: 100%;
  height: auto;
}
/* Base form control styling */
.form-control, 
.form-select, 
textarea.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1.5px solid #004990;
  box-sizing: border-box;
  color: #004990;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* On focus */
.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

/* Submit button styling */
.btn-submit {
  background-color: #004990;
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-size: 1.15rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 300px;
  width: 100%;
  margin: 20px auto 0;
  display: block;
}

.btn-submit:hover {
  background-color: #0066cc;
}

/* Textarea - bigger height */
textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

/* Date/time selects in one line (Bootstrap 5 grid handles spacing) */
#divtime .col-4 {
  padding-right: 5px;
}
#divtime .col-4:last-child {
  padding-right: 0;
}

/* Specific styling for Airport form (Bootstrap 5) */
.airport .row > [class^="col-"] {
  margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  #divtime .col-4 {
    width: 100%;
    padding-right: 0;
    margin-bottom: 10px;
  }
}

/* Theme */
  :root { --primary:#13294B; --secondary:#C0C0C0; }

  /* Section background + overlay */
  .sliderform{
    position:relative;
    background-color:#00498c;
    width:100%;
    margin-bottom:50px;
    overflow:hidden;
  }
    .sliderforma{
    position:relative;
    background-color:#cacaca;
    width:100%;
    margin-bottom:50px;
    overflow:hidden;
  }
   .sliderformm{
    position:relative;
    background-color:#fff;
    width:100%;
    margin-bottom:50px;
    overflow:hidden;
  }
  .sliderform::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,29,58,.65);
    z-index:1;
  }
  .sliderform_inner{
    position:relative;
    z-index:2;
    /* padding:72px 0; */
  }

  /* Card */
  .book-bg{
    background:#ffffff;
    padding:28px;
    border-radius:14px;
    box-shadow:0 10px 24px rgba(0,0,0,.15);
  }
   .book-bgam{
    background:#00498c;
    padding:28px;
    border-radius:14px;
    box-shadow:0 10px 24px rgba(0,0,0,.15);
  }
  

  /* Buttons */
  .btn-primary{ background:var(--primary); border:none; }
  .btn-primary:hover{ background:#0f3a7a; }

  /* Form tweaks */
  .form-control,.form-select{ border:1.5px solid var(--primary); color:#13294B; }
  .form-control:focus,.form-select:focus{
    border-color:#0f3a7a; box-shadow:0 0 0 .2rem rgba(19,41,75,.15);
  }
  
  
.cta-final {
    background: #000000;
    color: #fff;
  }
  .btn-cta {
    background: #C0C0C0; /* silver */
    color: #13294B;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .btn-cta:hover {
    background: #fff;
    color: #13294B;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  }
  .cta-disclaimer {
    font-size: 0.85rem;
    color: #ddd;
  }


/* Hide by default */
.mobile-only-banner {
  display: none;
}
/* Booking Type Section */
.booking-type {
  margin-bottom: 1.5rem;
  text-align: center; /* center align for mobile by default */
}

/* Radio Wrapper */
.booking-type .form-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 15px; /* spacing between radios */
}

/* Radio Circle */
.booking-type .form-check-input {
  transform: scale(1.2);
  accent-color: #ffcc00; /* gold accent for checked state */
  cursor: pointer;
}

/* Label + Icon */
.booking-type .form-check-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #fff; /* white text */
  cursor: pointer;
  transition: color 0.3s ease;
}

.booking-type .form-check-label:hover {
  color: #ffffff; /* gold on hover */
}

/* Icons */
.booking-type .form-check-label i {
  font-size: 1.2rem;
  color: #ffcc00; /* gold icons */
}

/* Desktop Alignment */
@media (min-width: 768px) {
  .booking-type {
    text-align: left; /* align left on bigger screens */
  }
}
.subhead {
	text-align:center;
	color:white;
}

.subheada {
	text-align:center;
	color:black;
}

.subheadi {
	text-align:center;
	color:#000;
}


/* Section Styling */
.why-choose-us {
  background: #f8f9fb;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #00498c;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: auto;
}

/* Feature Boxes */
.feature-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 2.5rem;
  color: #00498c;
}

/* Disclaimer */
.disclaimer {
  font-size: 0.85rem;
  color: #666;
}
/* Section */
.our-services {
  background: #f8f9fb;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00498c;
}

.section-subtitle {
  color: #666;
  font-size: 1rem;
  max-width: 700px;
  margin: auto;
}

/* Card Styling */
.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Image Wrapper */
.service-img-wrapper {
  position: relative;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

/* Overlay Effect */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,73,140,0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .overlay {
  opacity: 1;
}

/* Content */
.service-content h5 {
  font-weight: 700;
  color: #00498c;
}

.service-content p {
  font-size: 0.95rem;
  color: #555;
  margin: 10px 0 0;
}

/* Button */
.service-btn {
  background: linear-gradient(90deg, #00498c, #003366);
  color: #fff;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: #002f5d;
  transform: scale(1.05);
  color: white;
}

/* Add this to your style.css */
#fare {
  font-weight: bold;
  color: red !important;  /* This will apply the red color with !important */
}
/* Section */
.our-fleet {
  background: #f8f9fb;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00498c;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: auto;
}

/* Fleet Cards */
.fleet-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Fleet Image */
.fleet-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 4px solid #00498c;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img {
  transform: scale(1.05);
}

/* Content */
.fleet-content h5 {
  font-weight: 700;
  color: #00498c;
  margin-top: 10px;
}

.fleet-content p {
  color: #555;
  font-size: 0.95rem;
  margin: 10px 0 0;
}

/* Disclaimer */
.fleet-disclaimer {
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}
/* Section */
.about-taxi {
  background: #ffffff;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: #00498c;
}

.about-subtitle {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.about-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Illustration */
.about-img {
  max-width: 80%;
  border-radius: 12px;
}

/* Call Button */
.call-btn {
  background: #00498c;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: #003366;
  color: #fff;
  transform: translateY(-2px);
}
/* Section */
.airport-taxi {
  background: #f3f7fb;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00498c;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 800px;
  margin: auto;
}

/* Content Card */
.airport-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.airport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

/* Text */
.airport-text h3 {
  color: #00498c;
}

.airport-text p {
  color: #444;
  line-height: 1.6;
}

.airport-text ul li {
  margin-bottom: 6px;
  color: #333;
  font-size: 0.95rem;
}

/* Image */
.airport-image img {
  max-width: 380px;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.airport-card:hover .airport-image img {
  transform: scale(1.03);
}

/* Disclaimer */
.airport-disclaimer {
  max-width: 900px;
  margin: auto;
  line-height: 1.6;
  font-size: 0.85rem;
}
/* Section */
.how-it-works {
  background: #f8f9fb;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00498c;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: auto;
}

/* Step Cards */
.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Icons */
.step-icon {
  font-size: 2.5rem;
  color: #00498c;
  background: #e6f0fa;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: auto;
}

/* Text */
.step-card h5 {
  font-weight: 700;
  margin: 12px 0;
  color: #00498c;
}

.step-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Disclaimer */
.steps-disclaimer {
  max-width: 850px;
  margin: auto;
  line-height: 1.6;
  font-size: 0.85rem;
}


/* Testimonial Item */
.testimonial-item {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  margin: 0 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: center;
  height: 100%;                /* Ensures equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Stars */
.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Quote */
.quote {
  flex-grow: 1;                 /* Expands text area evenly */
  font-style: italic;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Author */
.author {
  font-weight: 600;
  color: #00498c;
  margin-top: auto;             /* Keeps author at bottom */
}
.maxi-service h2 {
  color: #00498c;
}

.feature-icon {
  font-size: 2rem;
  color: #00498c;
}

.badge.bg-primary {
  background: #00498c !important;
}

.maxi-service p {
  color: #444;
  line-height: 1.6;
}
.faq-section {
  background: #f3f7fb;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00498c;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.accordion-item {
  border: none;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  color: #00498c;
  background-color: #fff;
  padding: 18px 20px;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
}

/* remove Bootstrap's default chevron */
.accordion-button::after {
  display: none !important;
}

/* custom + / - */
.accordion-button::before {
  content: '+';
  font-size: 1.4rem;
  color: #00498c;
  position: absolute;
  right: 20px;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::before {
  content: '−';
  color: #fff;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #00498c;
}

.accordion-body {
  padding: 18px 20px;
  color: #444;
  line-height: 1.6;
  background: #fff;
}

.faq-disclaimer {
  max-width: 850px;
  margin: auto;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}
.accordion-header {
  margin: 0;
}

.accordion-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 600;
  color: #00498c;
  background-color: #fff;
  padding: 18px 20px;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer; /* makes it obvious it's clickable */
}

/* remove Bootstrap’s default chevron */
.accordion-button::after {
  display: none !important;
}

/* custom + / − icon */
.accordion-button::before {
  content: '+';
  font-size: 1.4rem;
  font-weight: bold;
  position: absolute;
  right: 20px;
  transition: all 0.3s ease;
  color: #00498c;
}

.accordion-button:not(.collapsed)::before {
  content: '−';
  color: #fff;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #00498c;
}

.accordion-body {
  padding: 18px 20px;
  color: #444;
  line-height: 1.6;
  background: #fff;
}
.btn-faq-cta {
  background-color: #00498c;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-faq-cta:hover {
  background-color: #002f5e;
  color: #fff;
}




/* Base */
.footer-advanced {
  background: #00498c;
  color: #eaf2fb;
  --ft-blue: #00498c;
  --ft-blue-700:#003a70;
  --ft-gold:#ffffff;
}
.footer-wave{width:100%;height:60px;display:block}
.footer-body{padding-top:10px}

/* Headings */
.ft-heading{
  font-weight:800;
  letter-spacing:.2px;
  margin-bottom:14px;
  color:#fff;
  position:relative;
}
.ft-heading::after{
  content:"";
  display:block;
  width:38px;height:3px;
  background:var(--ft-gold);
  border-radius:2px;
  margin-top:8px;
}

/* About brand */
.ft-logo{width:150px;height:auto}
.ft-brand{
  font-weight:800;letter-spacing:.5px;
  color:#fff;
  border-left:2px solid var(--ft-gold);
  padding-left:10px
}

/* Social buttons */
.ft-social a{
  display:inline-flex;align-items:center;justify-content:center;
  width:40px;height:40px;margin-right:8px;border-radius:50%;
  background:#fff;color:var(--ft-blue);text-decoration:none;
  box-shadow:0 4px 16px rgba(0,0,0,.15);
  transition:.25s ease
}
.ft-social a:hover{transform:translateY(-3px);background:var(--ft-gold);color:#1f2a44}

/* Link lists */
.ft-links{list-style:none;padding-left:0;margin:0}
.ft-links li+li{margin-top:6px}
.ft-links a{
  position:relative;display:inline-block;
  text-decoration:none;color:#dfe9f7;
  padding-left:18px;transition:.2s ease
}
.ft-links a::before{
  content:"›";position:absolute;left:0;top:0;color:var(--ft-gold);
}
.ft-links a:hover{color:#fff;transform:translateX(4px)}

/* Contact cards */
.ft-contact{
  display:flex;gap:12px;margin-bottom:14px;align-items:flex-start
}
.ft-contact .icon{
  width:44px;height:44px;border-radius:12px;
  background:rgba(255,255,255,.12);
  display:flex;align-items:center;justify-content:center;
  color:var(--ft-gold);font-size:20px
}
.ft-contact .label{font-size:.85rem;color:#b9d2ef;margin-bottom:2px}
.ft-contact .value{color:#fff;text-decoration:none}
.ft-contact .value:hover{text-decoration:underline}

/* Payment badges */
.ft-badges{display:flex;gap:8px;justify-content:flex-end;flex-wrap:wrap}
.badge-pay{
  background:#fff;color:#1f2a44;font-weight:700;
  border-radius:6px;padding:6px 10px;font-size:.78rem;
  box-shadow:0 2px 8px rgba(0,0,0,.12)
}

/* Bottom bar */
.footer-bottom{border-top:1px solid rgba(255,255,255,.18);margin-top:24px;padding:16px 0}
.ft-bottom-links{display:flex;gap:16px;list-style:none;margin:0}
.ft-bottom-links a{color:#dfe9f7;text-decoration:none}
.ft-bottom-links a:hover{color:#fff}

/* Back to top */
.back-to-top{
  position:fixed;right:16px;bottom:18px;z-index:20;
  width:44px;height:44px;border-radius:50%;
  background:#fff;color:var(--ft-blue);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 20px rgba(0,0,0,.25);
  text-decoration:none;transition:.25s ease
}
.back-to-top:hover{transform:translateY(-2px);background:var(--ft-gold);color:#1f2a44}

/* Paragraphs */
.footer-advanced p{color:#eaf2fb;opacity:.95}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .ft-badges{justify-content:flex-start}
}
/* Contact cards alignment fix */
.ft-contact {
  display: flex;
  align-items: flex-start; /* top align consistently */
  gap: 12px;
  margin-bottom: 16px;
}

.ft-contact .icon {
  flex: 0 0 44px; /* fixed width */
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ft-gold);
  font-size: 20px;
  line-height: 1;
}

.ft-contact div {
  flex: 1; /* take remaining width */
  min-width: 0;
}

.ft-contact .label {
  font-size: 0.85rem;
  color: #b9d2ef;
  margin-bottom: 2px;
  line-height: 1.2;
}

.ft-contact .value {
  color: #fff;
  text-decoration: none;
  line-height: 1.4;
  word-break: break-word;
}

.ft-contact .value:hover {
  text-decoration: underline;
}






.info-section {
  border-top: 2px solid #e0e6ed;
  font-size: 0.95rem;
  color: #333;
}

.info-section h5 {
  color: #00498c;
}

.info-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.info-link {
  color: #00498c;
  font-weight: 600;
  text-decoration: none;
  margin: 0 4px;
}

.info-link:hover {
  text-decoration: underline;
}





:root{
  --brand:#00498c;
  --brand-700:#003a71;
  --gold:#ffffff;
  --soft:#f4f7fb;
  --ink:#0e2840;
  --txt:#2b3d52;
  --muted:#ffffff;
  --radius:22px;
  --shadow:0 18px 35px rgba(0,0,0,.10);
}
.fw-700{font-weight:700}.fw-800{font-weight:800}
.opacity-90{opacity:.9}
.abt-section{padding:56px 0}
.bg-soft{background:var(--soft)}
.abt-h2{font-weight:800;color:var(--brand);letter-spacing:.3px}

/* HERO */
.abt-hero{
  min-height:320px;
  background:
   radial-gradient(1200px 380px at 50% -50%, rgba(255,255,255,.12), transparent 60%),
   linear-gradient(180deg, var(--brand-700), var(--brand));
}
.abt-hero h1{font-size:2.6rem}

/* Popular services cards */
.svc-card{
  position:relative;display:block;border-radius:28px;overflow:hidden;
  box-shadow:var(--shadow);transform:translateZ(0);
}
.svc-img{width:100%;height:220px;object-fit:cover;display:block}
.svc-card::after{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 58%, rgba(0,0,0,.55));
}
.svc-chip{
  position:absolute;left:18px;right:18px;bottom:14px;z-index:2;
  background:linear-gradient(180deg,#0f4f93,#0b3e73);
  color:#fff;font-weight:800;border-radius:14px;padding:10px 14px;text-align:center;
  box-shadow:0 10px 18px rgba(0,0,0,.25);
}
.svc-card:hover{transform:translateY(-6px);transition:.25s}

/* Mission/Vision cards */
.mv-card{
  background:#fff;border-radius:var(--radius);
  box-shadow:var(--shadow);padding:28px;
  border:1px solid #e6edf6;min-height:220px;
}
.mv-icon{
  width:58px;height:58px;border-radius:16px;background:#e9f1fb;
  display:flex;align-items:center;justify-content:center;
  color:var(--brand);font-size:28px;margin-bottom:10px;
}
.mv-title{font-weight:800;color:var(--brand);margin-bottom:8px}
.note-tile{
  background:#fff;border:1px dashed #cbd7ea;border-radius:16px;
  padding:14px 16px;color:#4a5c75;box-shadow:0 6px 20px rgba(0,0,0,.04)
}
.note-label{color:var(--brand);font-weight:800}

/* Story bubble */
.story-bubble{
  background:#fff;border-radius:26px;box-shadow:var(--shadow);
  padding:28px;border:1px solid #e6edf6
}

/* Stand for (feature) cards */
.stand-card{
  background:#fff;border-radius:20px;border:1px solid #e6edf6;
  box-shadow:0 14px 30px rgba(0,0,0,.06);padding:22px;height:100%;
}
.stand-icon{
  width:54px;height:54px;border-radius:14px;background:#e9f1fb;
  display:flex;align-items:center;justify-content:center;color:var(--brand);font-size:24px;margin-bottom:8px
}
.stand-card h5{font-weight:800;color:var(--ink);margin-bottom:6px}
.stand-card p{color:var(--txt)}

/* Steps */
.step-card{
  background:#fff;border-radius:22px;border:1px solid #e6edf6;
  box-shadow:var(--shadow);padding:24px;height:100%
}
.step-num{
  width:44px;height:44px;border-radius:50%;background:var(--brand);
  color:#fff;font-weight:800;display:flex;align-items:center;justify-content:center;margin-bottom:10px
}

/* Panel tile */
.panel-tile{
  background:#fff;border:1px solid #e6edf6;border-radius:20px;box-shadow:var(--shadow);padding:22px
}
.panel-tile p{margin-bottom:10px;color:var(--txt)}

/* FAQ themed */
.abt-acc .accordion-item{border:none;border-radius:16px;overflow:hidden;margin-bottom:10px;box-shadow:var(--shadow)}
.abt-acc .accordion-button{font-weight:700;color:var(--brand);background:#fff;padding:16px 20px}
.abt-acc .accordion-button::after{display:none}
.abt-acc .accordion-button::before{
  content:'+';margin-right:auto;order:2;position:absolute;right:16px;color:var(--brand);font-size:1.4rem
}
.abt-acc .accordion-button:not(.collapsed){background:var(--brand);color:#fff}
.abt-acc .accordion-button:not(.collapsed)::before{content:'−';color:#fff}
.abt-acc .accordion-body{background:#fff;color:var(--txt)}

/* Info tile */
.info-tile{
  background:#fff;border-radius:18px;border:1px solid #e6edf6;
  box-shadow:var(--shadow);padding:18px
}
.info-link{color:var(--brand);font-weight:700;text-decoration:none}
.info-link:hover{text-decoration:underline}

/* Reveal on scroll */
.reveal{opacity:0;transform:translateY(22px);transition:all .6s cubic-bezier(.2,.65,.2,1)}
.reveal.show{opacity:1;transform:none}

/* Typography helpers */
/* p{color:var(--txt)} */

/* Mobile tweaks */
@media (max-width: 575.98px){
  .abt-hero h1{font-size:2.1rem}
  .svc-img{height:190px}
}




/* Compact Compliance Bar */
.compliance-bar {
  background: #003a70;  /* darker blue than theme */
  color: #eaf2fb;
  font-size: 0.85rem;
  border-top: 2px solid #ffffff; /* gold accent */
}
.compliance-bar i {
  color: #ffffff;
}
.compliance-bar p {
  margin: 0;
  line-height: 1.4;
}
/* Compliance Box */
.compliance-box {
  background: #f4f8fc;
}
.compliance-wrapper {
  background: #fff;
  border-left: 6px solid #00498c;
}
.compliance-title {
  font-weight: 800;
  color: #00498c;
}
.compliance-wrapper ul li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #333;
}
.text-gold {
  color: #ffffff;
}






/* Hero */
.fleet-hero {
  background: linear-gradient(180deg, #003a70, #00498c);
  min-height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fleet-hero h1 { font-size: 2.4rem; }

/* Fleet Cards */
.fleet-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.fleet-img-wrap {
  position: relative;
  overflow: hidden;
}
.fleet-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s ease;
}
.fleet-card:hover .fleet-img {
  transform: scale(1.05);
}

.fleet-overlay {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(0,73,140,.9);
  color: #fff;
  padding: 6px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .9rem;
}

.fleet-body {
  padding: 18px;
}
.fleet-body h5 {
  font-weight: 800;
}
.fleet-specs {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.fleet-specs li {
  font-size: .9rem;
  margin-bottom: 6px;
  color: #333;
}
.fleet-specs i {
  color: #00498c;
  margin-right: 6px;
}

/* Reveal Animation */
.reveal { opacity:0; transform:translateY(20px); transition: all .6s ease; }
.reveal.show { opacity:1; transform:none; }

/* Disclaimer */
.fleet-disclaimer {
  border-top: 2px solid #e4eaf1;
  font-size: .9rem;
}
/* CTA Hero */
.fleet-cta {
  background: linear-gradient(135deg, #003a70, #00498c);
  border-radius: 0;
}
.badge-service {
  background: rgba(255,255,255,.15);
  color: #fff;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .9rem;
  transition: background .3s ease;
}
.badge-service:hover {
  background: #ffffff;
  color: #003a70;
}

/* Contact Box */
.fleet-cta-box {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

/* Compare Table */
.fleet-compare table {
  border-radius: 12px;
  overflow: hidden;
}
.fleet-compare th {
  background: #00498c;
  color: #fff;
  font-weight: 700;
}









/* Hero */
.contact-hero {
  background: linear-gradient(135deg, #003a70, #00498c);
  border-radius: 0 0 40px 40px;
}

/* Cards */
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform .3s ease, box-shadow .3s ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.contact-card .icon {
  font-size: 2rem;
  color: #00498c;
  margin-bottom: 12px;
}
.contact-link {
  color: #00498c;
  font-weight: 600;
  text-decoration: none;
}
.contact-link:hover { text-decoration: underline; }

/* Form */
.contact-form .form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 12px;
}
.contact-form button {
  background: #00498c;
  border: none;
  border-radius: 8px;
  transition: background .3s ease;
}
.contact-form button:hover { background: #003a70; }

/* Map */
.map-container iframe {
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 767px) {
  .contact-card { padding: 20px; }
  .contact-form button { width: 100%; }
}
/* Theme color */
.text-theme {
  color: #00498c !important;
}

/* Hours Card */
.hours-card {
  background: #ffffff;
  border-left: 5px solid #00498c;
  transition: all 0.3s ease;
}
.hours-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Map Card */
.map-card {
  border: 2px solid #e5eef7;
  transition: all 0.3s ease;
}
.map-card:hover {
  transform: scale(1.01);
  border-color: #00498c;
}

/* Disclaimer */
.disclaimer-box {
  background: #f1f6fb;
  border: 1px solid #d9e6f2;
  color: #333;
}
.disclaimer-box em {
  font-style: normal;
  color: #00498c;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 767px) {
  .hours-card, .map-card {
    margin-bottom: 20px;
  }
}
/* Hero Section */
.airport-hero {
  position: relative;
  height: 20vh;
  min-height: 250px;
  overflow: hidden;
}

/* Background image */
.airport-hero .hero-bg {
  background: url("images/plane-2.png") no-repeat center center/cover;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  transform: scale(1.1); /* subtle zoom */
}



/* .maxi-hero .mhero-bg { */
  /* background: url("images/baby-seat-taxi-sydney-services.jpeg") no-repeat center center/cover; */
  /* position: absolute; */
  /* top: 0; left: 0; */
  /* width: 100%; height: 100%; */
  /* z-index: 1; */
  /* transform: scale(1.1); /* subtle zoom */ */
/* } */


/* Overlay */
.airport-hero .overlay {
  background: rgba(0, 0, 0, 0.55);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
}
/* Overlay */
.airport-hero .overlay {
  background: rgba(0, 0, 0, 0.55);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
}

/* Content */
.airport-hero .hero-content {
  position: relative;
  z-index: 3;
}

/* Theme Button */
.btn-theme {
  background: #00498c;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.btn-theme:hover {
  background: #003a70;
  transform: translateY(-2px);
}

/* Fade animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeInUp 1s ease forwards; }
.animate-fade-in-delay { animation: fadeInUp 1.3s ease forwards; }

/* Responsive */
@media (max-width: 767px) {
  .airport-hero {
            height: 3vh;
        min-height: 241px;
  }
  .airport-hero h1 {
    font-size: 2rem;
  }
  .airport-hero p {
    font-size: 1rem;
  }
}




/* Hero Section */
.maxi-hero {
  position: relative;
  height: 20vh;
  min-height: 250px;
  overflow: hidden;
}

/* Background image */
.maxi-hero .mhero-bg {
  background: url("images/Maxi-Cabs-With-Baby-Seat.jpg") no-repeat center center/cover;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  transform: scale(1.1); /* subtle zoom */
}


.premium-heading {
  font-family: 'Playfair Display', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Luxury serif + fallback */
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a; /* Deep charcoal for elegance */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.05);
  line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .premium-heading {
    font-size: 32px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .premium-heading {
    font-size: 20px;
    letter-spacing: 0.5px;
  }
}


/* Overlay */
.maxi-hero .overlaysm {
  background: rgba(0, 0, 0, 0.55);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
}

/* Content */
.maxi-hero .hero-content {
  position: relative;
  z-index: 3;
}

/* Theme Button */
.btn-theme {
  background: #00498c;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.btn-theme:hover {
  background: #003a70;
  transform: translateY(-2px);
}

/* Fade animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeInUp 1s ease forwards; }
.animate-fade-in-delay { animation: fadeInUp 1.3s ease forwards; }

/* Responsive */
@media (max-width: 767px) {
  .maxi-hero {
    height: 30vh;
    min-height: 241px;
  }
  .maxi-hero h1 {
    font-size: 2rem;
  }
  .maxi-hero p {
    font-size: 1rem;
  }
}

/* Hero Section */
.booking-hero {
  position: relative;
  height: 20vh;
  min-height: 250px;
  overflow: hidden;
}

/* Background image */
.booking-hero .bhero-bg {
  background: url("images/Sedan-Lexus-Taxi.jpg") no-repeat center center/cover;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  transform: scale(1.1); /* subtle zoom */
}

/* Overlay */
.booking-hero .overlayss {
  background: rgba(0, 0, 0, 0.55);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
}

/* Content */
.booking-hero .hero-content {
  position: relative;
  z-index: 3;
}

/* Theme Button */
.btn-theme {
  background: #00498c;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.btn-theme:hover {
  background: #003a70;
  transform: translateY(-2px);
}

/* Fade animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeInUp 1s ease forwards; }
.animate-fade-in-delay { animation: fadeInUp 1.3s ease forwards; }

/* Responsive */
@media (max-width: 767px) {
  .booking-hero {
    height: 30vh;
    min-height: 241px;
  }
  .booking-hero h1 {
    font-size: 2rem;
  }
  .booking-hero p {
    font-size: 1rem;
  }
}



/* Section Base */
.airport-why {
  background: #f7fafd;
}
.section-title {
  text-align: center;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #00498c;
  position: relative;
}
.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ffffff;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Grid Layout */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Card Styling */
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid transparent;
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: #00498c;
  box-shadow: 0 12px 28px rgba(0,73,140,0.18);
}

/* Icon Circle */
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00498c, #003a70);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.why-card:hover .why-icon {
  transform: scale(1.1);
}

.why-card h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #00498c;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 575px) {
  .section-title {
    font-size: 1.6rem;
  }
  .why-card {
    padding: 1.5rem 1.2rem;
  }
}
/* Section Base */
.airport-steps {
  background: #ffffff;
}
.section-title {
  text-align: center;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #00498c;
  position: relative;
}
.section-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #00498c;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Grid Layout */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Step Cards */
.step-card {
  position: relative;
  background: #f9fbfd;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,73,140,0.15);
}

/* Step Number */
.step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background: #00498c;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  padding: 24px;
    margin-top: 6px;
}

/* Step Icon */
.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00498c, #003a70);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.step-card:hover .step-icon {
  transform: rotate(10deg) scale(1.05);
}

.step-card h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #00498c;
}
.step-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 575px) {
  .section-title {
    font-size: 1.6rem;
  }
  .step-card {
    padding: 1.5rem 1.2rem;
  }
}
/* Service Section */
.airport-service {
  position: relative;
}
.service-title {
  font-weight: 800;
  color: #00498c;
  margin-bottom: 1rem;
}
.service-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-img-wrap:hover .service-img {
  transform: scale(1.05);
}
.service-list {
  list-style: none;
  padding-left: 0;
}
.service-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #444;
}
.service-list i {
  color: #00498c;
  margin-right: 8px;
}
.btn-theme {
  background: #00498c;
  color: #fff;
  border-radius: 6px;
  padding: 10px 24px;
  transition: background .3s ease;
}
.btn-theme:hover {
  background: #003a70;
}
/* Section Title */
.fare-section .section-title {
  text-align: center;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #00498c;
  position: relative;
}
.fare-section .section-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #00498c;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Fare Cards */
.fare-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.fare-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.fare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,73,140,0.18);
}
.fare-card.highlight {
  border: 2px solid #00498c;
}
.fare-card h5 {
  font-weight: 700;
  color: #00498c;
  margin-bottom: 0.75rem;
}
.fare-card .fare-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00498c;
  margin-bottom: 1rem;
}
.fare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fare-card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #444;
}

/* Compare Table */
.fare-section table {
  border-radius: 10px;
  overflow: hidden;
}
.fare-section th {
  background: #00498c !important;
  color: #fff;
  font-weight: 700;
}
/* Payment Methods */
.payment-methods {
  margin-top: 2rem;
}
.pay-badge {
  background: #fff;
  color: #00498c;
  border: 2px solid #00498c;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.pay-badge:hover {
  background: #00498c;
  color: #fff;
  transform: translateY(-3px);
}
/* Sticky CTA Bar */
.booking-cta-bar {
  position: fixed;
  bottom: -100px;   /* Hidden at start */
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  background: #fff;
  padding: 10px 16px;
  gap: 12px;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;   /* Prevent clicks while hidden */
  transition: all 0.6s ease-out;
}

/* When active */
.booking-cta-bar.active {
  bottom: 0;
  opacity: 1;
  pointer-events: auto;
}

/* Buttons */
.cta-btn {
  flex: 1;
  text-align: center;
  padding: 16px 14px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.cta-btn i {
  font-size: 1.3rem;
}

.call-btn {
  background: #00498c;
  color: #ffffff;
}
.call-btn:hover {
  background: #bebebe;
  color: #002f57;
  transform: translateY(-2px);
}

.book-btn {
  background: #00498c;
  color: #fff;
}
.book-btn:hover {
  background: #003a70;
  transform: translateY(-2px);
      color: white;
}

/* Desktop: hide bar */
@media (min-width: 768px) {
  .booking-cta-bar {
    display: none !important;
  }
}
/* ===== General Section Styles ===== */
.maxi-family, .maxi-group, .maxi-premium {
  position: relative;
  background: linear-gradient(135deg, #f5f9fc 0%, #dfe9f7 100%);
}
.service-title {
  font-weight: 800;
  color: #00498c;
  margin-bottom: 1rem;
}
.service-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}
.service-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #444;
  display: flex;
  align-items: flex-start;
}
.service-list i {
  color: #00498c;
  margin-right: 8px;
  font-size: 1rem;
  margin-top: 3px;
}
.btn-theme {
  background: #00498c;
  color: #fff;
  border-radius: 6px;
  padding: 10px 24px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.btn-theme:hover {
  background: #003a70;
  transform: translateY(-2px);
  color: white;
}

/* ===== Image Styling ===== */
.img-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.img-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,73,140,0.25);
}

/* ===== Section Backgrounds ===== */
.maxi-group {
  background: #f7fafd;
}
.maxi-premium {
  background: linear-gradient(135deg, #f5f9fc 0%, #dfe9f7 100%);
  color: #333;
}
.maxi-premium .service-title {
  color: #00498c;
}
.maxi-premium .service-list li {
  color: #555;
}
.maxi-premium .btn-theme {
  background: #00498c;
  color: #fff;
}
.maxi-premium .btn-theme:hover {
  background: #003a70;
}


/* ===== Scroll-in Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
.section-title {
  font-weight: 800;
  color: #00498c;
  margin-bottom: 1rem;
  text-align: center;
}
.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #00498c;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Compliance cards */
.compliance-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.compliance-card i {
  font-size: 2rem;
  color: #00498c;
  margin-bottom: 1rem;
}
.compliance-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,73,140,0.18);
}

/* Fare info list */
.fare-points {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}
.fare-points li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fare-points i {
  color: #00498c;
  font-size: 1.2rem;
}
/* Why Maxi Strip */
.why-maxi {
  background: #00498c; /* theme blue */
  color: #fff;
  text-align: center;
}
.why-maxi .section-title {
  font-weight: 800;
  color: #ffffff; /* gold accent */
}
.why-item {
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-item i {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.why-item h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.why-item p {
  font-size: 0.9rem;
  opacity: 0.95;
}
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}



/* Small inline spinner */
#fareSpinner {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid #ccc;
  border-top: 2px solid #0056b3;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-left: 6px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#fareUpdated {
  font-size: 0.85rem;
  color: #555;
  margin-top: 4px;
}



/* Responsive tweaks */
@media (max-width: 767px) {
  .why-item {
    margin-bottom: 1rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #00498c;
    text-align: center;
  
   }
   
   .hero-subtitle {
    font-size: 1.1rem;
    margin: 1rem 0 1.5rem;
    color: #555;
    text-align: center;
	 }
	 
	 .hero-text {
    color: #333;
    text-align: center;
	} 
}
@media (max-width: 767px) {
	
.instant-booking {
  font-size: 1.2em;
  font-weight: 600; /* Slightly lighter than bold for elegance */
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px; /* a little more breathing room */
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.02em; /* subtle letter spacing for readability */
}

.instant-booking i {
  font-size: 1.5em;
  color: #fff;
  flex-shrink: 0; /* keep icon size consistent */
  transition: color 0.3s ease;
}

/* Add subtle hover effect on icon for interactivity */
.instant-booking i:hover {
  color: #aad8ff;
  cursor: default;
}

.instant-booking a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

/* Underline on hover for better affordance */
.instant-booking a:hover {
  text-decoration: underline;
  color: #aad8ff;
}

.pulse {
  animation: pulse 1.4s infinite ease-in-out;
  transform-origin: center;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}





/* ===== Booking Steps Section ===== */
.booking-steps {
  background: #f8fafc; /* soft background */
}

.booking-steps .section-title {
  color: #00498c;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.booking-steps .col-md-3 {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-steps i {
  color: #00498c;
  background: #eaf2fb;
  border-radius: 50%;
  padding: 18px;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

.booking-steps h5 {
  font-weight: 700;
  margin-bottom: 8px;
  color: #003a70;
}

.booking-steps p {
  font-size: 0.95rem;
  color: #555;
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hover Effect */
.booking-steps .col-md-3:hover {
  transform: translateY(-6px);
}

.booking-steps .col-md-3:hover i {
  background: #00498c;
  color: #fff;
  transform: scale(1.05);
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.booking-steps .col-md-3 {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.booking-steps .col-md-3:nth-child(1) { animation-delay: 0.2s; }
.booking-steps .col-md-3:nth-child(2) { animation-delay: 0.4s; }
.booking-steps .col-md-3:nth-child(3) { animation-delay: 0.6s; }
.booking-steps .col-md-3:nth-child(4) { animation-delay: 0.8s; }

/* Responsive */
@media (max-width: 767px) {
  .booking-steps i {
    font-size: 1.6rem;
    padding: 14px;
  }
  .booking-steps p {
    font-size: 0.9rem;
  }
}
/* ===== Why Book Online Section ===== */
.why-book {
  background: #f9fbfd;
}

.why-book .section-title {
  color: #00498c;
  font-weight: 700;
  position: relative;
}

.why-book .section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #ffd24d;
  margin: 12px auto 0;
  border-radius: 2px;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.why-card i {
  font-size: 2rem;
  color: #00498c;
  background: #eaf2fb;
  border-radius: 50%;
  padding: 18px;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #003a70;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Hover Effects */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

.why-card:hover i {
  background: #00498c;
  color: #fff;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 767px) {
  .why-card {
    padding: 22px 16px;
  }
  .why-card i {
    font-size: 1.6rem;
    padding: 14px;
  }
}
