/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  min-height: 60vh;
  background: url("../img/main_banner.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background:rgb(255 255 255 / 10%); */
  background: rgb(1 1 1 / 10%);
  z-index: 1;
}

/* Content layer */
.hero .container {
  position: relative;
  z-index: 2;
}

/* ================= TEXT ================= */
.hero-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.hero-content p {
  font-size: 18px;
  color: #B3B3B3;
}

/* ================= BOOKING BOX ================= */
.booking-box {
  background: #ffffff96;
  backdrop-filter: blur(12px);
  /* border: 1px solid #2E2E2E; */
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  color: #FFFFFF;
}

/* ================= LABEL ================= */
.booking-box label {
  font-size: 13px;
  margin-bottom: 5px;
  display: block;
  font-weight: 500;
  color: #837272;
}

.booking-box label i {
  margin-right: 5px;
  color: #DC3545; /* RED ACCENT */
}

.form_input__group span {
    font-size: 13px;
    font-weight: 500;
  color: #837272;
}

.form_input__group span i {
    color: #000;
}

/* ================= INPUT FIELDS ================= */
.booking-box .form_field__group {
    /* height: 48px; */
    border-radius: 10px;
    border: 1px solid #EFEFEF;
    padding: 10px 14px;
    font-size: 14px;
    background: #EFEFEF;
    /* color: #FFFFFF; */
    position: relative;
}

button.field_cross {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 12px;
    width: 18px;
    height: 18px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.between_icon_field.prev {
    padding-right: 20px;
    position: relative;
}
.between_icon_field.next {
    padding-left: 20px;
}

.double_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -8px;
    color: #000;
}

.form_search_btn {
    min-width: 340px;
    min-height: 45px;
    color: #212121;
}

.form_input__group {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* REMOVE ALL DEFAULT INPUT STYLES */
.form_input__group input {
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* optional styling */
  width: 100%;
  color: #000;
  font-size: 15px;
}

.form_input__group input::placeholder {
    font-size: 15px;
    color: #000;
}

/* REMOVE FOCUS STYLES COMPLETELY */
.form_input__group input:focus,
.form_input__group input:focus-visible,
.form_input__group input:active {
  outline: none;
  box-shadow: none;
  border: none;
}

/* REMOVE AUTOFILL BACKGROUND (CHROME) */
.form_input__group input:-webkit-autofill,
.form_input__group input:-webkit-autofill:hover,
.form_input__group input:-webkit-autofill:focus,
.form_input__group input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* REMOVE NUMBER INPUT ARROWS */
.form_input__group input[type="number"]::-webkit-outer-spin-button,
.form_input__group input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form_input__group input[type="number"] {
  -moz-appearance: textfield;
}

.booking-box .form-control::placeholder {
  color: #777;
}

.booking-box .form-control:focus {
  outline: none;
  border-color: #DC3545;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.4);
}

/* ================= TABS ================= */
.trip-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.trip-tabs .tab {
    border: 1px solid #2E2E2E;
    padding: 8px 18px;
    border-radius: 50px;
    background: #222222;
    color: #f2f2f2;
    cursor: pointer;
    transition: 0.3s;
}

.trip-tabs .tab i {
  margin-right: 6px;
}

.trip-tabs .tab:hover {
  background: #2E2E2E;
  color: #FFFFFF;
}

/* ACTIVE TAB */
.trip-tabs .tab.active {
  background: #DC3545;
  color: #FFFFFF;
  border-color: #DC3545;
  font-weight: 600;
}

/* ================= BUTTON ================= */
.btn-search {
  background: #DC3545;
  border: none;
  padding: 12px 35px;
  border-radius: 10px;
  font-weight: 700;
  color: #FFFFFF;
  transition: 0.3s;
}

.btn-search:hover {
  background: #bb2d3b;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .booking-box {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .trip-tabs {
    justify-content: center;
  }
}

.custom-navbar {
        background: #ffffff;
        border-bottom: 1px solid #e5e5e5;
      }

      /* LOGO */
     .navbar a.navbar-brand {
        color: #000000;
        font-size: 22px;
      }

      /* NAV LINKS */
      .nav-link {
        color: #333333 !important;
        transition: 0.3s;
      }

      .nav-link:hover {
        color: #dc3545 !important;
      }

      /* LOGIN */
      .navbar a.login-link {
        color: #000000;
        text-decoration: none;
        transition: 0.3s;
      }

      .navbar a.login-link:hover {
        color: #dc3545;
      }

      /* MOBILE MENU */
      .custom-offcanvas {
        background: #ffffff;
      }

      .custom-offcanvas .offcanvas-body > ul li {
        margin-bottom: 5px !important;
      }

      /* MOBILE LINKS */
      .custom-offcanvas a {
        color: #333;
        font-size: 16px;
        text-decoration: none;
        transition: 0.3s;
      }

      .custom-offcanvas .offcanvas-body .social-icons {
        margin-top: 0 !important;
      }

      .custom-offcanvas a:hover {
        color: #dc3545;
      }

      /* SOCIAL ICONS */
      .social-icons a {
        color: #555;
        transition: 0.3s;
      }

      .social-icons a:hover {
        color: #dc3545;
        transform: scale(1.2);
      }

/* CARD (NO BORDER / NO BOX) */
.hsp-card {
  text-align: center;
  padding: 20px 10px;
  transition: 0.3s ease;
  border-radius: 12px;
  border: 1px solid #eee;
    height: 100%;
}

/* HOVER (SUBTLE LIFT ONLY) */
.hsp-card:hover {
  /* transform: translateY(-5px); */
    /* background-color: #fff; */
    /* box-shadow: 
    0 10px 20px rgba(0,0,0,0.05),
    0 6px 6px rgba(0,0,0,0.04); */
}

/* ICON */
.hsp-img {
  width: 65px;
  height: 65px;
  margin: auto;
  border-radius: 50%;
  background: #F9FAFB; /* soft light bg */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* ICON IMAGE */
.hsp-img img {
  width: 32px;
}

/* HOVER ICON EFFECT */
.hsp-card:hover .hsp-img {
  background: #DC3545;
}

.hsp-card:hover .hsp-img img {
  filter: brightness(0) invert(1);
}

/* TEXT */
.hsp-content p {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 5px;
}

.hsp-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

/* OPTIONAL: subtle underline hover */
.hsp-content h5 {
  position: relative;
  display: inline-block;
}

.hsp-card:hover h5::after {
  width: 100%;
}

.offer-section {
  /* background: #f5f7fb; */
}

/* CARD */
.offer-card-v3 {
  position: relative;
  height: 170px;
  border-radius: 16px;
  padding: 15px;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* DARK OVERLAY */
.offer-card-v3::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.10);
}

.offer-card-v3 > * {
  position: relative;
  z-index: 2;
}

/* GRADIENT CARDS */
.gradient-card {
  background: linear-gradient(135deg, #ff7a18, #ff3d00, #ffb347);
}

.gradient-card-2 {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.bank-logo img {
  height: 18px;
  margin-left: auto;
}

/* CONTENT */
.offer-content {
  font-size: 12px;
}

/* SMALL TEXT */
.offer-small {
  font-size: 12px;
  opacity: 0.9;
  margin: 0;
}

/* MAIN TEXT */
.offer-content h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 3px 0;
}

/* DESC */
.offer-desc {
  font-size: 12px;
  margin: 0;
}

/* CODE BOX */
.code-box {
  margin-top: 6px;
  display: inline-block;
  background: rgba(255,255,255,0.9);
  color: #000;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

/* EXPIRE */
.expire {
  font-size: 11px;
  opacity: 0.8;
  margin: 0;
}
 
.offer-card-v3 {
  transition: 0.15s all ease-in-out;
}
.offer-card-v3:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 30px rgba(0,0,0,0.1);
}










/* ── SECTION ── */
.vehicle-section.sec-bg {
  background: #f4f5f7;
}

/* ── CARD ── */
.vehicle-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ebebeb;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  /* transform: translateY(-8px); */
  /* box-shadow: 0 24px 50px rgba(0,0,0,0.1); */
  border-color: #DC3545;
}

/* ── BADGE ── */
.vehicle-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.vehicle-badge.popular {
  background: #DC3545;
}

.vehicle-badge.luxury {
  background: linear-gradient(135deg, #b8860b, #d4a017);
}

/* ── IMAGE WRAP ── */
.vehicle-img-wrap {
  background: linear-gradient(145deg, #f8f9fb, #eef0f3);
  padding: 24px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
}

.vehicle-img {
  width: 100%;
  max-width: 220px;
  height: 130px;
  object-fit: contain;
  transition: transform 0.35s ease;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.14));
}

.vehicle-card:hover .vehicle-img {
  transform: scale(1.07) translateY(-5px);
}

/* ── BODY ── */
.vehicle-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── TITLE ── */
.vehicle-title {
  font-weight: 700;
  font-size: 17px;
  color: #111;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

/* ── DESC ── */
.vehicle-desc {
  font-size: 12.5px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ── SPECS GRID ── */
.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f7f7f8;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px;
  color: #444;
  font-weight: 500;
}

.spec-item i {
  color: #DC3545;
  font-size: 12px;
  width: 14px;
  text-align: center;
}

/* ── FOOTER ── */
.vehicle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

/* ── PRICE ── */
.vehicle-price {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.price-from {
  font-size: 10px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 3px;
}

.price-amt {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.03em;
}

/* ── BUTTON ── */
.book-btn {
  background: #111 !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 9px 18px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  transition: background 0.25s ease, transform 0.2s ease !important;
  white-space: nowrap;
}

.book-btn:hover {
  background: #DC3545 !important;
  transform: translateY(-2px) !important;
}

/* ── ARROWS ── */
.custom-arrows { display: flex; gap: 10px; }

.splide__arrow {
  width: 38px; height: 38px;
  background: #111;
  border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 1; cursor: pointer;
  transition: background 0.2s;
}

.splide__arrow:hover { background: #DC3545; }
.splide__arrow i { color: #fff; font-size: 12px; }
.splide__arrow svg { fill: #fff; height: 0.8em; width: 0.8em; }

/* ── PAGINATION ── */
.splide__pagination { position: static; margin-top: 24px; }

.splide__pagination__page {
  background: #000; opacity: 0.2;
  transform: none !important;
  width: 20px; border-radius: 12px !important; height: 5px !important;
  transition: width 0.3s, opacity 0.3s;
}

.splide__pagination__page.is-active {
  background: #DC3545; opacity: 1; width: 48px;
}

#vehicle-slider .splide__arrows {
  position: absolute;
  top: calc(0px - 36px - 20px); right: 0;
  display: inline-flex; gap: 12px;
}

#vehicle-slider .splide__arrows button {
  position: static; transform: none;
}

/* ═══════ TESTIMONIALS ═══════ */
.testimonial-section {
  background: #111;
  overflow: hidden;
}

/* LABEL */
.testi-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: #fff3f3;
  border: 1px solid #ffd6d6;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #DC3545;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.testi-main-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #111;
  /* letter-spacing: -0.03em; */
  margin-bottom: 10px;
}

.testi-main-sub {
  font-size: 15px;
  color: #888;
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.65;
}

/* INNER GRID */
.testi-inner {
  display: flex;
  /* grid-template-columns: 300px 1fr; */
  gap: 30px;
  align-items: center;


    /* background: #111; */
    border-radius: 24px;
    /* padding: 36px 28px; */
    color: #fff;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: space-between; */
    min-height: 380px;
}
.testi-inner::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(220,53,69,0.25), transparent 70%);
  top: -50px; right: -50px;
  pointer-events: none;

}

/* LEFT PANEL */
/* .testi-left {
  background: #111;
  border-radius: 24px;
  padding: 36px 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
} */

.testi-quote-icon {
  width: 50px; height: 50px;
  background: #DC3545;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.testi-left {
  width: calc(40% - 30px/2);
}

.testi-right {
  width: calc(60% - 30px/2);
}

.testi-left-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.testi-left-title span {
  color: #DC3545;
}

.testi-left-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* STATS */
.testi-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  margin-bottom: 24px;
}

.tstat {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.tstat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.tstat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tstat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ARROWS */
.testi-arrows {
  display: flex;
  gap: 10px;
  position: static !important;
}

.testi-arrow-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2) !important;
  background: transparent !important;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  opacity: 1 !important;
  position: static !important;
  transform: none !important;
}

.testi-arrow-btn:hover {
  background: #DC3545 !important;
  border-color: #DC3545 !important;
}

.testi-arrow-btn i { color: #fff; font-size: 13px; }
.testi-arrow-btn svg { display: none; }

/* CARD */
.testi-card {
    background: #fff;
    color: #111;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.testi-card:hover {
  border-color: #DC3545;
  box-shadow: 0 12px 40px rgba(220,53,69,0.1);
}

/* CARD TOP */
.testi-card-top {
display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-direction: column;
    gap: 20px;
}

.testi-avatar {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    border: 1px solid #f0f0f0;
}

.testi-rating {
  display: flex;
  gap: 3px;
}

.testi-rating i {
  color: #ffc107;
  font-size: 13px;
}

/* QUOTE MARK */
.testi-quote-mark {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: #f0f0f0;
  font-size: 28px;
  pointer-events: none;
}

.testi-quote-mark,
.testi-text, 
.testi-footer,
.testi-rating {
  padding: 0 15px;
}


.testi-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.testi-card:hover {
  /* transform: translateY(-6px); */
  border: 2px solid #DC3545;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* HEADER */
.testi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-user {
  flex: 1;
}

.testi-name {
  font-weight: 600;
  font-size: 16px;
  color: #111;
}

.testi-rating i {
  font-size: 13px;
  color: #f4b400;
}

/* QUOTE ICON */
.testi-quote {
  font-size: 20px;
  color: #e5e5e5;
}

/* TEXT */
.testi-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 18px;
}

/* FOOTER */
.testi-footer {
  font-size: 13px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial-section .splide__pagination__page {
  background-color: #f2f2f2;
  opacity: 0.4;
}
.testimonial-section .splide__pagination__page.is-active {
  background-color: #fff;
  opacity: 1;
}



/* ═══════ AIRPORT SECTION ═══════ */
.airport-section {
  background: #f4f5f7;
}

/* LABEL */
.airport-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #fff3f3;
  border: 1px solid #ffd6d6;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #DC3545;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* TITLE */
.airport-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  color: #111;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.airport-title span { color: #DC3545; }

.airport-desc {
  font-size: 15px;
  color: #777;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* FEATURE CHIPS */
.feat-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.feat-chip i { color: #DC3545; font-size: 12px; }

/* SLIDER HEADER */
.airport-slider-title {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
}

.airport-slider-sub {
  font-size: 13px;
  color: #aaa;
  font-weight: 500;
}

/* ARROWS */
.airport-arrows { display: flex; gap: 8px; }

.airport-arrow-btn {
  width: 38px; height: 38px;
  background: #111;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.airport-arrow-btn:hover { background: #DC3545; }
.airport-arrow-btn i { color: #fff; font-size: 12px; }

/* CARD */
.airport-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #ebebeb;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.airport-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.09);
  border-color: #DC3545;
}

/* IMAGE */
.airport-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.airport-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.airport-card:hover .airport-img-wrap img {
  transform: scale(1.06);
}

/* IATA BADGE */
.airport-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
}

/* CARD BODY */
.airport-card-body { padding: 18px 18px 20px; }

.airport-name {
  font-size: 15px;
  font-weight: 800;
  color: #111;
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}

.airport-location {
  font-size: 12px;
  color: #aaa;
  font-weight: 500;
  margin-bottom: 0;
}

.airport-location i { color: #DC3545; margin-right: 3px; font-size: 11px; }

/* PRICE */
.airport-price-box {
  text-align: right;
  flex-shrink: 0;
}

.price-from {
  display: block;
  font-size: 10px;
  color: #bbb;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 2px;
}

.price-amt {
  font-size: 22px;
  font-weight: 900;
  color: #DC3545;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* META */
.airport-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f4f4f4;
}

.airport-meta span {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f7f7f8;
  padding: 5px 10px;
  border-radius: 8px;
}

.airport-meta i { color: #DC3545; font-size: 11px; }

/* BOOK BUTTON */
.airport-book-btn {
  width: 100%;
  background: #111 !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 10px 16px !important;
  border: none !important;
  transition: background 0.25s, transform 0.2s !important;
  display: none;
  align-items: center;
  justify-content: center;
}

.airport-book-btn:hover {
  background: #DC3545 !important;
  transform: translateY(-2px) !important;
}

/* PAGINATION */
.airport-pagination {
  position: static !important;
  margin-top: 24px;
}

.airport-pagination .splide__pagination__page {
  background: #ccc;
  opacity: 1;
  width: 8px; height: 8px;
  border-radius: 999px !important;
  transform: none !important;
  transition: width 0.3s, background 0.3s;
  margin: 0 3px;
}

.airport-pagination .splide__pagination__page.is-active {
  background: #DC3545;
  width: 28px;
}



/* ═══════ NEWSLETTER ═══════ */
.newsletter-section {
  background: #111;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(220,53,69,0.15), transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* INNER WRAP */
.newsletter-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DECO ICONS */
.nl-deco {
  position: absolute;
  font-size: 120px;
  opacity: 0.04;
  color: #fff;
  pointer-events: none;
  line-height: 1;
}

.nl-deco-left  { left: -20px; top: 50%; transform: translateY(-50%) rotate(-15deg); }
.nl-deco-right { right: -20px; top: 50%; transform: translateY(-50%) rotate(15deg); }

/* CONTENT */
.nl-content {
  max-width: 580px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* LABEL */
.nl-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(220,53,69,0.15);
  border: 1px solid rgba(220,53,69,0.3);
  color: #DC3545;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* TITLE */
.nl-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}

/* DESC */
.nl-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* FORM */
.nl-form { width: 100%; margin-bottom: 20px; }

.nl-input-group {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 6px 6px 6px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.nl-input-group:focus-within {
  border-color: #DC3545;
  box-shadow: 0 0 0 4px rgba(220,53,69,0.12);
}

.nl-input-icon {
  color: rgba(255,255,255,0.35);
  font-size: 15px;
  margin-right: 10px;
  flex-shrink: 0;
}

.nl-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #fff;
  padding: 8px 0;
  min-width: 0;
}

.nl-input::placeholder { color: rgba(255,255,255,0.3); }

.nl-btn {
  background: #DC3545;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.nl-btn:hover {
  background: #b02030;
  transform: translateY(-1px);
}

/* SUCCESS */
.nl-success {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(40,201,100,0.12);
  border: 1px solid rgba(40,201,100,0.3);
  color: #28c964;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.nl-success i { font-size: 16px; }

/* TRUST LINE */
.nl-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

.nl-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nl-trust i { color: rgba(220,53,69,0.7); font-size: 12px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 576px) {
  .newsletter-section { padding: 50px 0; }

  .nl-input-group {
    flex-direction: column;
    padding: 12px;
    gap: 10px;
    border-radius: 16px;
  }

  .nl-input-icon { display: none; }

  .nl-input {
    width: 100%;
    text-align: center;
    padding: 6px 0;
  }

  .nl-btn {
    width: 100%;
    justify-content: center;
    padding: 13px;
  }

  .nl-trust { gap: 12px; }
  .nl-deco  { display: none; }
}



/* ═══════ FOOTER ═══════ */
.site-footer {
  background: #0a0a0a;
  padding-top: 70px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #DC3545, transparent);
}

/* LOGO */
.ft-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* ABOUT TEXT */
.ft-about {
  font-size: 13.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 300px;
}

/* SOCIALS */
.ft-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ft-social-btn:hover {
  background: #DC3545;
  border-color: #DC3545;
  color: #fff;
}

/* COLUMN TITLE */
.ft-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.ft-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: #DC3545;
  border-radius: 2px;
}

/* LINKS */
.ft-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}

.ft-links a i {
  font-size: 9px;
  color: #DC3545;
  transition: transform 0.2s;
}

.ft-links a:hover {
  color: #fff;
  gap: 12px;
  opacity: 1;
}

.ft-links a:hover i { transform: translateX(2px); }

/* CONTACT LIST */
.ft-contact-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ft-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ft-contact-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(220,53,69,0.12);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(220,53,69,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  display: flex; align-items: center; justify-content: center;
  color: #DC3545;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}

.ft-contact-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.ft-contact-val {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

a.ft-contact-val:hover { color: #DC3545; }

/* DIVIDER */
.ft-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 50px 0 0;
}

/* BOTTOM BAR */
.footer-bottom {
  padding: 20px 0;
}

.ft-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.ft-copy strong { color: rgba(255,255,255,0.5); }

.ft-bottom-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-bottom-links a:hover { color: #DC3545; }

.ft-sep { color: rgba(255,255,255,0.15); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 991.98px) {
.between_icon_field.prev {padding: 0; padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);}
  .between_icon_field.next {padding: 0; padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);}
  .double_arrow {display: none;}
  .custom-navbar {padding-left: 0; padding-right: 0;}
}

@media (max-width: 767px) {
  .site-footer { padding-top: 50px; }
  .ft-about    { max-width: 100%; }
  .footer-bottom { text-align: center; }
  .ft-bottom-links { justify-content: center !important; }
  .form_search_btn { min-width: auto; width : 100%;}
  .testi-inner { flex-direction: column;}
  .testi-left, .testi-right { width: 100%;}
}



/* ===== PAGE HERO (GLOBAL) ===== */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 80px 0 60px;
  color: #fff;
}

/* Container spacing fix (optional if bootstrap already there) */
.page-hero .container {
  max-width: 1140px;
}

/* Breadcrumb */
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 16px;
}

.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: 0.2s;
}

.page-hero-breadcrumb a:hover {
  color: #fff;
}

.page-hero-breadcrumb span {
  color: #fff;
  font-weight: 600;
}

/* Kicker */
.page-hero-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ff4d5a;
  margin-bottom: 10px;
}

/* Title */
.page-hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  /* max-width: 14ch; */
  margin-bottom: 16px;
}

.page-hero-title span {
  color: #dc3545;
}

/* Description */
.page-hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  /* max-width: 520px; */
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 60px 0 40px;
  }

  .page-hero-title {
    font-size: 28px;
  }

  .page-hero-desc {
    font-size: 14px;
  }
}



/* SECTION */
.airport-transfer-section {
  padding: 90px 0;
  background: #f9fbfd;
}

/* HEADING */
.section-heading h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-heading p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* CONTENT */
.transfer-content h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

.transfer-content p {
  color: #555;
  line-height: 1.7;
}

.transfer-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.transfer-list li {
  margin-bottom: 10px;
  font-size: 15px;
}

.transfer-list i {
  color: #0d6efd;
  margin-right: 8px;
}

/* IMAGE */
.transfer-image img {
  width: 100%;
  border-radius: 20px;
}

/* CARDS */
.transfer-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.transfer-card h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.transfer-card p {
  font-size: 14px;
  color: #666;
}

.transfer-card:hover {
  transform: translateY(-5px);
}

/* ICON STYLE */
.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #dc354619;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon i {
  font-size: 24px;
  color: #dc3545;
}

/* OPTIONAL HOVER EFFECT */
.transfer-card:hover .card-icon {
  background: #dc3545;
}

.transfer-card:hover .card-icon i {
  color: #fff;
}


.ttx-section {
  padding: 90px 0;
}

.ttx-about-split {
  background: #f8fafc;
}

/* TEXT */
.ttx-badge {
  display: inline-block;
  background: rgba(13,110,253,0.1);
  color: #0d6efd;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

.ttx-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.ttx-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* HIGHLIGHT */
.ttx-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 15px;
}

.ttx-highlight i {
  color: #0d6efd;
}

/* IMAGE */
.ttx-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 20px 50px rgba(0,0,0,0.08); */
}

.ttx-image-wrap img {
  width: 100%;
  display: block;
}

/* FEATURE CARD */
.ttx-feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.ttx-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(13,110,253,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ttx-icon i {
  font-size: 24px;
  color: #0d6efd;
}

.ttx-feature-card h5 {
  margin-bottom: 10px;
}

.ttx-feature-card p {
  font-size: 14px;
  color: #666;
}

.ttx-feature-card:hover {
  transform: translateY(-6px);
}

.ttx-feature-card:hover .ttx-icon {
  background: #0d6efd;
}

.ttx-feature-card:hover .ttx-icon i {
  color: #fff;
}

/* GLOBAL RED VARIABLES (optional but recommended) */
:root {
  --ttx-primary: #dc3545;
  --ttx-primary-soft: rgba(220,53,69,0.08);
}

/* BADGE */
.ttx-badge {
  background: var(--ttx-primary-soft);
  color: var(--ttx-primary);
}

/* HIGHLIGHT ICON */
.ttx-highlight i {
  color: var(--ttx-primary);
}

/* IMAGE SHADOW (slight warm tone) */
.ttx-image-wrap {
  /* box-shadow: 0 20px 50px rgba(220,53,69,0.15); */
}

/* FEATURE ICON */
.ttx-icon {
  background: var(--ttx-primary-soft);
}

.ttx-icon i {
  color: var(--ttx-primary);
}

/* CARD HOVER */
.ttx-feature-card:hover {
  transform: translateY(-6px);
  /* box-shadow: 0 15px 40px rgba(220,53,69,0.2); */
}

/* ICON HOVER */
.ttx-feature-card:hover .ttx-icon {
  background: var(--ttx-primary);
}

.ttx-feature-card:hover .ttx-icon i {
  color: #fff;
}

/* OPTIONAL: HEADINGS ACCENT */
.ttx-title span {
  color: var(--ttx-primary);
}


/* HERO */
.ttx-contact-hero {
  padding: 80px 0 40px;
  background: #f8f9fb;
}

/* CONTACT CARDS */
.ttx-contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.ttx-contact-card a,
.ttx-contact-card span {
  display: block;
  margin-top: 10px;
  color: #dc3545;
  font-weight: 500;
}

.ttx-contact-card:hover {
  transform: translateY(-6px);
  /* box-shadow: 0 15px 40px rgba(220,53,69,0.2); */
}

/* ICON */
.ttx-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(220,53,69,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ttx-icon i {
  font-size: 22px;
  color: #dc3545;
}

/* FORM */
.ttx-form-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.ttx-form input,
.ttx-form select,
.ttx-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #eee;
  outline: none;
  transition: 0.2s;
}

.ttx-form input:focus,
.ttx-form select:focus,
.ttx-form textarea:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}

/* BUTTON */
.ttx-btn {
  margin-top: 15px;
  padding: 12px 25px;
  border: none;
  background: #dc3545;
  color: #fff;
  border-radius: 30px;
  transition: 0.3s;
}

.ttx-btn:hover {
  background: #bb2d3b;
}

/* RIGHT SIDE */
.ttx-support-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
}

.ttx-support-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.ttx-support-card li {
  margin-bottom: 10px;
}

.ttx-support-card i {
  color: #dc3545;
  margin-right: 8px;
}

/* MAP */
.ttx-map-card {
  border-radius: 18px;
  overflow: hidden;
}

.ttx-map-card iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

.tt-soft-card {
    background: #ffff;
    padding: 1.4rem;
}


.tt-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.tt-faq-item.active .tt-faq-question i {
  transform: rotate(180deg);
}

.tt-faq-question i {
  transition: all 0.3s ease-in-out;
}

.footer__payment-icons {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    justify-content: flex-end;
}

.footer__payment-icons img {
    flex: 1 1 40px;
    max-width: 40px !important;
    min-width: 0;
    width: 100%;
    border-radius: 4px;
}


@media (max-width: 991.98px) {
    .custom-offcanvas {
        background: #fdfdfd;
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1) !important;
    }

    /* List Item Styling */
    .mobile-nav-links li {
        margin-bottom: 15px;
    }

    .mobile-nav-links li a {
        display: flex;
        align-items: center;
        text-decoration: none;
        padding: 15px;
        background: #fff;
        border-radius: 12px;
        border: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    }

    /* Icon Box */
    .nav-icon {
        width: 45px;
        height: 45px;
        background: #fff5f5;
        color: #dc3545;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        font-size: 1.2rem;
        margin-right: 15px;
        transition: 0.3s;
    }

    /* Text Logic */
    .nav-text {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .nav-text span {
        font-size: 1.1rem;
        font-weight: 700;
        color: #002b5c;
    }

    .nav-text small {
        font-size: 0.8rem;
        color: #888;
    }

    /* Arrow icon at end */
    .arrow-ms {
        font-size: 0.9rem;
        color: #ccc;
        transition: 0.3s;
    }

    /* Hover States */
    .mobile-nav-links li a:hover, .mobile-nav-links li a:active {
        border-color: #dc3545;
        background: #fffdfd;
        transform: scale(1.02);
    }

    .mobile-nav-links li a:hover .nav-icon {
        background: #dc3545;
        color: #fff;
    }

    .mobile-nav-links li a:hover .arrow-ms {
        color: #dc3545;
        transform: translateX(5px);
    }

    /* Social Icons Modern */
    .social-box {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid #eee;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #555;
        font-size: 1.3rem;
        transition: 0.3s;
    }

    .social-box:hover {
        background: #002b5c;
        color: #fff;
        transform: translateY(-5px);
    }

    /* Modern Login Button */
    .login-btn-modern {
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #fff !important;
        box-shadow: 0 10px 20px rgba(220, 53, 69, 0.2);
        border: none;
        background: linear-gradient(45deg, #dc3545, #ff4d5a);
    }
}

@media (max-width: 991.98px) {
  .ttx-form-card {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }
}
@media (max-width: 767.98px) {
.footer__payment-icons {
  justify-content: center;
}
.searching_form > * {
  width: 100%;
}
}

.policy-inner-list li {
    list-style: decimal-leading-zero;
    display: list-item;
}