/* 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 {
  position: relative;
  padding-top: 50px;
  padding-bottom: 130px;
  background-image: url(../img/banner.jpg);
  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.1);
  pointer-events: none;
  z-index: 1;
}

.home_banner .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", serif;
  font-size: 16px;
  margin-bottom: 10px;
}

.home_banner .badge i {
  color: var(--falcon-primary);
  font-size: 18px;
  transform: rotate(315deg);
  padding: 10px;
  background: #fff;
  border-radius: 50%;
}

.home_banner h1 {
  font-size: 50px;
  font-family: "Outfit", serif;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}

.home_banner h1 span {
  color: var(--falcon-secondary);
}

.home_banner h2 {
  font-family: "Outfit", serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0px;
  color: #fff;
}

.feature-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: rgba(var(--falcon-secondary-rgb), 0.5);
  padding: 20px 150px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform .3s ease;
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  font-size: 18px;
}

.text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
}

.text p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
}

.divider {
  width: 2px !important;
  height: 40px !important;
  background: rgba(255, 255, 255, 0.5) !important;
}

.feature-item:hover {
  transform: translateY(-3px);
}

@media (max-width: 1199px) {
  .feature-strip {
    padding: 20px 20px;
  }
}

@media (max-width: 991px) {
  .home_banner {
    padding-top: 30px !important;
    padding-bottom: 200px !important;
  }
}

@media (max-width: 575px) {
  .home_banner {
    padding-top: 30px !important;
    padding-bottom: 230px !important;
  }

  .home_banner h1 {
    font-size: 40px;
  }

  .home_banner h2 {
    font-size: 18px;
  }

  .feature-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip .divider {
    display: none;
  }

  .icon-box {
    width: 40px;
    height: 40px;
  }
}

.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;
  }
}

.section-title .badge {
  display: inline-block;
  background: rgb(var(--falcon-primary-rgb), 0.1);
  color: var(--falcon-primary);
  padding: 8px 14px;
  border-radius: 30px;
  font-family: "Outfit", serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title h2 {
  font-family: "Outfit", serif;
  color: var(--falcon-secondary);
}

.feature-card {
  transition: all 0.3s ease;
  background: #fff;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 55px;
  height: 55px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(var(--falcon-primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--falcon-primary);
  font-size: 20px;
}

.about-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-hero-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-trust-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  padding: 12px 22px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 2;
  animation: aboutBadgeFloat 3s ease-in-out infinite;
}

@keyframes aboutBadgeFloat {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.about-avatar-stack {
  display: flex;
  align-items: center;
}

.about-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-avatar:first-child {
  margin-left: 0;
}

.about-trust-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.about-trust-label {
  font-size: 14px;
  font-weight: 600;
  font-family: "Outfit", serif;
}

.about-trust-count {
  font-family: "Outfit", serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--falcon-primary);
}

@media (max-width: 991px) {
  .about-hero-img {
    height: 360px;
  }
}

@media (max-width: 767px) {
  .about-hero-img {
    height: 280px;
  }

  .about-trust-badge {
    padding: 10px 16px;
    gap: 10px;
    width: 65%;
  }

  .about-avatar {
    width: 32px;
    height: 32px;
  }

  .about-trust-count {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .about-hero-img {
    height: 240px;
  }
}

.dest-nav-arrows {
  display: flex;
  gap: 10px;
}

.dest-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #0f172a;
  font-size: 16px;
}

.dest-arrow:hover {
  background: var(--falcon-primary);
  border-color: var(--falcon-primary);
  color: #fff;
  transform: scale(1.08);
}

.dest-card {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  height: 420px;
  text-decoration: none;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dest-card:hover img {
  transform: scale(1.08);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.dest-location-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(var(--falcon-primary-rgb), 0.85);
  color: #fff;
  font-family: "Outfit", serif;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  letter-spacing: 0.03em;
}

.dest-card-info {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
}

.dest-price {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: "Outfit", serif;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.dest-name {
  font-family: "Outfit", serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .dest-card {
    height: 360px;
  }
}

@media (max-width: 767px) {
  .dest-card {
    height: 320px;
  }

  .dest-nav-arrows {
    display: none;
  }
}

@media (max-width: 575px) {
  .dest-card {
    height: 300px;
  }

  .dest-name {
    font-size: 20px;
  }
}

.wcu-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 20px 30px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.wcu-content .divider {
  width: 2px !important;
  height: 100px !important;
  background: rgba(0, 0, 0, 0.2) !important;
}

.wcu-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.wcu-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.wcu-card:hover .wcu-icon-box {
  transform: scale(1.08);
}

.wcu-icon-box.wcu-blue {
  background-color: #eef2ff;
  color: var(--falcon-primary);
}

.wcu-icon-box.wcu-orange {
  background-color: #fff7ed;
  color: #ea580c;
}

.wcu-icon-box.wcu-green {
  background-color: #f0fdf4;
  color: #16a34a;
}

.wcu-card-title {
  font-family: "Outfit", serif;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0;
}

.wcu-card-text {
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
  margin-bottom: 0;
  text-align: justify;
}

@media (max-width: 991px) {
  .wcu-content {
    flex-wrap: wrap;
    padding: 20px;
  }

  .wcu-content .divider {
    width: 90% !important;
    height: 2px !important;
    background: rgba(0, 0, 0, 0.2) !important;
  }
}

.hover-underline {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.hover-underline:hover::after {
  width: 100%;
}

.support-bar {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: all 0.35s ease;
  opacity: 1;
  transform: translateY(0);
}

.support-bar.hide {
  opacity: 0;
  transform: translateY(120px);
  pointer-events: none;
}

.support-container {
  pointer-events: all;
  width: 92%;
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0b1220, #0f1b2e);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.support-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding: 0 10px;
  white-space: nowrap;
}

.title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.9;
}

.title.small {
  font-size: 11px;
}

.subtitle {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 2px;
}

.text {
  font-size: 13px;
  opacity: 0.85;
}

.text span {
  color: #7c7bff;
  font-weight: 600;
}

.icon-box {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.icon-box.blue {
  background: linear-gradient(135deg, #4f7cff, #6a5cff);
  color: #fff;
}

.icon-box.dark {
  background: rgba(255, 255, 255, 0.06);
  color: #cfd6ff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #6a5cff, #8b5cf6);
  box-shadow: 0 10px 25px rgba(108, 92, 255, 0.35);
}

.call-btn i {
  font-size: 16px;
}

.number {
  font-size: 14px;
  font-weight: 700;
}

.hint {
  font-size: 12px;
  opacity: 0.85;
}

.close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1199px) {
  .support-container {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .support-container {
    max-width: fit-content;
  }

  .support-item,
  .divider {
    display: none;
  }
}

.page-breadcrumb {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background-image: url(../img/breadcrumb.jpg);
  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;
}

.breadcrumb-content {
  font-family: "Outfit", serif;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  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 .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center !important;
  gap: 10px;
  margin-top: 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 .breadcrumb {
    font-size: 14px;
    padding: 6px 18px;
    gap: 8px;
  }
}

.contact-info-wrap {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 30px 30px 100px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
  border: 1px solid #f1f5f9;
  overflow: hidden;
}

.contact-detail-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.detail-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgb(var(--falcon-primary-rgb), 0.1);
  color: var(--falcon-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-detail-card:hover .detail-icon-box {
  transform: scale(1.08);
}

.detail-card-content {
  flex-grow: 1;
}

.detail-card-label {
  display: block;
  font-family: "Outfit", serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--falcon-primary);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.detail-card-value {
  display: block;
  font-family: "Outfit", serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--falcon-secondary);
  margin-bottom: 2px;
}

.contact-info-wrap img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
  border: 1px solid #f1f5f9;
}

.form-header-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-plane-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #eef2ff;
  color: var(--falcon-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.form-card-title {
  font-family: "Outfit", serif;
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.form-card-subtitle {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 0;
}

.form-group-custom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label-custom {
  font-family: "Outfit", serif;
  font-size: 16px;
  font-weight: 700;
  color: #334155;
}

.form-control-custom {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px 20px;
  font-size: 14px;
  color: #0f172a;
  transition: all 0.25s ease;
  width: 100%;
}

.form-control-custom:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #818cf8;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.08);
}

.form-control-custom::placeholder {
  color: #94a3b8;
}

.form-select-custom {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
  padding-right: 45px;
}

.textarea-custom {
  resize: none;
  border-radius: 20px;
}

.contact-submit-btn {
  background: linear-gradient(135deg, var(--falcon-primary), #6366f1);
  color: #ffffff;
  border: none;
  border-radius: 18px;
  padding: 16px 30px;
  font-family: "Outfit", serif;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, #4338ca, var(--falcon-primary));
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.35);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.form-trust-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-badge-item i {
  font-size: 20px;
  color: #64748b;
}

.trust-title {
  display: block;
  font-family: "Outfit", serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.trust-desc {
  display: block;
  font-size: 14px;
  color: #64748b;
}

@media (max-width: 991px) {
  .contact-info-wrap {
    padding: 30px 30px 150px;
  }
}

@media (max-width: 575px) {
  .contact-info-wrap {
    padding: 20px 20px 70px;
  }

  .contact-form-card {
    padding: 20px;
  }

  .detail-card-value {
    font-size: 16px;
  }
}

.sitemap-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sitemap-title {
  font-family: "Outfit", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--falcon-primary);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sitemap-title i {
  background: linear-gradient(135deg, var(--falcon-primary) 0%, var(--falcon-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.sitemap-list li {
  display: block;
}

.sitemap-list li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-size: 15px;
  font-weight: 550;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sitemap-list li a i {
  font-size: 13px;
  color: rgba(var(--falcon-primary-rgb), 0.65);
  transition: all 0.3s ease;
  width: 20px;
  text-align: center;
}

.sitemap-list li a:hover {
  color: var(--falcon-primary);
  transform: translateX(6px);
}

.sitemap-list li a:hover i {
  color: var(--falcon-secondary);
  transform: scale(1.2);
}

.ar-sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ar-menu-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.ar-menu-item:hover {
  transform: translateX(4px);
  border-color: #e2e8f0;
}

.ar-menu-item.active {
  background-color: rgb(var(--falcon-primary-rgb), 0.1);
  border-color: #cbd5e1;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.05);
}

.ar-menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--falcon-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ar-menu-item.active::before {
  opacity: 1;
}

.menu-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f8fafc;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.ar-menu-item.active .menu-icon-circle {
  background-color: #ffffff;
  color: var(--falcon-primary);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.12);
  border-color: rgba(79, 70, 229, 0.15);
}

.menu-text-wrap {
  flex-grow: 1;
}

.menu-num {
  font-family: "Outfit", serif;
  font-size: 14px;
  font-weight: 700;
  color: #a5b4fc;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 2px;
}

.ar-menu-item.active .menu-num {
  color: var(--falcon-primary);
}

.menu-title {
  font-family: "Outfit", serif;
  font-size: 16px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 2px;
}

.ar-menu-item.active .menu-title {
  color: #0f172a;
}

.menu-desc {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 0;
  line-height: 1.4;
}

.ar-menu-item.active .menu-desc {
  color: #64748b;
}

.ar-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ar-acc-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ar-acc-card.active {
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.04);
}

.ar-acc-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  cursor: pointer;
  user-select: none;
}

.ar-acc-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #eef2ff;
  color: var(--falcon-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.08);
}

.ar-acc-heading {
  font-family: "Outfit", serif;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  flex-grow: 1;
}

.ar-chevron {
  font-size: 14px;
  color: #64748b;
  transition: transform 0.3s ease;
}

.ar-acc-card.active .ar-chevron {
  transform: rotate(180deg);
  color: var(--falcon-primary);
}

.ar-acc-body {
  padding: 0 24px 32px 96px;
  display: none;
}

.ar-acc-card.active .ar-acc-body {
  display: block;
}

.ar-acc-body p {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
  text-align: justify;
}

.ar-agents-box {
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 24px;
}

.agents-box-title {
  font-family: "Outfit", serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--falcon-primary);
  margin-bottom: 12px;
}

.agents-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}

.agents-check-item i {
  font-size: 15px;
  margin-top: 3px;
  color: var(--falcon-primary);
  flex-shrink: 0;
}

.ar-footer-cta-banner {
  background: linear-gradient(135deg, var(--falcon-primary) 0%, var(--falcon-secondary) 100%);
  border-radius: 28px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.cta-banner-left {
  position: relative;
  z-index: 2;
  flex: 1;
}

.cta-banner-title {
  font-family: "Outfit", serif;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.cta-banner-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  max-width: 500px;
}

.cta-banner-right {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.cta-banner-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  color: #0f172a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background-color: #fafafa;
}

.cta-banner-btn i {
  font-size: 18px;
  color: var(--falcon-primary);
  background-color: #f0f3ff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-btn-txt-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-main-txt {
  font-family: "Outfit", serif;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.btn-sub-txt {
  font-size: 11px;
  color: #64748b;
}

.cta-headset-watermark {
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-size: 150px;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 991px) {
  .ar-acc-body {
    padding: 0 24px 24px 24px;
  }
  .ar-footer-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 35px 24px;
  }
  .cta-banner-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-banner-btn {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .ar-acc-heading {
    font-size: 16px;
  }
  .ar-acc-icon-box {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
  .ar-acc-header {
    padding: 16px;
    gap: 12px;
  }
  .ar-acc-card {
    border-radius: 18px;
  }
  .ar-agents-box {
    padding: 16px;
  }
  .cta-banner-title {
    font-size: 22px;
  }
}

.thankyou-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
  text-align: center;
}

.success-icon {
  margin-bottom: 20px;
}

.success-circle {
  width: 92px;
  height: 92px;
  margin: auto;
  border-radius: 50%;
  background: rgb(var(--falcon-primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.success-circle::before {
  content: "";
  position: absolute;
  width: 62px;
  height: 62px;
  background: var(--falcon-primary);
  border-radius: 50%;
}

.success-circle i {
  position: relative;
  color: #fff;
  font-size: 28px;
  z-index: 2;
}

.thankyou-card h1 {
  font-family: "Outfit", serif;
  font-weight: 800;
  color: var(--falcon-primary);
}

.thankyou-card h4 {
  font-family: "Outfit", serif;
  color: var(--falcon-secondary);
  font-weight: 700;
}

.thankyou-text {
  margin-bottom: 30px;
}

.confirmation-box {
  margin-bottom: 30px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.confirmation-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.confirmation-left i {
  color: var(--falcon-primary);
  font-size: 18px;
}

.bottom-info {
  border-top: 1px solid #e8edf5;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.info-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}

.info-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon.blue {
  background: #eef3ff;
}

.info-icon.orange {
  background: #fff3ea;
}

.info-icon.blue i {
  color: #1d4ed8;
}

.info-icon.orange i {
  color: #f97316;
}

.info-icon i {
  font-size: 24px;
}

.info-content h5 {
  font-family: "Outfit", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--falcon-primary);
}

.info-content p {
  margin: 0;
}

.info-content a {
  color: var(--falcon-primary);
  font-weight: 700;
}

.divider {
  width: 1px;
  height: 90px;
  background: #e8edf5;
}

@media(max-width:575px) {
  .thankyou-card {
    padding: 30px 20px;
  }

  .thankyou-card h1 {
    font-size: 36px;
  }

  .bottom-info {
    flex-direction: column;
  }

  .divider {
    width: 100%;
    height: 1px;
  }

  .confirmation-box {
    flex-direction: column;
    text-align: center;
  }

  .confirmation-left {
    text-align: center;
  }
}
