/* font style use localy */
@import url(fonts.css);

:root {
  --very-dark-gray: #0A0A0A;
  --warm-gold: #AF884A;
  --dark-navy-blue: #14213D;
  --soft-cream: #FAF3E0;
  --earthy-brown: #5E503F;
  --deep-red: #660000;
}

::selection {
  background-color: #0A2472;
  color: #fff;
}

header {
  z-index: 999;
}


/* navbar css */
.exclusive-announcement {
  background: #EE4266;
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(175, 136, 74, 0.3);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  overflow: hidden;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 25s linear infinite;
}

.exclusive-badge {
  background-color: #e9c46a;
  color: #0A0A0A;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
  margin: 0 10px;
  font-size: 12px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Luxury Navbar */
.luxury-navbar {
  background-color: #e9c46a;
  border-bottom: 1px solid rgba(175, 136, 74, 0.2);
}

.luxury-brand {
  padding: 0;
}

.luxury-logo-wrapper {
  display: flex;
  align-items: center;
}

.luxury-logo-img {
  height: 40px;
  margin-right: 15px;
}

/* Luxury Navigation */
.luxury-nav-container {
  flex-grow: 1;
}

.luxury-brand-text {
  display: flex;
  flex-direction: column;
}

.luxury-brand-name {
  color: #FAF3E0;
  font-weight: 300;
  letter-spacing: 3px;
  font-size: 18px;
  line-height: 1;
}

.luxury-tagline {
  color: #AF884A;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 3px;
}

.luxury-toggler {
  border: none;
  padding: 0;
}

.luxury-toggler-icon {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #AF884A;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.luxury-nav {
  margin: 0 auto;
}

.luxury-nav-item {
  margin: 0 10px;
  position: relative;
}

.luxury-nav-link {
  color: #14213D !important;
  padding: 10px 15px !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 300;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.luxury-link-text {
  position: relative;
  z-index: 2;
}

.luxury-link-ornament {
  position: absolute;
  bottom: 5px;
  width: 0;
  height: 1px;
  background-color: #0A0A0A;
  transition: all 0.3s ease;
}

.luxury-nav-link:hover .luxury-link-ornament,
.luxury-nav-link.active .luxury-link-ornament {
  width: 100%;
}

.luxury-nav-link.active {
  color: #0A0A0A !important;
}

/* VIP Concierge Box */
.luxury-concierge-box {
  display: flex;
  align-items: center;
  background: rgba(20, 33, 61, 0.7);
  border: 1px solid #AF884A;
  border-radius: 30px;
  padding: 5px 5px 5px 15px;
}

.luxury-concierge-icon {
  width: 30px;
  height: 30px;
  background-color: #e9c46a;
  color: #0A0A0A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 12px;
}

.luxury-concierge-details {
  display: flex;
  flex-direction: column;
}

.luxury-concierge-label {
  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 1;
}

.luxury-concierge-number {
  color: #FAF3E0;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.luxury-concierge-number:hover {
  color: #AF884A;
}

.luxury-concierge-divider {
  width: 1px;
  height: 30px;
  background-color: rgba(175, 136, 74, 0.3);
  margin: 0 15px;
}

.luxury-concierge-button {
  width: 30px;
  height: 30px;
  background-color: #e9c46a;
  color: #0A0A0A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.luxury-concierge-button:hover {
  background-color: #FAF3E0;
}



/* Smooth collapse transition */
.luxury-toggler {
  transition: all 0.3s ease-in-out;
  border: none;
  background: transparent;
}

.luxury-toggler-icon {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #AF884A;
  margin: 4px 0;
  transition: all 0.3s ease;
}

.collapsing {
  overflow: hidden;
  transition: height 0.35s ease;
}

.collapse {
  transition: height 0.35s ease;
}


.btn-outline-primary {
  transition: all 0.2s ease;
}

/* search form css */
/* @import url(search-form.css); */
.home_banner form {
  background-color: #fff !important;
  border-radius: 1rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.85);
  border: 1px solid #AF884A;
}

.autocomplete-list {
  position: absolute;
  z-index: 1000;
  width: 400px;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 2px;
  max-width: 100%;

}

.autocomple-option button {
  min-width: 50px !important;
  padding: 5px !important;
  background-color: var(--falcon-secondary);
  color: #fff;
}

.autocomple-option div {
  font-size: var(--falcon-body-font-size) !important;
}

.autocomple-option:hover {
  background-color: var(--falcon-light);
}

.frm_llbs {
  position: absolute;
  top: 6px;
  left: 9px;
  margin: 0;
}

.fm_ln1 .form-group {
  margin: 0 0px 15px 0;
  position: relative;
}

input.ipt1 {
  text-transform: capitalize;
  border-radius: 4px;
  padding: 5px 10px 5px 32px;
  background: #f4f9fc !important;
}

.searchIcons {
  color: #EE4266 !important;
}

/* .fisrt_edus {
  border-radius: 25px 0 0 25px !important;
} */

.autocomple-option button {
  max-width: max-content !important;
  padding: 5px !important;
  margin: 0px;
  background: var(--falcon-secondary);
}

.res_hh {
  color: #000;
  margin-bottom: .5rem;
}




/* special offer seciton */
.bg-cream-light {
  background-color: rgb(250, 245, 230);
}

.bg-dark-navy {
  background-color: #14213D;
}

.bg-cream {
  background-color: #FAF3E0;
}

.text-gold {
  color: #AF884A;
}

.text-cream {
  color: #FAF3E0;
}

.text-cream-light {
  color: #FAF3E0;
  opacity: 0.75;
}

.text-deep-red {
  color: #660000;
}

.text-dark-navy {
  color: #14213D;
}

.text-earthy {
  color: #5E503F;
}

.icon-opacity {
  opacity: 0.75;
}

.badge-gold {
  background-color: #AF884A;
  color: #14213D;
}

.badge-red {
  background-color: #660000;
  color: #FAF3E0;
}

.badge-code {
  background-color: #FAF3E0;
  color: #14213D;
}

.btn-gold {
  background-color: #AF884A;
  color: white;
  border: none;
}

.btn-gold:hover {
  background-color: #8f6e38;
  color: white;
}

.btn-navy {
  background-color: #14213D;
  color: white;
  border: none;
}

.btn-navy:hover {
  background-color: #0a1428;
  color: white;
}



/*routes section */
.bg-gold {
  background-color: #D4AF37;
}

.promo-badge {
  font-size: 0.75rem;
}

/* cta section */
/* Custom Color Classes */
.cta-airplane-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../img/cta.png');
  /* Adjusted path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ctaBtn:hover {
  background: #d6b657 !important;
}

.bg-dark-navy-blue {
  background-color: #14213D;
}

.text-soft-cream {
  color: #FAF3E0;
}

.bg-soft-cream {
  background-color: #FAF3E0;
}

.text-dark-navy-blue {
  color: #14213D;
}

.bg-warm-gold {
  background-color: #e9c46a;
}

.text-warm-gold {
  color: #AF884A;
}

/* faqs section */
.faqSec {
  background: #FAF3E0;
}



.pass_bx {
  text-align: center;
}


.form-control::placeholder {
  color: var(--falcon-dark) !important;
}

.readtrue {
  cursor: pointer !important;
  background-color: #fff !important;
  opacity: 1;
}

.form-control[disabled] {
  opacity: 0.4 !important;
}

.psg_dls {
  position: absolute;
  background: #fff;
  padding: 10px;
  top: 65px;
  border-radius: 10px;
  z-index: 9999;
}


.psg_dls .btn,
.btn_done {
  color: #fff;
  padding: 5px;
  line-height: 1;
  background-color: #EE4266;
}

.btn_done {
  border: none;
  border-radius: 5px;
  margin-top: 10px;
}

.psg_dls .form-control {
  padding: 5px;
  height: 26px;
  line-height: 1;
  border-radius: 5px !important;
}

.psg_dls .input-group {
  gap: 5px;
}

.customradio:has(input[type="radio"]:checked) {
  background-color: #EE4266 !important;
  border-color: var(--falcon-primary);
  color: #fff !important;
}

.searchBtn {
  background-color: #EE4266 !important;
  border-color: #EE4266;
}

.position-relative.p-4.p-md-5.rounded {
  background: #e1700d;
  max-width: 1140px;
}

/* banner css */
.home_banner {
  background: url('../img/slider.png');
  background-size: cover;
  background-position: center;
  height: 320px;
  position: relative;
}

.inner-banner {
  background: url(../img/contact-us2.png);
  padding: 4rem 0;
  background-position: bottom;
  background-size: cover;
}

.inner-banner .bn_heading {
  padding-bottom: 0px !important;
  font-size: 30px;
}

.inner-banner .text-center {
  text-align: left !important;
}

.breadcrumb {
  justify-content: start !important;
}

.bn_heading {
  font-size: 16px;
}

p.fs-6 {
  font-size: 54px !important;
  font-weight: 800;
}

.searchForm {
  bottom: -3rem;
}

/* footer css  */

.footerBg {
  background-color: #14213D;
}

.ftrHeadng {
  color: #FFD23F !important;
}

.hover-underline:hover {
  text-decoration: underline;
  text-decoration-color: var(--hover-color);
  text-underline-offset: 4px;
}

.btn-pill {
  border-radius: 50rem !important;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.footer-gradient {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

/* search result  css */
.airline-logo {
  height: 50px;
  width: 100px;
  object-fit: contain;
  background-color: var(--falcon-light);
  border-radius: 5px;
  overflow: hidden;
}

/* breadcrumb css  */
.breadcrumb-tem+.breadcrumb-item::before {
  color: #ffffff !important;
}

/* innner page css for form */
.inner-banner .bg-white.p-3.rounded-4 {
  margin-top: 1rem;
}

/* css for toast  */
.toast {
  z-index: 10;
  animation: slideIn 0.5s ease-out;
  width: max-content;
  max-width: 290px;
}

/* Toast animation */
@keyframes slideIn {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

/* loader css  */
.loader-box {
  z-index: 9999;
}

.loader-card {
  max-width: 600px;
  width: 100%;
}

.progress-bar-custom {
  animation: loading 2s ease-in-out infinite;
}

.progress-plane {
  animation: movePlane 2s ease-in-out infinite;
}

@keyframes loading {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  75% {
    width: 85%;
  }

  90% {
    width: 90%;
  }

  100% {
    width: 90%;
  }
}

@keyframes movePlane {
  0% {
    left: 0%;
  }

  50% {
    left: 70%;
  }

  75% {
    left: 85%;
  }

  90% {
    left: 90%;
  }

  100% {
    left: 90%;
  }
}

/* popup styles */

.expedia-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: none;
}

@media (min-width: 769px) {
  .expedia-popup-overlay {
    display: none !important;
  }
}

.agent-image {
  width: 60px;
  height: 60px;
}

.btn-success {
  --bs-btn-bg: var(--bs-success);
  --bs-btn-border-color: var(--bs-success);
  --bs-btn-hover-bg: #7ab521;
  --bs-btn-hover-border-color: #7ab521;
}