/* font style use localy */
/* @import url(fonts.css); */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* search form css */
@import url(header.css);
@import url(banner-form.css);
@import url(loader.css);

.font-primary {
  font-family: "Outfit", serif;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #ffffff !important;
}

/* innner page css for form */
.inner-banner .bg-white.p-3.rounded-4 {
  margin-top: 1rem;
}

/* header page css for form */
.bg-none {
  background: none !important;
}

.navbar {
  padding: 0px;
}

/* banner css */
.home_banner {
  padding-top: 100px;
  padding-bottom: 80px;
  background-image: url(../img/banner.png);
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(5px);
  background-repeat: no-repeat;
  z-index: 99;
  overflow: hidden;
}

.home_banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

.home_banner h1 {
  font-size: 60px;
  font-family: "Outfit", serif;
  margin-bottom: 20px;
  color: #fff;
}

.home_banner h2 {
  font-family: "Outfit", serif;
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 0px;
  color: #fff;
}

@media (max-width: 575px) {
  .home_banner h1 {
    font-size: 40px;
  }

  .home_banner h2 {
    font-size: 18px;
  }
}

.inner-banner {
  background: none;
  padding: 30px 0px !important;
  background: var(--falcon-primary) !important;

}

.inner-banner .bn_heading {
  padding-bottom: 0px !important;
  font-size: 30px;
}

.inner-banner .text-center {
  text-align: left !important;
}

.breadcrumb {
  justify-content: start !important;
}

.breadcrumb-item+.breadcrumb-item::before {
  font-family: "" Open Sans", sans-serif;";
  font-weight: 900;
  content: "\f105";
  color: #fff;
  padding-right: 8px;
}

.bn_heading {
  font-size: 80px;
}

/* Trending destinations Css */
.trend-desti:before {
  position: absolute;
  content: "";
  background-image: url(../img/feature-bg.png );
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .2;
  width: 100%;
  height: 735px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}


/* offer-card css */
.custom-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-hover:hover {
  transform: translateY(-8px);
}

/* footer css  */
/* payment_icons fooetr css */
.payment_icons {
  background-color: var(--falcon-primary);
}

.payment_icons img {
  height: 28px;
}

.assist-img {
  height: 6.125rem;
  width: 6.125rem;
  min-width: 6.125rem;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.assistance-btn {
  background: linear-gradient(to right,
      var(--falcon-primary),
      color-mix(in srgb, var(--falcon-primary) 70%, var(--falcon-secondary) 30%),
      var(--falcon-secondary));
  background-size: 200% auto;
  transition: all 0.5s ease;
  z-index: 1;
  position: relative;
}

.assistance-btn:hover {
  background-position: right center;
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.glass-effect {
  background: #fff;
  backdrop-filter: blur(14px);
  border-radius: 1rem;
  animation: zoomIn 0.5s ease-in-out;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.animate-loading {
  animation: progressAnim 2s infinite linear;
}

@keyframes progressAnim {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.bg-search {
  background-color: #f2f2f2;
}

.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.cta-gradient {
  background: linear-gradient(135deg, rgb(var(--falcon-primary-rgb), 0.5) 0%, rgb(var(--falcon-primary-rgb), 1) 100%);
}

.bg-pattern-dots {
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 15px 15px;
  color: rgba(255, 255, 255, 0.3);
}

.circle-blur {
  filter: blur(60px);
  opacity: 0.5;
  border-radius: 50%;
}

.deal-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5),
      /* top color with opacity */
      rgba(0, 0, 0, 0.5)
      /* bottom color with opacity */
    ),
    url(../img/deal-bg.jpg);
  background-position: bottom;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 100px;
  padding-bottom: 100px;
  color: #fff;
  /* optional, for white text on dark overlay */
}

.shape-element {
  bottom: -1px;
  position: absolute;
  fill: #ffffff;

  z-index: 4;
  width: 100%;
}

.shape-element svg {
  height: 70px;
  line-height: 0px;
  width: 100%;
}

.bottom-to-up {
  transform: rotate(180deg);
}

.top-element {
  top: -1px !important;
  bottom: auto !important;
}

.form-control::placeholder {
  color: #000 !important;
}

.fill-white {
  fill: white;
}

@media (max-width: 575px) {
  body {
    font-size: 14px;
  }
}

.hero-swiper {
  width: 100%;
  height: 85vh;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  display: flex !important;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.20) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .content-box {
  max-width: 600px;
  padding: 30px;
  border-radius: 16px;
  font-family: "Outfit", serif;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.content-box .tag {
  display: inline-block;
  background: var(--falcon-primary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.content-box h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 10px;
  font-family: "Outfit", serif;
  color: var(--falcon-white);
}

.content-box p {
  font-size: 20px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-buttons .btn-primary {
  background: var(--falcon-primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 194, 255, 0.4);
}

.hero-buttons .btn-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-buttons .btn-outline:hover {
  background: #fff;
  color: #000;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.3);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.4 !important;
  width: 10px !important;
  height: 10px !important;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  background: var(--falcon-primary) !important;
  opacity: 1 !important;
  width: 20px !important;
  border-radius: 50px !important;
}

.animate {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .hero-content .content-box {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .content-box h1 {
    font-size: 38px;
  }

  .hero-content .content-box {
    padding: 20px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}

.section-title {
  max-width: 600px;
  margin: 0 auto;
}

.section-title h2 {
  font-family: "Outfit", serif;
  color: var(--falcon-secondary);
}

.section-title p {
  font-size: 18px;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  display: flex;
  flex-direction: column;
  ;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  font-family: "Outfit", serif;
  border: 1px solid var(--falcon-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.service-card:hover {
  border: 1px solid var(--falcon-primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-card .card-img {
  position: relative;
  overflow: hidden;
}

.service-card .card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.3s;
}

.service-card:hover .card-img img {
  transform: scale(1.1);
}

.service-card .badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #00c2ff;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: "Outfit", serif;
  font-size: 16px;
  font-weight: 600;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card .card-body p {
  margin-bottom: 12px;
}

.service-card .card-body a {
  color: var(--falcon-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.service-card:hover .card-body a {
  gap: 10px;
}

@media (max-width: 1199px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.travel-img img {
  width: 100%;
}

.travel-content h2 {
  font-family: "Outfit", serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--falcon-secondary);
  margin-bottom: 20px;
  line-height: 1.4;
}

.travel-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.travel-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}

.travel-content ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--falcon-primary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--falcon-primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 194, 255, 0.3);
}

.airline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.airline-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.airline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.airline-img {
  position: relative;
}

.airline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.airline-title {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.airline-title h3 {
  font-family: "Outfit", serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--falcon-white);
}

.logo {
  font-family: "Outfit", serif;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
}

.airline-body {
  padding: 18px;
}

.airline-body p {
  font-family: "Outfit", serif;
  margin-bottom: 12px;
  color: #333;
}

.airline-body .phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--falcon-primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.airline-body .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.airline-body .tags .anchor {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #333;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: 0.3s;
}

.airline-body .tags a:hover {
  color: var(--falcon-primary);
  border-color: var(--falcon-primary);
}

@media (max-width: 992px) {
  .airline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .airline-grid {
    grid-template-columns: 1fr;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.feature-box .icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;
  background: rgba(var(--falcon-primary-rgb), 0.1);
  color: var(--falcon-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature-box h4 {
  font-family: "Outfit", serif;
  font-weight: 600;
}

.feature-box p {
  margin: 0;
}

@media (max-width: 575px) {
  .feature-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer-brand p {
  color: #fff;
  opacity: 0.8;
  max-width: 400px;
  font-size: 14px;
}

.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--falcon-primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: "Outfit", serif;
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--falcon-primary);
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li:last-child {
  margin-bottom: 0;
}

.footer-col ul li a {
  color: #aab4c0;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: var(--falcon-primary);
  padding-left: 6px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 15px;
  font-size: 12px;
  color: #8b98a7;
}

@media (max-width: 991px) {
  .footer-services {
    gap: 20px;
  }
}

@media (max-width: 575px) {

  .footer-grid,
  .footer-services {
    grid-template-columns: 1fr;
  }
}

.page-breadcrumb {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background-image: url(../img/breadcrumb.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-breadcrumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.75) 100%);
  pointer-events: none;
  z-index: 0;
}

.page-breadcrumb::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--falcon-primary) 0%, var(--falcon-secondary) 100%);
  z-index: 2;
}

.breadcrumb-content {
  font-family: "Outfit", serif;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  z-index: 1;
  margin-left: 100px;
  animation: fadeInUpBreadcrumb 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeInUpBreadcrumb {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumb-content h1 {
  font-family: "Outfit", serif;
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 40%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 0;
  line-height: 1.1;
}

.breadcrumb-content p {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  margin: 10px 0 0;
  max-width: 600px;
}

.breadcrumb-btn {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.breadcrumb-btn a {
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-btn a:hover {
  background: var(--falcon-primary);
  transform: translateY(-3px);
}

.breadcrumb-content .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center !important;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  list-style: none;
}

.breadcrumb-content .breadcrumb li {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.breadcrumb-content .breadcrumb li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-content .breadcrumb li a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.breadcrumb-content .breadcrumb li.active {
  color: #ffffff;
  font-weight: 600;
}

.breadcrumb-content .breadcrumb i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

@media screen and (max-width: 575px) {
  .breadcrumb-content {
    margin-left: 0;
    display: flex;
    margin: 0 20px;
  }

  .breadcrumb-content h1 {
    font-size: 38px;
  }

  .breadcrumb-content p {
    font-size: 16px;
  }

  .breadcrumb-content .breadcrumb {
    font-size: 14px;
    padding: 6px 18px;
    gap: 8px;
  }
}

.other-services-grid {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.other-service-card {
  width: 150px;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all .3s ease;
}

.other-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.other-service-card img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.other-service-card p {
  padding: 12px 8px;
  font-family: "Outfit", serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--falcon-secondary);
  margin: 0;
}

.refund-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.refund-card,
.refund-faq,
.refund-form,
.sidebar-card,
.other-airlines-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.refund-card-header {
  background: #08224d;
  color: #fff;
  font-family: "Outfit", serif;
  font-size: 24px;
  font-weight: 700;
  padding: 10px 20px;
}

.refund-steps {
  padding: 25px;
}

.refund-step {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.refund-step:last-child {
  margin-bottom: 0;
}

.refund-step span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--falcon-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.refund-step p {
  margin: 0;
}

.refund-requirements {
  list-style: none;
  padding: 25px;
  margin: 0;
}

.refund-requirements li {
  padding-left: 25px;
  margin-bottom: 15px;
  position: relative;
}

.refund-requirements li:last-child {
  margin-bottom: 0;
}

.refund-requirements li:before {
  content: "\f058";
  font-family: "font Awesome 6 Pro";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--falcon-primary);
}

.custom-faq .accordion-button {
  background: #fff;
  color: var(--falcon-secondary);
  font-weight: 500;
  padding: 20px;
  box-shadow: none !important;
}

.custom-faq .accordion-button::after {
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.custom-faq .accordion-body {
  padding: 0 20px 20px;
}

.custom-faq .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.custom-faq .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(52%) sepia(92%) saturate(2405%) hue-rotate(157deg) brightness(97%) contrast(101%);
}

.refund-form-header {
  padding: 10px 20px;
  border-bottom: 1px solid #e5e5e5;
}

.refund-form-header h3 {
  color: #08224d;
  font-family: "Outfit", serif;
  font-size: 24px;
  font-weight: 700;
}

.refund-form-header p {
  margin: 0;
}

.refund-form form {
  padding: 20px;
}

.refund-form form label {
  color: var(--falcon-secondary);
}

.refund-form form .form-control::-webkit-input-placeholder {
  color: #9ca3af !important;
}

.refund-form form .form-control::-moz-placeholder {
  color: #9ca3af !important;
  opacity: 1;
}

.refund-form form .form-control:-ms-input-placeholder {
  color: #9ca3af !important;
}

.refund-form form .form-control::placeholder {
  color: #9ca3af !important;
  opacity: 1;
}

.refund-submit-btn {
  background: #081d45;
  color: #fff;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
}

.refund-submit-btn:hover {
  background: #061634;
}

.sidebar-card h4 {
  background: #eaf7fc;
  padding: 18px;
  margin: 0;
  font-family: "Outfit", serif;
  font-size: 20px;
}

.sidebar-card ul {
  margin: 0;
  padding: 20px;
}

.sidebar-card li {
  position: relative;
  list-style: none;
  padding-left: 20px;
  margin-bottom: 10px;
}

.sidebar-card li:last-child {
  margin-bottom: 0;
}

.sidebar-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--falcon-primary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.quick-tip {
  background: #fff8e8;
  border: 1px solid #ffd165;
  border-radius: 16px;
  padding: 20px;
}

.quick-tip h5 {
  color: #973c00;
}

.quick-tip p {
  font-size: 14px;
  margin: 0;
}

.other-airlines-header {
  padding: 22px 20px;
  font-family: "Outfit", serif;
  font-size: 20px;
  font-weight: 700;
  color: #081f4d;
  border-bottom: 1px solid #edf1f5;
}

.airline-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  color: #2b3f5c;
  font-size: 18px;
  transition: .3s;
}

.airline-link:not(:last-child) {
  border-bottom: 1px solid #edf1f5;
}

.airline-link:hover {
  background: #f8fafc;
  color: #00b7e6;
}

.airline-link i {
  font-size: 13px;
  color: #6b7280;
}

@media(max-width:991px) {
  .refund-layout {
    grid-template-columns: 1fr;
  }
}

.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--falcon-primary);
  color: #fff;
  padding: 14px 16px;
  font-family: 'Outfit', serif;
  font-weight: 600;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

.mobile-call-btn .icon {
  background: rgba(255, 255, 255, 0.2);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .mobile-call-btn {
    display: flex;
  }
}