
/* ==========================================
   UNIQUE TAXI WEBSITE NAVBAR
   Blue / White / Taxi Accent Theme
========================================== */

.top_pnl,
.navbar,
.Nav-background,
.navbar * {
    box-sizing: border-box;
}

/* =========================
   TOP TAXI DISPATCH BAR
========================= */

.top_pnl {
    background: #063874;
    color: #ffffff;
    padding: 0;
    position: relative;
    z-index: 1000;
}

.top_pnl .container {
    max-width: 1320px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    flex-wrap: wrap;
}

.welcome-text::before {
    content: "\f1b9";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    color: #063874;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.welcome-text a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.welcome-text a:hover {
    background: #ffffff;
    color: #063874;
}

/* =========================
   MAIN NAVBAR
========================= */

.Nav-background {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff !important;
    border-bottom: 1px solid #dfe8f3;
    box-shadow: 0 8px 24px rgba(1, 32, 83, 0.08);
}

.Nav-background::after {
    content: "";
    display: block;
    height: 5px;
    background: repeating-linear-gradient(
        90deg,
        #0056b3 0 22px,
        #ffffff 22px 34px,
        #063874 34px 56px,
        #ffffff 56px 68px
    );
}

.navbar {
    padding: 0 !important;
}

.navbar > .container-fluid {
    max-width: 1200px;
    min-height: 86px;
    margin: 0 auto !important;
    padding: 0 22px !important;
    display: flex;
    align-items: center;
}

/* =========================
   LOGO
========================= */

.navbar-brand {
    height: 86px;
    padding: 0 !important;
    margin: 0 28px 0 0 !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    width: auto !important;
    height: 72px !important;
    max-height: 72px !important;
    object-fit: contain;
    display: block;
}

/* =========================
   MENU
========================= */

.navbar-collapse {
    height: 100%;
}

.navbar-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.navbar-light .navbar-nav .nav-link,
.navbar-nav .nav-link {
    position: relative;
    color: #0245a0 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    padding: 31px 9px !important;
    line-height: 20px !important;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    bottom: 21px;
    height: 3px;
    border-radius: 999px;
    background: #0056b3;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #012053 !important;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: scaleX(1);
}

/* =========================
   DROPDOWN
========================= */

.dropdown-menu {
    margin-top: 0 !important;
    padding: 10px;
    min-width: 180px;
    border: 1px solid rgba(0, 86, 179, 0.12);
    border-radius: 0 0 16px 16px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(1, 32, 83, 0.16);
}

.dropdown-item {
    color: #0245a0 !important;
    font-size: 14px;
    font-weight: 800 !important;
    padding: 11px 14px;
    border-radius: 10px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #ffffff !important;
    background: #063874 !important;
}

/* =========================
   MOBILE TOGGLER
========================= */

.navbar-toggler {
    border: 2px solid #0056b3 !important;
    border-radius: 8px;
    background: #ffffff;
    padding: 8px 10px;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: none !important;
    width: 24px;
    height: 18px;
    position: relative;
    display: inline-block;
    border-top: 3px solid #0056b3;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    border-top: 3px solid #0056b3;
}

.navbar-toggler-icon::before {
    top: 6px;
}

.navbar-toggler-icon::after {
    top: 12px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1199px) {
    .navbar > .container-fluid {
        padding: 0 16px !important;
    }

    .navbar-brand {
        margin-right: 16px !important;
    }

    .navbar-brand img {
        height: 64px !important;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-nav .nav-link {
        font-size: 13px !important;
        padding: 31px 6px !important;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
    .top_pnl .container {
        min-height: auto;
        padding: 8px 12px;
    }

    .welcome-text {
        gap: 7px;
        font-size: 13px;
    }

    .welcome-text::before {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .navbar > .container-fluid {
        min-height: 72px;
        padding: 8px 15px !important;
    }

    .navbar-brand {
        height: auto;
        margin-right: 0 !important;
    }

    .navbar-brand img {
        height: 54px !important;
        max-height: 54px !important;
    }

    .navbar-toggler {
        margin-left: auto;
    }

    .navbar-collapse {
        width: 100%;
        height: auto;
        margin-top: 10px;
        padding: 10px;
        background: #ffffff;
        border: 1px solid #dfe8f3;
        border-radius: 14px;
        box-shadow: 0 14px 35px rgba(1, 32, 83, 0.12);
    }

    .navbar-nav {
        width: 100%;
        margin-left: 0;
        align-items: stretch;
        gap: 6px;
    }

    .navbar-nav .nav-item {
        display: block;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-nav .nav-link {
        display: block;
        width: 100%;
        padding: 13px 14px !important;
        font-size: 15px !important;
        line-height: 1.4 !important;
        border-radius: 10px;
        background: #f4f8fd;
        color: #0245a0 !important;
    }

    .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: #063874;
        color: #ffffff !important;
    }

    .dropdown-menu {
        margin: 6px 0 0 !important;
        padding: 6px;
        border-radius: 12px;
        box-shadow: none;
        background: #f8fbff;
    }

    .dropdown-item {
        padding: 12px 14px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 420px) {
    .welcome-text {
        font-size: 12px;
    }

    .welcome-text a {
        padding: 4px 9px;
    }

    .navbar-brand img {
        height: 48px !important;
    }

    .navbar-toggler {
        padding: 7px 9px;
    }
}



/* ==========================================
   HERO + BOOKING SECTION
   Premium Luxury Taxi Design
========================================== */

.sld_area {
    position: relative;
    width: 100%;
    min-height: 760px;
    background:
        linear-gradient(rgba(1, 32, 83, 0.76), rgba(0, 0, 0, 0.78)),
        url("image/cover1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0 35px;
    overflow: hidden;
}

.sld_ovrly {
    width: 100%;
    position: relative;
    z-index: 2;
}

.sld_ovrly > h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 18px;
    text-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.sld_ovrly > h1 i {
    color: #dbe9ff;
}

.sld_area .container {
    max-width: 1180px;
}

.sld_area .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Text */
.sld_data {
    text-align: center;
    margin-bottom: 28px;
}

.sld_data h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sld_data p {
    color: #e8eef7;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

/* Booking Wrapper */
.book-bg {
    width: 100% !important;
    max-width: 980px;
    margin: 0 auto !important;
    float: none !important;
    padding: 0 !important;
    position: relative;
    z-index: 3;
}

.book-data {
    width: 100% !important;
    float: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Tabs */
.tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f2f6fb;
    border-bottom: 1px solid #dde7f3;
}

.tabs li {
    margin: 0;
    padding: 0;
}

.tabs li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 62px;
    padding: 16px 20px;
    text-decoration: none;
    color: #012053;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    transition: all 0.25s ease;
}

.tabs li.active a,
.tabs li a:hover {
    background: linear-gradient(135deg, #0056b3, #012053);
    color: #ffffff;
}

.tabs li a i {
    font-size: 18px;
}

/* Form Area */
.tab_content {
    padding: 30px;
}

.book-inner {
    width: 100%;
    float: none !important;
}

.form-horizontal {
    width: 100%;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px 16px;
}

.form-group > [class*="col-"] {
    padding: 0 8px 14px !important;
}

/* Inputs */
.form-control {
    width: 100% !important;
    height: 48px;
    border: 1px solid #d9e2ef !important;
    border-radius: 12px !important;
    background: #f8fbff !important;
    color: #263238 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 10px 14px !important;
    box-shadow: none !important;
    transition: all 0.25s ease;
}

textarea.form-control {
    height: auto;
    min-height: 95px;
    resize: vertical;
}

.form-control:focus {
    background: #ffffff !important;
    border-color: #0056b3 !important;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.12) !important;
    outline: none;
}

.form-control::placeholder {
    color: #7b8794;
}

/* Time Select */
.time-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-select {
    width: 100%;
}

/* Return Trip */
.form-group.text-left {
    background: #f2f6fb;
    border: 1px solid #dde7f3;
    border-radius: 14px;
    padding: 13px 16px !important;
    margin: 0 0 18px 0 !important;
    font-size: 15px;
    font-weight: 700;
    color: #012053 !important;
}

input[type="radio"] {
    accent-color: #0056b3;
    transform: scale(1.1);
}

/* Submit Button */
input[type="submit"].btn,
.form-button {
    min-width: 190px;
    height: 50px;
    padding: 12px 32px !important;
    border: none !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #0056b3, #012053) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 14px 28px rgba(0, 86, 179, 0.28);
    transition: all 0.25s ease;
    margin: 0 auto !important;
}

input[type="submit"].btn:hover,
.form-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #012053, #0056b3) !important;
    box-shadow: 0 18px 35px rgba(0, 86, 179, 0.34);
}

/* Airport tab label */
.group {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 800;
}

/* Footer Disclaimer */
.footer-disclaimer {
    margin-top: 28px !important;
    background: rgb(0 90 177);
    border-radius: 14px;
    backdrop-filter: blur(6px);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
    .sld_area {
        min-height: auto;
        padding: 52px 0 28px;
    }

    .sld_ovrly > h1 {
        font-size: 34px;
        padding: 0 15px;
    }

    .sld_data h2 {
        font-size: 26px;
    }

    .sld_data p {
        font-size: 16px;
    }

    .book-bg {
        max-width: 92%;
    }

    .tab_content {
        padding: 24px;
    }

    .tabs li a {
        font-size: 15px;
        min-height: 58px;
        padding: 14px 12px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
    .sld_area {
        padding: 38px 0 22px;
        background-position: center top;
    }

    .sld_ovrly > h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .sld_ovrly > h1 i {
        font-size: 21px !important;
    }

    .sld_data {
        margin-bottom: 20px;
        padding: 0 12px;
    }

    .sld_data h2 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .sld_data p {
        font-size: 15px;
    }

    .book-bg {
        max-width: calc(100% - 24px);
    }

    .book-data {
        border-radius: 18px;
    }

    .tabs {
        grid-template-columns: 1fr;
    }

    .tabs li a {
        min-height: auto;
        padding: 15px 12px;
        font-size: 14px;
        border-bottom: 1px solid #dde7f3;
    }

    .tab_content {
        padding: 18px 14px 20px;
    }

    .form-group {
        display: block;
        margin: 0;
    }

    .form-group > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0 12px 0 !important;
    }

    .form-control {
        height: 46px;
        font-size: 14px !important;
        border-radius: 10px !important;
    }

    textarea.form-control {
        min-height: 90px;
    }

    .time-wrapper {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .form-group.text-left {
        font-size: 14px;
        line-height: 1.7;
        padding: 12px !important;
        margin-bottom: 14px !important;
    }

    input[type="submit"].btn,
    .form-button {
        width: 100%;
        min-width: 100%;
        height: 48px;
        font-size: 15px !important;
    }

    .footer-disclaimer {
        margin: 22px 12px 0 !important;
        font-size: 11px !important;
        line-height: 1.6 !important;
        padding: 12px !important;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 420px) {
    .sld_ovrly > h1 {
        font-size: 23px;
    }

    .sld_data h2 {
        font-size: 20px;
    }

    .tabs li a {
        font-size: 13px;
    }

    .time-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ================================
   PREMIUM SILVER TAXI NAVBAR
   STYLE B INSPIRED (REFINED)
================================ */

/* Navbar Base */
.custom-navbar {
  background: linear-gradient(90deg, #004990, #003366);
  padding: 0.85rem 1.2rem;
  border-bottom: 2px solid rgba(255,255,255,0.15);
  z-index: 1050;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

/* Container spacing control */
.custom-navbar .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.navbar-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

/* Nav Links */
.custom-navbar .nav-link {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 15.5px;
  margin: 0 0.6rem;
  position: relative;
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
}

/* Hover underline animation */
.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
  width: 100%;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #ffffff;
}

/* Dropdown Main */
.custom-navbar .dropdown-menu {
  border: none;
  border-radius: 10px;
  padding: 8px;
  margin-top: 12px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  animation: fadeDrop 0.25s ease-in-out;
}

/* Dropdown Animation */
@keyframes fadeDrop {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dropdown Items */
.custom-navbar .dropdown-item {
  color: #004990;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 14.5px;
}

.custom-navbar .dropdown-item:hover {
  background: #004990;
  color: #fff;
  transform: translateX(4px);
}

/* Align nav right */
.custom-navbar .navbar-nav {
  gap: 4px;
}

/* ================================
   TOGGLER (MOBILE)
================================ */

.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
      background: rgb(6 56 116);
  padding: 8px 10px;
  border-radius: 6px;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

/* ================================
   MOBILE MENU
================================ */

@media (max-width: 991px) {
  .custom-navbar .navbar-collapse {
    background: #003366;
    margin-top: 10px;
    padding: 15px;
    border-radius: 12px;
  }

  .custom-navbar .nav-link {
    padding: 12px 10px;
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 16px;
  }

  .custom-navbar .nav-link::after {
    display: none;
  }

  .custom-navbar .dropdown-menu {
    background: #fff;
    border-radius: 8px;
  }
}

/* ================================
   ACTIVE STATE ENHANCEMENT
================================ */

.custom-navbar .nav-link.active {
  font-weight: 600;
  color: #ffffff;
}

/* ================================
   HOVER LUXURY EFFECT
================================ */

.custom-navbar:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}


/* =========================================
   WHY CHOOSE SECTION – PREMIUM STYLE B
========================================= */

.why-choose-section {
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #002f6c;
}

/* Wrapper */
.why-choose-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.why-choose-title {
  font-size: 38px;
  font-weight: 800;
  color: #004990;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Subtitle */
.why-choose-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Grid Layout */
.why-choose-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

/* Feature Card */
.why-choose-feature {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect (luxury lift) */
.why-choose-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 73, 144, 0.15);
}

/* Top accent line */
.why-choose-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #004990, #00aaff);
}

/* Feature Heading */
.feature-heading {
  font-size: 20px;
  font-weight: 700;
  color: #004990;
  margin-bottom: 10px;
}

/* Feature Text */
.feature-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* CTA Container */
.why-choose-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Primary Button */
.why-choose-btn-primary {
  background: linear-gradient(135deg, #004990, #0066cc);
  color: #fff;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 73, 144, 0.25);
}

.why-choose-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 73, 144, 0.35);
}

/* Secondary Button */
.why-choose-btn-secondary {
  background: transparent;
  color: #004990;
  border: 2px solid #004990;
  padding: 12px 34px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-choose-btn-secondary:hover {
  background: #004990;
  color: #fff;
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {
  .why-choose-title {
    font-size: 28px;
  }

  .why-choose-subtitle {
    font-size: 16px;
  }

  .why-choose-feature {
    padding: 22px;
  }

  .why-choose-btn-primary,
  .why-choose-btn-secondary {
    width: 100%;
    text-align: center;
  }
}


/* =========================================
   SILVER TAXI SERVICE SECTION – PREMIUM STYLE B
========================================= */

.silver-taxi-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #002f6c;
}

/* Container Layout */
.flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT TEXT AREA */
.silver-text {
  flex: 1 1 520px;
  min-width: 300px;
}

/* Heading */
.silver-text h2 {
  font-size: 38px;
  font-weight: 800;
  color: #004990;
  margin-bottom: 18px;
  line-height: 1.2;
  position: relative;
}

/* Accent underline */
.silver-text h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #004990, #00aaff);
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 4px;
}

/* Paragraphs */
.silver-text p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

/* Fix last paragraph spacing */
.silver-text p:last-of-type {
  margin-bottom: 28px;
}

/* BUTTON GROUP */
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, #004990, #0066cc);
  color: #fff;
  border: none;
  padding: 13px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 73, 144, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 73, 144, 0.35);
}

/* Secondary Button */
.btn-secondary {
  background: transparent;
  border: 2px solid #004990;
  color: #004990;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #004990;
  color: #fff;
  transform: translateY(-3px);
}

/* IMAGE AREA */
.silver-image {
  flex: 1 1 450px;
  min-width: 300px;
  position: relative;
}

/* Image styling */
.silver-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover zoom effect */
.silver-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 45px rgba(0, 73, 144, 0.18);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 992px) {
  .flex-container {
    gap: 35px;
  }

  .silver-text h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .silver-taxi-section {
    padding: 60px 15px;
  }

  .flex-container {
    flex-direction: column;
    text-align: center;
  }

  .silver-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .btn-group {
    justify-content: center;
  }

  .silver-text h2 {
    font-size: 26px;
  }

  .silver-text p {
    font-size: 15.5px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}


/* =========================================
   OUR SERVICES + FLEET – PREMIUM STYLE B
========================================= */

/* =========================
   SERVICES SECTION
========================= */

.our-services-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #002f6c;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #004990;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #004990, #00aaff);
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

.section-subtitle {
  font-size: 17px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Card */
.service-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover lift */
.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 73, 144, 0.15);
}

/* Top accent line */
.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #004990, #00aaff);
}

/* Icon */
.service-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

/* Title */
.service-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #004990;
  margin-bottom: 10px;
}

/* Text */
.service-item p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* =========================
   FLEET SECTION
========================= */

.our-fleet-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.our-fleet-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Fleet Grid */
.fleet-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Fleet Card */
.fleet-item {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.fleet-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 35px rgba(0, 73, 144, 0.18);
}

/* Image */
.fleet-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

/* Image zoom on hover */
.fleet-item:hover img {
  transform: scale(1.05);
}

/* Title */
.fleet-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #004990;
  margin-bottom: 10px;
}

/* Description */
.fleet-item p {
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Book Button */
.btn-book {
  display: inline-block;
  background: linear-gradient(135deg, #004990, #0066cc);
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 73, 144, 0.25);
}

.btn-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 73, 144, 0.35);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .service-item,
  .fleet-item {
    padding: 22px;
  }

  .btn-book {
    width: 100%;
    text-align: center;
  }
}


/* =========================================
   HOW IT WORKS + CTA + PAYMENT
   PREMIUM STYLE B UPGRADE
========================================= */

/* =========================
   HOW IT WORKS SECTION
========================= */

.how-it-works {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  padding: 90px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #002f6c;
  text-align: center;
}

.howit-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.how-it-works .section-title {
  font-size: 38px;
  font-weight: 800;
  color: #004990;
  margin-bottom: 10px;
}

.how-it-works .section-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #004990, #00aaff);
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

/* Description */
.section-desc {
  font-size: 17px;
  color: #555;
  max-width: 700px;
  margin: 20px auto 50px;
  line-height: 1.6;
}

/* Steps Layout */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

/* Step Card */
.step {
  background: #ffffff;
  padding: 30px 22px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover lift */
.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0, 73, 144, 0.15);
}

/* Top accent line */
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #004990, #00aaff);
}

/* Step Number */
.step-number {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  width: 48px;
  height: 48px;
  line-height: 48px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #004990, #0066cc);
  box-shadow: 0 6px 15px rgba(0, 73, 144, 0.25);
}

/* Step Title */
.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #004990;
  margin-bottom: 10px;
}

/* Step Text */
.step p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* =========================
   CTA SECTION
========================= */

.silver-cta-section {
  background: linear-gradient(135deg, #004990, #002f6c);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.silver-cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* CTA Title */
.silver-cta-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

/* Buttons */
.silver-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Primary Button */
.silver-btn-primary {
  background: #ffffff;
  color: #004990;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.silver-btn-primary:hover {
  transform: translateY(-3px);
  background: #eaf3ff;
}

/* Outline Button */
.silver-btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 13px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.silver-btn-outline:hover {
  background: #ffffff;
  color: #004990;
  transform: translateY(-3px);
}

/* Subtitle */
.silver-cta-subtitle {
  font-size: 16px;
  color: #cce0ff;
  margin-top: 10px;
}

/* =========================
   PAYMENT SECTION
========================= */

.payment-cabcharge-section {
  background: #f6f9ff;
  padding: 90px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Title */
.payment-cabcharge-section-title {
  font-size: 36px;
  font-weight: 800;
  color: #004990;
  margin-bottom: 12px;
}

.payment-cabcharge-section-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #004990, #00aaff);
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

/* Wrapper */
.images-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto 0;
}

/* Image Card */
.image-box {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.image-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 73, 144, 0.15);
}

/* Image */
.section-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.image-box:hover .section-image {
  transform: scale(1.03);
}

/* Caption */
.image-caption {
  font-size: 15px;
  font-weight: 600;
  color: #004990;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .how-it-works .section-title,
  .silver-cta-title,
  .payment-cabcharge-section-title {
    font-size: 26px;
  }

  .silver-cta-buttons {
    flex-direction: column;
  }

  .silver-btn-primary,
  .silver-btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* =========================================
   PREMIUM FOOTER – STYLE B UPGRADE
========================================= */

.footer-section.white-footer {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  color: #2a2a2a;
  padding: 70px 20px 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   TOP SECTION
========================= */

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* =========================
   BRANDING
========================= */

.footer-logo.dark-logo {
  width: 160px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.footer-logo.dark-logo:hover {
  transform: scale(1.05);
}

.footer-description {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
}

/* =========================
   TITLES
========================= */

.footer-title {
  font-size: 18px;
  font-weight: 800;
  color: #004990;
  margin-bottom: 18px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #004990, #00aaff);
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 4px;
}

/* =========================
   LINKS
========================= */

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: #444;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
  position: relative;
}

/* hover underline animation */
.footer-links-list a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #004990;
  position: absolute;
  left: 0;
  bottom: -3px;
  transition: width 0.3s ease;
}

.footer-links-list a:hover {
  color: #004990;
}

.footer-links-list a:hover::after {
  width: 100%;
}

/* =========================
   CONTACT SECTION
========================= */

.footer-contact p {
  margin-bottom: 12px;
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
}

.footer-contact a {
  color: #004990;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: #002f6c;
  text-decoration: underline;
}

/* =========================
   BOTTOM BAR
========================= */

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-top: 25px;
  padding-top: 20px;
}

/* =========================
   HOVER LIFT EFFECTS
========================= */

.footer-branding,
.footer-nav,
.footer-policies,
.footer-contact {
  transition: transform 0.3s ease;
}

.footer-branding:hover,
.footer-nav:hover,
.footer-policies:hover,
.footer-contact:hover {
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 900px) {
  .footer-top {
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-description {
    text-align: center;
  }

  .footer-links-list a::after {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* =========================================
   ABOUT US – PREMIUM STYLE B UPGRADE
========================================= */

/* HERO SECTION */
.aboutus-hero {
  background: linear-gradient(135deg, #004990, #002f6c);
  padding: 110px 20px 90px;
  text-align: center;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Soft glow overlay */
.aboutus-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  animation: heroGlow 8s infinite linear;
}

@keyframes heroGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.aboutus-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.aboutus-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: #dbe9ff;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* =========================================
   MAIN SECTION
========================================= */

.aboutus-section {
  padding: 90px 20px;
  background: #f6f9ff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #002f6c;
}

.aboutus-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================
   CONTENT BLOCKS
========================================= */

.aboutus-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 70px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* Hover lift */
.aboutus-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 73, 144, 0.15);
}

/* Alternate layout */
.aboutus-block:nth-child(even) {
  flex-direction: row-reverse;
}

/* TEXT */
.aboutus-text {
  flex: 1 1 520px;
}

.aboutus-text h3 {
  font-size: 24px;
  font-weight: 800;
  color: #004990;
  margin-bottom: 12px;
  position: relative;
}

/* underline accent */
.aboutus-text h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #004990, #00aaff);
  display: block;
  margin-top: 8px;
  border-radius: 3px;
}

.aboutus-text p {
  font-size: 15.8px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

/* IMAGE */
.aboutus-image {
  flex: 1 1 420px;
}

.aboutus-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

/* image hover zoom */
.aboutus-block:hover .aboutus-image img {
  transform: scale(1.04);
}

/* =========================================
   HIGHLIGHT BOX
========================================= */

.aboutus-highlight {
  background: linear-gradient(135deg, #eaf3ff, #ffffff);
  border-left: 5px solid #004990;
  padding: 25px;
  border-radius: 12px;
  font-size: 16px;
  color: #333;
  margin: 40px 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* =========================================
   CTA BUTTON AREA (reuse styling)
========================================= */

.btn-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Primary */
.btn-primary {
  background: linear-gradient(135deg, #004990, #0066cc);
  color: #fff;
  padding: 14px 30px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 73, 144, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 73, 144, 0.35);
}

/* Secondary */
.btn-secondary {
  background: transparent;
  border: 2px solid #004990;
  color: #004990;
  padding: 13px 30px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #004990;
  color: #fff;
  transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
  .aboutus-block {
    flex-direction: column !important;
    text-align: center;
  }

  .aboutus-text h3::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .aboutus-hero h1 {
    font-size: 30px;
  }

  .aboutus-hero p {
    font-size: 16px;
  }

  .aboutus-block {
    padding: 22px;
  }

  .aboutus-text p {
    font-size: 15px;
  }
}


/* =========================================
   WHY CHOOSE SILVER CAB (NEW SECTION)
========================================= */

.aboutus-whychoose {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.aboutus-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #004990;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.aboutus-section-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #004990, #00aaff);
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

/* Grid */
.aboutus-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.aboutus-why-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover */
.aboutus-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0, 73, 144, 0.15);
}

/* Top accent line */
.aboutus-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #004990, #00aaff);
}

/* Title */
.aboutus-why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #004990;
  margin-bottom: 10px;
}

/* Text */
.aboutus-why-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .aboutus-section-title {
    font-size: 26px;
  }

  .aboutus-why-card {
    padding: 20px;
  }
}


/* =========================================
   BIG FLEET CARDS – PREMIUM STYLE B
========================================= */

.fleet-big-section {
  padding: 90px 20px;
  background: #f6f9ff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* CARD LAYOUT */
.fleet-big-card {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 70px;
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* hover effect */
.fleet-big-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 73, 144, 0.15);
}

/* reverse layout */
.fleet-big-card.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.fleet-big-image {
  flex: 1;
}

.fleet-big-image img {
  width: 100%;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.fleet-big-card:hover img {
  transform: scale(1.03);
}

/* CONTENT */
.fleet-big-content {
  flex: 1;
}

.fleet-big-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: #004990;
  margin-bottom: 12px;
}

.fleet-big-content p {
  font-size: 15.5px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* LIST */
.fleet-big-content ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.fleet-big-content ul li {
  font-size: 14.5px;
  color: #333;
  margin-bottom: 8px;
}

/* BUTTON */
.fleet-btn {
  display: inline-block;
  background: linear-gradient(135deg, #004990, #0066cc);
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fleet-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,73,144,0.3);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .fleet-big-card {
    flex-direction: column !important;
    text-align: center;
  }

  .fleet-big-content ul {
    list-style-position: inside;
  }
}

@media (max-width: 768px) {
  .fleet-big-section {
    padding: 60px 15px;
  }

  .fleet-big-content h2 {
    font-size: 22px;
  }

  .fleet-btn {
    width: 100%;
    text-align: center;
  }
}


/* =========================================
   FLEET HERO – EXACT SAME AS ABOUT US HERO
========================================= */

.fleethero-wrapper {
  background: linear-gradient(135deg, #004990, #002f6c);
  padding: 110px 20px 80px;
  text-align: center;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

/* SAME GLOW EFFECT AS ABOUT US */
.fleethero-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  animation: heroGlow 8s infinite linear;
}

@keyframes heroGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* CONTAINER */
.fleethero-overlay {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* TITLE */
.fleethead-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 15px;
}

/* SUBTITLE */
.fleethead-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE (SAME FEEL)
========================= */

@media (max-width: 768px) {
  .fleethead-title {
    font-size: 30px;
  }

  .fleethead-subtitle {
    font-size: 16px;
  }
}


/* =========================================
   CONTACT HERO – SAME STYLE AS ABOUT US
========================================= */

.contact-hero {
  background: linear-gradient(135deg, #004990, #002f6c);
  padding: 110px 20px 80px;
  text-align: center;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

/* SAME GLOW EFFECT */
.contact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  animation: heroGlow 8s infinite linear;
}

@keyframes heroGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* CONTENT */
.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 18px;
  color: #e0e0e0;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 30px;
  }

  .contact-hero p {
    font-size: 16px;
  }
}



/* =========================================
   CONTACT PAGE – PRO INNER PAGE DESIGN
========================================= */

/* HERO SAME STYLE */
.contact-hero {
  background: linear-gradient(135deg, #004990, #002f6c);
  padding: 110px 20px 80px;
  text-align: center;
  color: #fff;
}

.contact-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: 44px;
  font-weight: 800;
}

.contact-hero p {
  font-size: 18px;
  color: #e0e0e0;
}

/* MAIN */
.contact-section {
  background: #f6f9ff;
  padding: 90px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT */
.contact-info {
  flex: 1;
}

/* CONTACT CARD */
.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card .icon {
  font-size: 26px;
  width: 45px;
  height: 45px;
  background: #004990;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.contact-card h3 {
  margin: 0;
  font-size: 16px;
  color: #004990;
}

.contact-card a,
.contact-card p {
  font-size: 14px;
  color: #444;
  text-decoration: none;
}

/* FORM */
.contact-form {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  background: linear-gradient(135deg, #004990, #0066cc);
  color: #fff;
  padding: 13px;
  border: none;
  border-radius: 8px;
  font-weight: 800;
}

/* QUICK BAR */
.contact-quick-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: #004990;
}

.contact-quick-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 15px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-quick-bar {
    flex-direction: column;
  }
}

/* =========================================
   SYDNEY MAP SECTION – PREMIUM STYLE B
========================================= */

.sydney-map-section {
  padding: 90px 20px;
  background: #f6f9ff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sydney-map-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

/* LEFT TEXT */
.map-text {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: #004990;
  margin-bottom: 10px;
}

.map-text p {
  font-size: 15.5px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.map-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.map-text ul li {
  font-size: 14.5px;
  color: #333;
  margin-bottom: 8px;
}

/* BUTTON */
.map-btn {
  display: inline-block;
  background: linear-gradient(135deg, #004990, #0066cc);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.map-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,73,144,0.25);
}

/* MAP BOX */
.map-box {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sydney-map-container {
    flex-direction: column;
  }

  .map-text h2 {
    font-size: 22px;
  }

  .map-box iframe {
    height: 300px;
  }
}


/* =========================================
   AIRPORT TAXI PAGE – PREMIUM STYLE B
========================================= */

/* =========================
   HERO SECTION
========================= */

.at-hero {
  background: linear-gradient(135deg, #004990, #002f6c);
  padding: 110px 20px 90px;
  text-align: center;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

/* glow animation */
.at-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  animation: heroGlow 8s linear infinite;
}

@keyframes heroGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.at-hero-content,
.at-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.at-hero-title {
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 15px;
}

.at-hero-subtitle {
  font-size: 18px;
  color: #e0e0e0;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* =========================
   SECTION BASE
========================= */

.at-section {
  padding: 90px 20px;
  background: #f6f9ff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.at-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #004990;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.at-section-title::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #004990, #00aaff);
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

/* =========================
   BENEFITS CARDS
========================= */

.at-benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.at-benefit-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.at-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 73, 144, 0.15);
}

.at-benefit-icon {
  width: 55px;
  margin-bottom: 15px;
}

.at-benefit-title {
  font-size: 18px;
  font-weight: 800;
  color: #004990;
  margin-bottom: 10px;
}

.at-benefit-desc {
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
}

/* =========================
   FLEET SECTION
========================= */

.at-fleet-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.at-fleet-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.at-fleet-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0, 73, 144, 0.15);
}

.at-fleet-image img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.at-fleet-item:hover img {
  transform: scale(1.04);
}

.at-fleet-info {
  padding: 20px;
}

.at-fleet-title {
  font-size: 18px;
  font-weight: 800;
  color: #004990;
  margin-bottom: 8px;
}

.at-fleet-description {
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
}

/* =========================
   AIRPORT DETAILS
========================= */

.at-airport-details-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.at-airport-details-image {
  flex: 1;
  border-radius: 14px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.at-airport-details-list {
  flex: 1;
  list-style: none;
  padding: 0;
}

.at-airport-details-list li {
  background: #fff;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  font-size: 15px;
  color: #444;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.at-airport-icon {
  color: #004990;
  font-size: 18px;
}

/* =========================
   FIXED FARE
========================= */

.at-fixed-fare-section {
  background: linear-gradient(135deg, #004990, #002f6c);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.at-fixed-fare-text {
  font-size: 18px;
  max-width: 900px;
  margin: auto;
  line-height: 1.7;
}

/* =========================
   TESTIMONIALS
========================= */

.at-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.at-testimonial-item {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  position: relative;
}

.at-testimonial-cite {
  display: block;
  margin-top: 12px;
  font-weight: 700;
  color: #004990;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .at-hero-title {
    font-size: 36px;
  }

  .at-hero-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .at-hero {
    padding: 90px 15px 70px;
  }

  .at-section-title {
    font-size: 26px;
  }

  .at-airport-details-wrapper {
    flex-direction: column;
  }
}


/* =========================================
   SYDNEY AIRPORT DETAILS – PREMIUM UX
========================================= */

.airport-premium-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.airport-premium-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

/* TEXT SIDE */
.airport-premium-text {
  flex: 1;
}

.airport-premium-text h2 {
  font-size: 34px;
  font-weight: 900;
  color: #004990;
  margin-bottom: 15px;
}

.airport-premium-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* GRID */
.airport-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* CARD */
.airport-premium-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.airport-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,73,144,0.15);
}

/* ICON */
.airport-premium-card span {
  font-size: 22px;
  display: inline-block;
  margin-bottom: 8px;
}

/* TITLE */
.airport-premium-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #004990;
  margin-bottom: 6px;
}

/* TEXT */
.airport-premium-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* IMAGE */
.airport-premium-image {
  flex: 1;
}

.airport-premium-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.airport-premium-image img:hover {
  transform: scale(1.03);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .airport-premium-text h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .airport-premium-container {
    flex-direction: column;
  }

  .airport-premium-grid {
    grid-template-columns: 1fr;
  }

  .airport-premium-text h2 {
    font-size: 24px;
    text-align: center;
  }

  .airport-premium-text p {
    text-align: center;
  }
}


:root {
  --tf-blue: #0056b3;
  --tf-bg: #f8f9fa;
  --tf-dark: #0f172a;
  --tf-muted: #64748b;
  --tf-white: #ffffff;
}

/* SECTION */
.taxi-fare-hero {
  background: var(--tf-bg);
  padding: 80px 6vw;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--tf-dark);
}

.taxi-fare-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

/* LEFT SIDE */
.taxi-fare-heading {
  font-size: 2.8rem;
  line-height: 1.15;
  margin: 0 0 24px;
  color: var(--tf-dark);
}

.taxi-fare-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--tf-muted);
  margin-bottom: 14px;
  max-width: 600px;
}

.taxi-fare-cta-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.taxi-fare-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
              background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.taxi-fare-btn i {
  font-size: 1rem;
}

.taxi-fare-btn-primary {
  background: var(--tf-blue);
  color: var(--tf-white);
  box-shadow: 0 14px 30px rgba(0, 86, 179, 0.35);
}

.taxi-fare-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 86, 179, 0.48);
}

.taxi-fare-btn-ghost {
  background: var(--tf-white);
  color: var(--tf-dark);
  border-color: rgba(100, 116, 139, 0.5);
}

.taxi-fare-btn-ghost:hover {
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.15);
  transform: translateY(-2px);
}

/* RIGHT SIDE */
.taxi-fare-right {
  position: relative;
  min-height: 360px;
}

/* background circles */
.taxi-fare-orbit {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, var(--tf-white) 0, #e1e6eb 45%, #c9d1d9 100%);
  opacity: 0.9;
  filter: blur(0.3px) drop-shadow(0 22px 40px rgba(15, 23, 42, 0.25));
  animation: tf-float 7s ease-in-out infinite;
  z-index: 0;
}

.taxi-fare-orbit.orbit-2 {
  width: 330px;
  height: 330px;
  opacity: 0.25;
  background: radial-gradient(circle at 70% 80%, var(--tf-white) 0, #e1e6eb 40%, #c9d1d9 100%);
  animation-duration: 12s;
}

/* MAIN CARD */
.taxi-fare-main-card {
  position: relative;
  z-index: 2;
  margin: 10px auto 0;
  width: min(340px, 100%);
  background: var(--tf-white);
  border-radius: 26px;
  padding: 20px 20px 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(0, 86, 179, 0.08);
  animation: tf-float 6s ease-in-out infinite;
}

/* top row */
.taxi-fare-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.taxi-fare-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(0, 86, 179, 0.06);
  color: var(--tf-blue);
  font-weight: 500;
}

.taxi-fare-chip i {
  font-size: 0.8rem;
}

.taxi-fare-status {
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--tf-muted);
}

.taxi-fare-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}

/* city text */
.taxi-fare-city {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.taxi-fare-city-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #9ca3af;
}

.taxi-fare-city-name {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--tf-dark);
}

.taxi-fare-city-dest {
  margin-top: 6px;
}

/* route */
.taxi-fare-route {
  position: relative;
  margin: 10px 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.taxi-fare-route-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--tf-blue), #3385cc);
  border-radius: 999px;
  position: relative;
}

.taxi-fare-route-line::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #3385cc;
  transform: translateY(-50%);
}

.taxi-fare-route-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 86, 179, 0.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tf-blue);
  font-size: 0.8rem;
}

.taxi-fare-route-icon.destination {
  background: rgba(15, 23, 42, 0.08);
  color: var(--tf-dark);
}

/* tags */
.taxi-fare-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.taxi-fare-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.08);
  color: #4b5563;
}

.taxi-fare-tags i {
  font-size: 0.78rem;
  color: var(--tf-blue);
}

/* PRICE BUTTON */
.taxi-fare-taxi-pill {
  position: absolute;
  left: 38%;
  transform: translateX(-30%);
  bottom: -35px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--tf-white);
  color: var(--tf-dark);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
  font-size: 0.8rem;
  z-index: 3;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.18s ease, border-color 0.18s ease;
}

.taxi-fare-taxi-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tf-blue), #3385cc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tf-dark);
  font-size: 1rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.taxi-fare-taxi-text {
  display: flex;
  flex-direction: column;
}

.taxi-fare-taxi-label {
  font-size: 0.7rem;
  opacity: 0.8;
}

.taxi-fare-taxi-main {
  font-size: 0.8rem;
  font-weight: 600;
}

.taxi-fare-taxi-price {
  margin-left: 8px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.taxi-fare-taxi-price span {
  font-size: 0.96rem;
}

/* hover gradient */
.taxi-fare-taxi-pill:hover {
  background: linear-gradient(135deg, var(--tf-blue), #3385cc);
  color: var(--tf-white);
  box-shadow: 0 20px 40px rgba(0, 86, 179, 0.55);
  transform: translateX(-2%) translateY(-2px);
  border-color: transparent;
}

.taxi-fare-taxi-pill:hover .taxi-fare-taxi-icon-circle {
  background: var(--tf-white);
  color: var(--tf-blue);
}

/* FLOAT ANIM */
@keyframes tf-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .taxi-fare-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .taxi-fare-right {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .taxi-fare-hero {
    padding: 60px 5vw;
  }

  .taxi-fare-heading {
    font-size: 2.1rem;
  }

  .taxi-fare-main-card {
    width: 100%;
  }

  .taxi-fare-taxi-pill {
    position: static;
    transform: none;
    margin: 26px auto 0;
  }
}



/* =========================================
   MAXI CAB PAGE – PREMIUM STYLE B DESIGN
========================================= */

/* =========================
   HERO
========================= */

.maxi-hero {
  background: linear-gradient(135deg, #004990, #002f6c);
  padding: 110px 20px 80px;
  text-align: center;
  color: #fff;
  font-family: Poppins, system-ui, sans-serif;
  position: relative;
  overflow: hidden;
}

.maxi-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 60%);
  animation: heroGlow 8s linear infinite;
}

@keyframes heroGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.maxi-hero h1 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 12px;
}

.maxi-hero p {
  font-size: 18px;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================
   SERVICES BLOCK
========================= */

.maxi-services {
  padding: 90px 20px;
  background: #f6f9ff;
}

.service-block {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: flex;
  gap: 50px;
  align-items: center;
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.service-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,73,144,0.15);
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-block .image {
  flex: 1;
}

.service-block .image img {
  width: 100%;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.service-block:hover img {
  transform: scale(1.04);
}

.service-block .text {
  flex: 1;
}

.service-block h2 {
  font-size: 26px;
  font-weight: 800;
  color: #004990;
  margin-bottom: 10px;
}

.service-block p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* =========================
   FEATURES
========================= */

.maxi-features {
  padding: 80px 20px;
  background: #fff;
}

.features-list {
  max-width: 900px;
  margin: 30px auto 0;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.features-list li {
  background: #f6f9ff;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
  color: #333;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.features-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,73,144,0.12);
}

/* =========================
   BABY SEAT SECTION
========================= */

.maxi-babyseat-section {
  padding: 90px 20px;
  background: #f6f9ff;
}

.babyseat-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.babyseat-image {
  flex: 1;
}

.babyseat-image img {
  width: 100%;
  border-radius: 14px;
}

.babyseat-text {
  flex: 1;
}

.babyseat-text h2 {
  font-size: 28px;
  font-weight: 900;
  color: #004990;
  margin-bottom: 12px;
}

.babyseat-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* list */
.babyseat-benefits {
  margin-top: 15px;
  padding-left: 18px;
}

.babyseat-benefits li {
  font-size: 14.5px;
  margin-bottom: 8px;
  color: #333;
}

/* buttons */
.custom-btn-group a {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  margin-right: 10px;
  transition: 0.3s;
}

.custom-btn-primary {
  background: linear-gradient(135deg, #004990, #0066cc);
  color: #fff;
}

.custom-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,73,144,0.25);
}

.custom-btn-outline {
  border: 2px solid #004990;
  color: #004990;
}

.custom-btn-outline:hover {
  background: #004990;
  color: #fff;
}

/* =========================
   FAQ
========================= */

.maxi-faq {
  padding: 90px 20px;
  background: #fff;
}

.faq {
  max-width: 900px;
  margin: auto;
}

.faq h3 {
  font-size: 18px;
  color: #004990;
  margin-top: 20px;
}

.faq p {
  font-size: 15px;
  color: #555;
  margin-top: 5px;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .maxi-hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {

  .service-block,
  .babyseat-content {
    flex-direction: column;
    text-align: center;
  }

  .service-block.reverse {
    flex-direction: column;
  }

  .custom-btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .custom-btn-group a {
    width: 100%;
    text-align: center;
  }
}


/* =========================================
   PREMIUM FAQ – STYLE B ACCORDION
========================================= */

.maxi-faq-premium {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  font-family: Poppins, system-ui, sans-serif;
}

.faq-title {
  font-size: 34px;
  font-weight: 900;
  text-align: center;
  color: #004990;
}

.faq-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-top: 8px;
  margin-bottom: 40px;
}

/* WRAPPER */
.faq-wrapper {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ITEM */
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: 0.3s;
}

.faq-item:hover {
  transform: translateY(-3px);
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #004990;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* ICON */
.faq-question span {
  font-size: 22px;
  font-weight: bold;
  color: #3385cc;
}

/* ANSWER */
.faq-answer {
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
  display: none;
}

/* ACTIVE STATE (for JS toggle) */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }
}


/* =========================================
   MAXI AIRPORT + BABY SEAT SECTION
========================================= */

.maxi-airport-baby-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  font-family: Poppins, system-ui, sans-serif;
}

/* HEADER */
.maxi-airport-header {
  text-align: center;
  max-width: 900px;
  margin: auto;
  margin-bottom: 50px;
}

.maxi-airport-header h2 {
  font-size: 34px;
  font-weight: 900;
  color: #004990;
}

.maxi-airport-header p {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
  line-height: 1.6;
}

/* GRID */
.maxi-airport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.maxi-airport-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: center;
}

.maxi-airport-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,73,144,0.15);
}

/* IMAGE */
.maxi-airport-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* TEXT */
.maxi-airport-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #004990;
  margin: 15px 0 10px;
}

.maxi-airport-card p {
  font-size: 14.5px;
  color: #555;
  padding: 0 15px 20px;
  line-height: 1.6;
}

/* CTA */
.maxi-airport-cta {
  text-align: center;
  margin-top: 40px;
}

.maxi-airport-cta a {
  display: inline-block;
  margin: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

/* primary */
.maxi-airport-cta a:first-child {
  background: linear-gradient(135deg, #004990, #0066cc);
  color: #fff;
}

.maxi-airport-cta a:first-child:hover {
  transform: translateY(-3px);
}

/* secondary */
.maxi-airport-cta a:last-child {
  border: 2px solid #004990;
  color: #004990;
}

.maxi-airport-cta a:last-child:hover {
  background: #004990;
  color: #fff;
}


.service-hero {
  background: linear-gradient(135deg, #004990, #002f6c);
  padding: 110px 20px 70px;
  color: #fff;
  text-align: center;
}

.service-hero h1 {
  font-size: 40px;
  font-weight: 900;
}

.service-hero p {
  font-size: 18px;
  color: #e0e0e0;
}

/* GRID */
.service-section {
  padding: 80px 20px;
  background: #f6f9ff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,73,144,0.15);
}

.service-card h3 {
  color: #004990;
  font-weight: 800;
  margin-bottom: 10px;
}

/* CONTENT */
.service-content {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.service-content h2 {
  font-size: 30px;
  color: #004990;
  margin-bottom: 15px;
}

.service-content p {
  max-width: 800px;
  margin: auto;
  color: #555;
  line-height: 1.7;
}

/* BUTTON */
.service-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #004990, #0066cc);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s;
}

.service-btn:hover {
  transform: translateY(-3px);
}



/* =========================================
   PRIVACY POLICY – PREMIUM STYLE B DESIGN
========================================= */

.privacy-policy {
  max-width: 1000px;
  margin: 80px auto;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  font-family: Poppins, system-ui, sans-serif;
  line-height: 1.7;
  color: #444;
}

/* HEADINGS */
.privacy-policy h2 {
  font-size: 26px;
  font-weight: 900;
  color: #004990;
  margin-top: 40px;
  margin-bottom: 12px;
  border-left: 5px solid #004990;
  padding-left: 12px;
}

.privacy-policy h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0066cc;
  margin-top: 25px;
  margin-bottom: 10px;
}

.privacy-policy h4 {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  margin-top: 20px;
}

/* PARAGRAPHS */
.privacy-policy p {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}

/* LISTS */
.privacy-policy ul {
  margin: 15px 0 25px 20px;
  padding: 0;
}

.privacy-policy ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #444;
  position: relative;
  padding-left: 5px;
}

/* LINKS */
.privacy-policy a {
  color: #004990;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.privacy-policy a:hover {
  color: #0066cc;
  text-decoration: underline;
}

/* EMPHASIS */
.privacy-policy strong {
  color: #222;
}

/* TOP META TEXT */
.privacy-policy em {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .privacy-policy {
    margin: 40px 15px;
    padding: 25px 18px;
  }

  .privacy-policy h2 {
    font-size: 22px;
  }

  .privacy-policy h3 {
    font-size: 18px;
  }
}



/* =========================================
   TERMS & CONDITIONS – PREMIUM STYLE B
========================================= */

.terms-conditions {
  max-width: 1000px;
  margin: 80px auto;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  font-family: Poppins, system-ui, sans-serif;
  line-height: 1.7;
  color: #444;
}

/* HEADINGS */
.terms-conditions h2 {
  font-size: 26px;
  font-weight: 900;
  color: #004990;
  margin-top: 40px;
  margin-bottom: 12px;
  border-left: 5px solid #004990;
  padding-left: 12px;
}

.terms-conditions h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0066cc;
  margin-top: 25px;
  margin-bottom: 10px;
}

.terms-conditions h4 {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  margin-top: 20px;
}

/* PARAGRAPHS */
.terms-conditions p {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}

/* LISTS */
.terms-conditions ul {
  margin: 15px 0 25px 20px;
  padding: 0;
}

.terms-conditions ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #444;
  padding-left: 5px;
}

/* LINKS */
.terms-conditions a {
  color: #004990;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.terms-conditions a:hover {
  color: #0066cc;
  text-decoration: underline;
}

/* STRONG TEXT */
.terms-conditions strong {
  color: #222;
}

/* TOP NOTE */
.terms-conditions em {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .terms-conditions {
    margin: 40px 15px;
    padding: 25px 18px;
  }

  .terms-conditions h2 {
    font-size: 22px;
  }

  .terms-conditions h3 {
    font-size: 18px;
  }
}


/* =========================================
   DISCLAIMER – PREMIUM STYLE B DESIGN
========================================= */

.disclaimer {
  max-width: 1000px;
  margin: 80px auto;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  font-family: Poppins, system-ui, sans-serif;
  line-height: 1.7;
  color: #444;
}

/* TITLE */
.disclaimer h2 {
  font-size: 26px;
  font-weight: 900;
  color: #004990;
  margin-top: 0;
  margin-bottom: 15px;
  border-left: 5px solid #004990;
  padding-left: 12px;
}

/* SUB HEADINGS */
.disclaimer h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0066cc;
  margin-top: 25px;
  margin-bottom: 10px;
}

/* PARAGRAPH */
.disclaimer p {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}

/* LIST */
.disclaimer ul {
  margin: 15px 0 25px 20px;
  padding: 0;
}

.disclaimer ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #444;
}

/* LINKS */
.disclaimer a {
  color: #004990;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.disclaimer a:hover {
  color: #0066cc;
  text-decoration: underline;
}

/* EMPHASIS */
.disclaimer strong {
  color: #222;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .disclaimer {
    margin: 40px 15px;
    padding: 25px 18px;
  }

  .disclaimer h2 {
    font-size: 22px;
  }

  .disclaimer h3 {
    font-size: 18px;
  }
}



/* =========================================
   THANK YOU PAGE – PREMIUM STYLE
========================================= */

.thankyou-wrapper {
  
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f9ff, #eaf2ff);
  padding: 40px 20px;
  font-family: Poppins, system-ui, sans-serif;
}

.thankyou-container {
  max-width: 520px;
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.10);
  transition: 0.3s ease;
}

/* IMAGE */
.thankyou-container img {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 12px;
  object-fit: cover;
}

/* HEADING */
.thankyou-container h1 {
  font-size: 26px;
  font-weight: 900;
  color: #004990;
  margin-bottom: 10px;
}

/* TEXT */
.thankyou-container p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* BUTTON */
.thankyou-container .btn {
  display: inline-block;
  padding: 12px 22px;
  background: linear-gradient(135deg, #004990, #0066cc);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
}

.thankyou-container .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,73,144,0.25);
}

/* HOVER EFFECT */
.thankyou-container:hover {
  transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .thankyou-container {
    padding: 30px 20px;
  }

  .thankyou-container h1 {
    font-size: 22px;
  }

  .thankyou-container img {
    width: 130px;
  }
}