@charset "UTF-8";
:root {
  --animate-delay: 1s;
}

ul {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

@font-face {
  font-family: "SF Pro Display";
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  src: url("../fonts/Roboto-Light.otf"), url("../fonts/Roboto-LightItalic.otf");
}
@font-face {
  font-family: "SF Pro Display";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: url("../fonts/Roboto-Regular.otf"), url("../fonts/Roboto-RegularItalic.otf");
}
@font-face {
  font-family: "SF Pro Display";
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
  src: url("../fonts/Roboto-Medium.otf"), url("../fonts/Roboto-MediumItalic.otf");
}
@font-face {
  font-family: "SF Pro Display";
  font-style: normal;
  font-weight: 600;
  font-display: fallback;
  src: url("../fonts/Roboto-Semibold.otf"), url("../fonts/Roboto-SemiboldItalic.otf");
}
@font-face {
  font-family: "SF Pro Display";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: url("../fonts/Roboto-Bold.otf"), url("../fonts/Roboto-BoldItalic.otf");
}
@font-face {
  font-family: "SF Pro Display";
  font-style: normal;
  font-weight: 800;
  font-display: fallback;
  src: url("../fonts/Roboto-Heavy.otf"), url("../fonts/Roboto-HeavyItalic.otf");
}
@font-face {
  font-family: "SF Pro Display";
  font-style: normal;
  font-weight: 900;
  font-display: fallback;
  src: url("../fonts/Roboto-Black.otf"), url("../fonts/Roboto-BlackItalic.otf");
}
body, html {
  font-family: "Roboto", sans-serif;
}

body {
  height: 100svh; /* toàn chiều cao màn hình */
  display: flex;
  flex-direction: column;
}

.header-title {
  font-size: 38px;
  font-weight: 500;
  color: #121212;
}
@media (max-width: 576px) {
  .header-title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  [class*=col-]:not([class*=ant-col]) {
    padding: 0 12px;
  }
}

header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-shrink: 0;
}
header .header-logo h4 {
  font-size: 1.4rem;
}
header .header-logo h4 .text-primary {
  color: #0066ff !important;
}
header .header-logo h4 .text-success {
  color: #00b050 !important;
}
header .header-search {
  position: relative;
  max-width: 450px;
}
header .header-search input {
  border: 1px solid #D9D9D9;
  font-size: 18px;
  height: 50px;
  color: #828282;
}
header .header-search button {
  color: #000;
  font-size: 1rem;
}
header a {
  font-size: 0.95rem;
  font-weight: 500;
  flex-direction: column;
  font-weight: 600;
}
header a:hover {
  color: #0066ff;
}
header a i {
  font-size: 20px;
}
header .dropdown {
  position: relative;
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  min-width: 100px;
  padding: 6px 12px;
  user-select: none;
}
header .dropdown:hover .options {
  display: block;
}
header .dropdown .selected {
  display: flex;
  align-items: center;
  gap: 4px;
}
header .dropdown .selected .country {
  font-weight: bold;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
}
header .dropdown .selected .country .flag {
  width: 30px;
  height: 20px;
}
header .dropdown .selected .divider,
header .dropdown .selected .currency {
  font-weight: bold;
  color: #000;
}
header .dropdown .selected .arrow {
  margin-left: auto;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #999;
}
header .dropdown .options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  z-index: 1005;
}
header .dropdown .options .flag {
  width: 30px;
  height: auto;
}
header .dropdown .options div {
  padding: 6px 12px;
  cursor: pointer;
}
header .dropdown .options div .dropdown-item {
  cursor: pointer;
  padding: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
header .dropdown .options div .dropdown-item:focus {
  background: #f5f5f5;
}
header .dropdown .options div .dropdown-item:hover {
  background: #f5f5f5;
}
header .dropdown .options div:hover {
  background: #f5f5f5;
}
header .dropdown .options div b {
  color: #000;
}
header .dropdown .options div span {
  padding-left: 5px;
  color: #999;
}
header .btn-light {
  font-size: 0.9rem;
  font-weight: 500;
}

.mobile-header, .mobile-menu {
  display: none;
}

@media (max-width: 992px) {
  header .desktop-header {
    display: none !important;
  }
  header .dropdown {
    margin: 12px;
  }
  header .promo-banner .title {
    font-size: 12px;
    margin-bottom: 0;
    justify-content: center;
  }
  header .promo-banner .subtitle {
    font-size: 10px;
    margin-bottom: 10px;
    margin-top: -4px;
  }
  header .promo-banner .promo-info {
    padding: 10px 0;
  }
  header .promo-banner .btn {
    font-size: 8px;
    margin-bottom: 12px;
  }
  header .promo-banner .btn i {
    font-size: 8px;
    margin-left: 5px;
  }
  header .mobile-header {
    display: block;
    background: #fff;
    border-bottom: 1px solid #eee;
  }
  header .mobile-header .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    padding-block: 6px;
  }
  header .mobile-header .header-top .logo {
    font-weight: bold;
    font-size: 18px;
    color: #1e3a8a;
    width: 100px;
  }
  header .mobile-header .header-top .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  header .mobile-header .header-top .header-actions .icon-btn, header .mobile-header .header-top .header-actions .menu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  header .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  header .mobile-menu.open {
    left: 0;
  }
  header .mobile-menu .menu-header {
    position: absolute;
    top: 5px;
    right: 15px;
  }
  header .mobile-menu .menu-header .menu-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  header .mobile-menu ul.menu-list {
    list-style: none;
    margin-top: 30px;
    padding: 0;
  }
  header .mobile-menu ul.menu-list li {
    border-bottom: 1px solid #f0f0f0;
  }
  header .mobile-menu ul.menu-list li > .menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
  }
  header .mobile-menu ul.menu-list li > .menu-item > a {
    color: #333;
    text-decoration: none;
    flex: 1;
  }
  header .mobile-menu ul.menu-list li > .menu-item > .submenu-toggle {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }
  header .mobile-menu ul.menu-list li.open > .menu-item > .submenu-toggle::before {
    transform: rotate(90deg);
  }
  header .mobile-menu ul.menu-list li > ul.submenu {
    display: none;
    flex-direction: column;
    padding-left: 16px;
  }
  header .mobile-menu ul.menu-list li > ul.submenu li > .menu-item {
    padding: 12px 16px;
    font-size: 14px;
  }
  header .mobile-menu ul.menu-list li > ul.submenu ul.submenu {
    padding-left: 16px;
  }
  header .mobile-menu ul.menu-list li > ul.submenu ul.submenu li > .menu-item {
    font-size: 13px;
  }
  header .mobile-menu ul.menu-list li.open > ul.submenu {
    display: flex;
  }
  header .mobile-menu ul.menu-list li:has(.submenu) > div > a {
    pointer-events: none;
  }
  header .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 900;
  }
  header .menu-overlay.show {
    display: block;
  }
}
.footer {
  background: #fff;
  font-size: 0.95rem;
  color: #000;
  bottom: 0;
  width: 100%;
  background: #F8F8F8;
}
.footer .row {
  margin: 0;
}
.footer .footer-logo {
  font-size: 1.3rem;
}
.footer .footer-logo .text-primary {
  color: #0066ff !important;
}
.footer .description {
  font-size: 16px;
  font-weight: 500;
}
.footer .footer-link {
  color: #000;
  font-weight: 500;
  text-decoration: none;
  line-height: 30px;
}
.footer .footer-link:hover {
  color: #09C586;
}
.footer .contact-info {
  font-size: 20px;
  color: #09C586;
}
.footer .footer-social {
  font-size: 1.5rem;
  color: #000;
  display: flex;
  align-items: center;
}
.footer .footer-social:hover {
  color: #0066ff;
}
.footer .footer-social img {
  display: block;
}
.footer hr {
  border-color: #bbb;
}

@media (max-width: 992px) {
  .footer .footer-logo {
    margin: 0 -12px;
  }
  .footer .footer-logo img {
    width: 180px;
  }
  .footer .description, .footer h5 {
    font-size: 16px;
  }
  .footer .footer-link {
    line-height: 28px;
    font-size: 14px;
  }
  .footer .contact-info {
    font-size: 16px;
  }
  .footer .info {
    font-size: 14px;
  }
}
ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-nav {
  list-style: none;
  position: relative;
  width: 100%;
}
.navbar-nav .nav-item-0 {
  padding-bottom: 15px;
}
.navbar-nav .nav-item .nav-link {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #4F4F4F;
}
.navbar-nav .nav-item .nav-link:hover {
  color: #121212;
}
.navbar-nav .nav-item .active {
  color: #121212 !important;
}
.navbar-nav .nav-item:hover .ul-menu-1 {
  display: flex;
  flex-direction: row;
}
.navbar-nav .nav-item:hover .ul-menu-2 {
  display: flex;
  flex-direction: column;
}
.navbar-nav .ul-menu-1 {
  list-style: none;
  position: absolute;
  top: 50px;
  left: -50px;
  display: none;
  width: calc(100% + 100px);
  justify-content: space-between;
  padding: 30px 50px;
  border-radius: 14px;
  z-index: 10000;
  background-color: #FFF;
  border: 1px solid #ECEAEA;
  height: 300px;
}
.navbar-nav .ul-menu-1 .nav-item {
  min-width: 15%;
}
.navbar-nav .ul-menu-1 .nav-link-1 {
  border-bottom: 1px solid #CBCBCB;
  font-weight: 700;
  color: #4F4F4F !important;
}
.navbar-nav .ul-menu-2 {
  margin-top: 15px;
}
.navbar-nav .ul-menu-2 .nav-link {
  font-weight: 400;
}
.navbar-nav .ul-menu-2 .nav-link:hover {
  color: #121212 !important;
}

.service-hightlight {
  background-color: #ffffff;
  margin-top: 60px;
}

.service-hightlight-cards {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-hightlight-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  text-align: left;
}
@media (max-width: 992px) {
  .service-hightlight-header h2 {
    font-size: 28px;
  }
}

.main-content {
  flex: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.main-content > div {
  flex: 1;
}

.notify-top {
  position: relative;
}
.notify-top .close-notify {
  position: absolute;
  padding: 5px;
  top: 10px;
  right: 15px;
  cursor: pointer;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  /* hiệu ứng mượt */
}
.notify-top .close-notify:hover {
  transform: scale(1.3);
  /* phóng to nhẹ */
}
.notify-top .close-notify:hover i {
  color: #FFFFFF;
  /* đổi màu icon khi hover */
}
.notify-top .close-notify i {
  color: #FFFFFF;
  /* màu icon mặc định */
  font-size: 16px;
  transition: color 0.3s ease;
}

.banner-slider {
  position: relative;
  width: 100%;
  overflow: unset;
  margin-bottom: 100px;
}
.banner-slider #carouselControls {
  position: relative;
}
.banner-slider .slider-image-list {
  position: absolute;
  bottom: -50px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.banner-slider .slider-image-list .overlay-banner {
  position: absolute;
  width: 100%;
  top: -8px;
  height: 50%;
  padding: 10px 10px 0px 10px;
  box-sizing: content-box;
  background-color: #c4d7ff;
  z-index: 1;
}
.banner-slider .slider-image-list .slider-image-item {
  z-index: 2;
  cursor: pointer;
}
.banner-slider .slider-image-list .slider-image-item .background-image {
  width: 170px;
  height: 100px;
}
.banner-slider .slider-image-list .slider-image-item .background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.banner-slider .slider-image-list .slider-image-item.active {
  border: 3px solid #445BFB;
}
@media (max-width: 576px) {
  .banner-slider .slider-image-list {
    bottom: -40px;
    right: 15px;
  }
  .banner-slider .slider-image-list .slider-image-item .background-image {
    width: 120px;
    height: 80px;
  }
}
.banner-slider .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.banner-slider .carousel-item.active {
  display: block;
  opacity: 1;
  position: relative;
}
.banner-slider .carousel-item {
  position: relative;
  overflow: hidden;
  min-width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.banner-slider .carousel-item .image-bg img {
  width: 100%;
  height: 100%;
  height: 560px;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-slider .carousel-item .image-bg.bg-flights img {
  filter: blur(5px);
  -webkit-filter: blur(5px);
}
.banner-slider .carousel-item .title-content {
  position: absolute;
  top: 40%;
}
.banner-slider .carousel-item .title-content h2 {
  font-weight: 800;
  font-size: 48px;
  line-height: 66px;
  color: #FFFFFF;
  margin-bottom: 15px;
}
.banner-slider .carousel-item .title-content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
  margin-bottom: 35px;
}
.banner-slider .carousel-item .title-content .btn-view {
  background-color: #1F3D59;
  border-radius: 10px;
  padding: 18px 40px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  width: 240px;
  text-align: center;
}
.banner-slider .carousel-item .title-content .btn-view:hover {
  background-color: #70C36B;
  color: #FFFFFF;
}
.banner-slider .carousel-item .title-content .btn-view:focus {
  box-shadow: none;
  outline: none;
}
.banner-slider .carousel-item .title-content .btn-view i {
  margin-left: 30px;
}
.banner-slider .carousel-item .title-flights {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  width: 100%;
}
.banner-slider .carousel-item .title-flights h2 {
  font-weight: 800;
  font-size: 48px;
  line-height: 66px;
  color: #FFFFFF;
  margin-bottom: 15px;
  text-align: center;
}
.banner-slider .carousel-item .title-flights p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  text-align: center;
}
.banner-slider .banner-controls-wrapper {
  position: absolute;
  right: 0px;
  bottom: 100px;
  position: absolute;
  right: 0px;
  bottom: 80px;
}
.banner-slider .banner-controls-wrapper .banner-controls {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
  color: #FFFFFF;
}
.banner-slider .banner-controls-wrapper .banner-controls .banner-count {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #FFFFFF;
}
.banner-slider .banner-controls-wrapper .banner-controls .banner-action {
  display: flex;
  gap: 5px;
}
.banner-slider .banner-controls-wrapper .banner-controls .banner-action button {
  background-color: #1F3D59;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  border: 1px solid #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.banner-slider .banner-controls-wrapper .banner-controls .banner-action button:hover {
  background-color: #70C36B;
  border: 1px solid #70C36B;
  color: #FFFFFF;
}
.banner-slider .banner-controls-wrapper .banner-controls .banner-action button i {
  color: #FFFFFF;
  font-size: 20px;
}
@media (max-width: 992px) {
  .banner-slider .carousel-item .image-bg img {
    height: 450px;
  }
  .banner-slider .carousel-item .title-content {
    top: 15%;
  }
  .banner-slider .carousel-item .title-content h2 {
    font-size: 32px;
    line-height: 40px;
    margin-right: 15px;
  }
  .banner-slider .carousel-item .title-content p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 25px;
  }
  .banner-slider .carousel-item .title-content .btn-view {
    padding: 12px 20px;
    font-size: 16px;
    line-height: 16px;
    width: 200px;
  }
  .banner-slider .banner-controls-wrapper {
    bottom: 80px;
  }
  .banner-slider .banner-controls-wrapper .banner-controls .banner-count {
    font-size: 20px;
  }
  .banner-slider .banner-controls-wrapper .banner-controls .banner-action button {
    width: 32px;
    height: 32px;
  }
  .banner-slider .banner-controls-wrapper .banner-controls .banner-action button i {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .banner-slider .carousel-item .title-flights {
    width: 100%;
    padding: 0 15px;
  }
  .banner-slider .carousel-item .title-flights h2 {
    font-size: 34px;
    line-height: 44px;
  }
  .banner-slider .carousel-item .title-flights p {
    font-size: 16px;
  }
}

.popular-destinations {
  margin-top: 30px;
}
.popular-destinations .slick-slider .slick-dots li {
  margin-top: 50px;
  display: inline-block;
}
.popular-destinations .slick-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e6e6e6;
  border: none;
  padding: 0;
  text-indent: -9999px;
  /* hide numeric content */
  cursor: pointer;
  box-shadow: none;
  transition: background 150ms ease, transform 120ms ease;
}

.slick-slider .slick-dots li button:before {
  display: none;
  /* ensure default pseudo content (numbers) is hidden */
}

.slick-slider .slick-dots li.slick-active button {
  background: #1f3d59;
  transform: scale(1.2);
}

.container.popular-destinations {
  margin: 0 auto;
}
.container.popular-destinations .popular-destinations-header {
  text-align: left;
  margin-bottom: 20px;
  margin-top: 50px;
}
.container.popular-destinations .popular-destinations-header h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 66px;
  color: #000000;
}
.container.popular-destinations .popular-destinations-header p {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #4F4F4F;
  margin-bottom: 30px;
}
.container.popular-destinations .destination-grid {
  gap: 15px;
  align-items: center;
}
.container.popular-destinations .destination-grid .destination-item {
  border: 1px solid #D9D9D9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: #fff;
  max-width: 420px;
  width: 100%;
  margin-bottom: 15px;
}
.container.popular-destinations .destination-grid .destination-item .media-container {
  position: relative;
}
.container.popular-destinations .destination-grid .destination-item .media-container .destination-image {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
  /* mượt khi thay đổi */
}
.container.popular-destinations .destination-grid .destination-item .media-container .destination-image:hover {
  transform: scale(1.08);
  /* phóng to nhẹ 8% */
}
.container.popular-destinations .destination-grid .destination-item .media-container .destination-title {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #70C36B;
  padding: 10px 35px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  text-decoration: none;
  margin: 0;
}
.container.popular-destinations .destination-grid .destination-item .media-container .destination-title:hover {
  text-decoration: underline;
}
.container.popular-destinations .destination-grid .destination-item .description-container {
  padding: 15px 20px 18px 20px;
  margin-top: 10px;
}
.container.popular-destinations .destination-grid .destination-item .description-container a {
  text-decoration: none;
  color: #121212;
}
.container.popular-destinations .destination-grid .destination-item .description-container a:hover {
  text-decoration: underline;
}
.container.popular-destinations .destination-grid .destination-item .description-container h3 {
  margin: 8px 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #121212;
}
.container.popular-destinations .destination-grid .destination-item .description-container p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #121212;
}
.container.popular-destinations .destination-grid .destination-item .description-container span.price {
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #121212;
}
.container.popular-destinations .btn-loadmore {
  text-align: center;
  margin-top: 20px;
}
.container.popular-destinations .btn-loadmore .btn {
  display: inline-block;
  padding: 8px 30px;
  background-color: #FFFFFF;
  color: #121212;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid #D9D9D9;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.container.popular-destinations .btn-loadmore .btn:hover {
  background-color: #70C36B;
  color: #FFFFFF;
}
.container.popular-destinations .btn-loadmore .btn:focus {
  box-shadow: none;
  outline: none;
}
@media (min-width: 768px) and (max-width: 992px) {
  .container.popular-destinations .destination-grid .destination-item {
    flex: 0 0 48%;
    max-width: 50%;
    width: 50%;
  }
}
@media (max-width: 992px) {
  .container.popular-destinations .popular-destinations-header h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .container.popular-destinations .popular-destinations-header p {
    font-size: 16px;
    line-height: 22px;
  }
  .container.popular-destinations .destination-grid .destination-item .description-container h3 {
    font-size: 16px;
  }
  .container.popular-destinations .destination-grid .destination-item .description-container span.price {
    font-size: 22px;
    line-height: 25px;
  }
  .container.popular-destinations .destination-grid .destination-item .media-container .destination-title {
    padding: 5px 30px;
    font-size: 16px;
    line-height: 24px;
  }
}

.cheap-flight {
  background: #f7f8ff;
  padding: 100px 0;
}
.cheap-flight .small-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 66px;
  color: #000000;
}
.cheap-flight .main-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #4F4F4F;
  margin-bottom: 30px;
}
.cheap-flight .flight-slider .image-link {
  z-index: 1;
}
.cheap-flight .flight-slider .flight-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  margin: 0 15px;
}
.cheap-flight .flight-slider .flight-card .card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
  /* mượt khi thay đổi */
}
.cheap-flight .flight-slider .flight-card .card-img:hover {
  transform: scale(1.08);
  /* phóng to nhẹ 8% */
}
.cheap-flight .flight-slider .flight-card .discount-badge {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  z-index: 100;
}
.cheap-flight .flight-slider .flight-card .discount-badge span {
  font-size: 14px;
  font-weight: 400;
}
.cheap-flight .flight-slider .flight-card .content {
  padding: 50px 0 15px;
}
.cheap-flight .flight-slider .flight-card .content a {
  text-decoration: none;
  color: #121212;
}
.cheap-flight .flight-slider .flight-card .content a:hover {
  text-decoration: underline;
}
.cheap-flight .flight-slider .flight-card .content a h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #121212;
}
.cheap-flight .flight-slider .flight-card .content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
}
.cheap-flight .flight-slider .flight-card .content .price {
  font-size: 18px;
  font-weight: 700;
  color: #70C36B;
  margin-bottom: 12px;
}
.cheap-flight .flight-slider .flight-card .content .btn {
  border-radius: 24px;
  padding: 6px 20px;
  background: #1F3D59;
  border: none;
  color: #FFFFFF;
  text-decoration: none;
}
.cheap-flight .flight-slider .flight-card .content .btn:hover {
  background-color: #70C36B;
  color: #FFFFFF;
  text-decoration: none;
}
.cheap-flight .slick-dots {
  position: absolute;
  bottom: -50px;
  display: flex !important;
  justify-content: center;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.cheap-flight .slick-dots li {
  margin: 0 5px;
}
.cheap-flight .slick-dots li button {
  font-size: 0;
  border: none;
  background: #ccc;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  padding: 0;
  cursor: pointer;
}
.cheap-flight .slick-dots li.slick-active button {
  background: #1F3D59;
}
.cheap-flight .slick-prev,
.cheap-flight .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0d47a1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 0;
  color: transparent;
}
.cheap-flight .slick-prev::before,
.cheap-flight .slick-next::before {
  font-size: 20px;
  line-height: 1;
  opacity: 1;
  color: #fff;
}
.cheap-flight .slick-arrow {
  top: auto;
  top: -40px;
  text-align: center;
  width: 40px;
  height: 40px;
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.cheap-flight .slick-arrow:hover {
  background: #121212;
}
.cheap-flight .slick-prev {
  left: calc(100% - 110px);
}
.cheap-flight .slick-next {
  right: 15px;
}
.cheap-flight .slick-prev:before,
.cheap-flight .slick-next:before {
  font-size: 35px;
  color: #000;
}
.cheap-flight .slick-prev:before,
.cheap-flight .slick-next:before {
  display: none;
}
.cheap-flight .slick-arrow i {
  font-size: 18px;
  color: #fff;
}
@media (max-width: 992px) {
  .cheap-flight {
    padding: 50px 0 100px;
  }
  .cheap-flight .small-title {
    font-size: 28px;
    line-height: 18px;
  }
  .cheap-flight .main-title {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 60px;
  }
  .cheap-flight .slick-prev {
    left: calc(100% - 90px);
  }
  .cheap-flight .slick-arrow {
    top: -30px;
    width: 30px;
    height: 30px;
  }
}

.tour-section .title-tour {
  font-weight: 700;
  font-size: 48px;
  line-height: 66px;
  color: #000000;
}
.tour-section .tour-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.tour-section .tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.tour-section .tour-card:hover img {
  transform: scale(1.05);
}
.tour-section .tour-card.large {
  height: 100%;
}
.tour-section .tour-card.medium {
  max-height: 320px;
}
.tour-section .tour-card.small {
  min-height: 160px;
  flex: 0 0 49%;
}
.tour-section .tour-card .tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 20%, transparent 60%);
}
.tour-section .tour-card .tour-overlay a {
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}
.tour-section .tour-card .tour-overlay .badge-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
}
.tour-section .tour-card .tour-overlay .badge-wrap .badge {
  font-size: 20px;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 20px;
}
.tour-section .tour-card .tour-overlay .tour-info {
  color: #fff;
}
.tour-section .tour-card .tour-overlay .tour-info .discount {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  border-radius: 6px;
  margin-bottom: 6px;
}
.tour-section .tour-card .tour-overlay .tour-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.tour-section .tour-card .tour-overlay .tour-info p {
  font-size: 20px;
  margin: 0;
}
@media (max-width: 992px) {
  .tour-section .title-tour {
    font-size: 28px;
    line-height: 30px;
  }
  .tour-section .tour-card .tour-overlay a {
    padding: 10px;
  }
  .tour-section .tour-card .tour-overlay .badge-wrap .badge {
    font-size: 16px;
    padding: 6px 15px;
  }
  .tour-section .tour-card .tour-overlay .tour-info .discount {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .tour-section .tour-card .tour-overlay .tour-info h5 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .tour-section .tour-card .tour-overlay .tour-info p {
    font-size: 16px;
  }
}

.promo-banner {
  background-color: #6FCF97;
  color: #fff;
  padding: 8px 0;
  display: none;
}
.promo-banner .promo-info {
  justify-content: center;
  text-align: center;
}
.promo-banner .title {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  margin: 5px;
}
.promo-banner .subtitle {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 5px;
}
.promo-banner .btn {
  font-size: 0.8rem;
  padding: 3px 12px;
  border-radius: 20px;
}
.promo-banner .btn i {
  font-size: 12px;
  margin-left: 8px;
}

@media (max-width: 575px) {
  .banner-slider > div {
    margin-top: -40px;
  }
  .banner-slider > div iframe {
    height: 520px;
    border-radius: 10px;
  }
}
.suggestion-section .suggestion-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 44px;
  color: #000000;
  margin-top: 30px;
}
.suggestion-section .suggestion-subtitle {
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  margin-top: 15px;
}
.suggestion-section .suggestion-list {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* 5 items per row */
  gap: 10px;
  /* space between items */
}
@media (max-width: 1200px) {
  .suggestion-section .suggestion-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .suggestion-section .suggestion-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .suggestion-section .suggestion-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .suggestion-section .suggestion-list {
    grid-template-columns: 1fr;
  }
}
.suggestion-section .suggestion-list .suggestion-item a {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #121212;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
}
.suggestion-section .suggestion-list .suggestion-item a:hover {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .suggestion-section .suggestion-title {
    font-size: 28px;
    line-height: 36px;
  }
  .suggestion-section .suggestion-subtitle {
    font-size: 16px;
    line-height: 22px;
  }
  .suggestion-section .suggestion-list .suggestion-item a {
    font-size: 16px;
    line-height: 10px;
  }
}

.tips-section {
  margin-top: 60px;
}
.tips-section .tips-wrapper {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: flex-start;
  background-color: #1F3D59;
  border-radius: 10px;
  height: 425px;
}
.tips-section .tips-wrapper .featured-image {
  width: 50%;
}
.tips-section .tips-wrapper .featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #FFFFFF;
}
.tips-section .tips-wrapper .tips-content {
  width: 50%;
  height: 100%;
}
.tips-section .tips-wrapper .tips-content a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 100px 0px 0px 100px;
  box-sizing: border-box;
  color: #FFFFFF;
  text-decoration: none;
}
.tips-section .tips-wrapper .tips-content a:hover {
  text-decoration: underline;
}
.tips-section .tips-wrapper .tips-content .icon-tip {
  margin-bottom: 20px;
}
.tips-section .tips-wrapper .tips-content .tips-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #FFFFFF;
}
.tips-section .tips-wrapper .link-faq-page {
  position: absolute;
  bottom: 22px;
  right: 30px;
}
.tips-section .tips-wrapper .link-faq-page i {
  font-size: 38px;
  color: #FFFFFF;
  font-weight: 700;
  cursor: pointer;
}
.tips-section .tips-wrapper .link-faq-page i:hover {
  color: #70C36B;
}
@media (max-width: 992px) {
  .tips-section {
    margin-top: 30px;
  }
  .tips-section .tips-wrapper {
    height: 350px;
  }
  .tips-section .tips-wrapper .featured-image {
    display: none;
  }
  .tips-section .tips-wrapper .tips-content {
    width: 100%;
  }
  .tips-section .tips-wrapper .tips-content a {
    padding: 20px 0px 0px 20px;
  }
}

.promotion-banner {
  position: relative;
  margin-top: 70px;
  margin-bottom: 150px;
  width: 100%;
  height: 500px;
}
.promotion-banner .featured-promotion-banner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.promotion-banner .featured-promotion-banner .featured-image {
  width: 40%;
  max-width: 500px;
}
.promotion-banner .featured-promotion-banner .featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 100%;
}
.promotion-banner .featured-promotion-banner .featured-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.promotion-banner .featured-promotion-banner .featured-content img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}
.promotion-banner .featured-promotion-banner .featured-content .featured-title {
  font-weight: 700;
  font-size: 80px;
  line-height: 112px;
  color: #FFFFFF;
}
.promotion-banner .featured-promotion-banner .featured-content .featured-description {
  margin-top: 15px;
  font-weight: 600;
  font-size: 38px;
  line-height: 60px;
  color: #FFFFFF;
}
.promotion-banner .promotion-banner-list {
  position: absolute;
  bottom: -50px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.promotion-banner .promotion-banner-list .overlay-banner {
  position: absolute;
  width: 100%;
  top: -8px;
  height: 50%;
  padding: 10px 10px 0px 10px;
  box-sizing: content-box;
  background-color: #c4d7ff;
  z-index: 1;
}
.promotion-banner .promotion-banner-list .promotion-banner-item {
  z-index: 2;
  cursor: pointer;
}
.promotion-banner .promotion-banner-list .promotion-banner-item .background-image {
  width: 170px;
  height: 100px;
}
.promotion-banner .promotion-banner-list .promotion-banner-item .background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  /* mượt khi thay đổi */
}
.promotion-banner .promotion-banner-list .promotion-banner-item .background-image img:hover {
  transform: scale(1.07);
  /* phóng to nhẹ 8% */
}
.promotion-banner .promotion-banner-list .promotion-banner-item.active {
  border: 3px solid #445BFB;
}
@media (max-width: 992px) {
  .promotion-banner .featured-promotion-banner .featured-image {
    display: none;
  }
  .promotion-banner .featured-promotion-banner .featured-content {
    width: 100%;
    min-height: 200px;
    margin-left: 20px;
  }
  .promotion-banner .featured-promotion-banner .featured-content img {
    width: 50px;
    height: 50px;
  }
  .promotion-banner .featured-promotion-banner .featured-content .featured-title {
    font-size: 30px;
    line-height: normal;
  }
  .promotion-banner .featured-promotion-banner .featured-content .featured-description {
    font-size: 20px;
    line-height: normal;
  }
  .promotion-banner .promotion-banner-list {
    bottom: -60px;
    right: 25px;
    gap: 8px;
  }
  .promotion-banner .promotion-banner-list .overlay-banner {
    padding: 8px 8px 8px 8px;
  }
  .promotion-banner .promotion-banner-list .promotion-banner-item .background-image {
    width: 120px;
    height: 75px;
  }
}

body.modal-open {
  overflow: auto !important;
}

#popupAirticket .modal-dialog {
  transform: translate(-50%, -50%);
  top: 50%;
  margin: 0 !important;
  left: 50% !important;
  width: 65%;
  max-width: 1050px;
}
#popupAirticket .modal-dialog .modal-content {
  width: 100%;
  height: 531px;
  position: relative;
}
#popupAirticket .modal-dialog .modal-content .close-popup {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  box-sizing: border-box;
  padding: 2px;
}
#popupAirticket .modal-dialog .modal-content .close-popup:hover {
  padding: 0px;
}
#popupAirticket .modal-dialog .modal-content .close-popup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#popupAirticket .modal-dialog .modal-content .row {
  height: 100%;
}
#popupAirticket .modal-dialog .modal-content .row .title-popup {
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #000000;
}
#popupAirticket .modal-dialog .modal-content .row p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #282828;
}
#popupAirticket .modal-dialog .modal-content .row .btn-detail:hover {
  background-color: #70C36B;
  border-color: #70C36B;
}
#popupAirticket .modal-dialog .modal-content .row .btn-detail:focus {
  box-shadow: none;
  outline: none;
}
#popupAirticket .modal-dialog .modal-content .row img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 1199px) {
  #popupAirticket .modal-dialog {
    width: 80%;
  }
}
@media (max-width: 991px) {
  #popupAirticket .modal-dialog {
    width: 85%;
  }
}
@media (max-width: 767px) {
  #popupAirticket .modal-dialog {
    width: 85%;
  }
  #popupAirticket .modal-dialog .row .left-content {
    padding: 20px 25px !important;
    height: 40%;
  }
  #popupAirticket .modal-dialog .row .left-content .title-popup {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
  }
  #popupAirticket .modal-dialog .row .left-content p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 5px !important;
  }
  #popupAirticket .modal-dialog .row .left-content .description-popup {
    font-size: 14px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 50px;
    margin-bottom: 10px !important;
  }
  #popupAirticket .modal-dialog .row .right-content {
    height: 60%;
    padding: 0px !important;
  }
}
.preferential-flights {
  margin-top: 30px;
}
.preferential-flights .perferential-item {
  width: 408px;
  height: 238px;
  display: flex;
  border-radius: 24px;
  position: relative;
  margin-right: 15px;
}
.preferential-flights .perferential-item .left-section {
  width: 60%;
  padding: 20px 0px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 2;
}
.preferential-flights .perferential-item .left-section .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 44px;
  color: #FFFFFF;
  margin-bottom: 5px;
  margin-top: 0px;
}
.preferential-flights .perferential-item .left-section .description {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 15px;
}
.preferential-flights .perferential-item .left-section .price {
  font-weight: 700;
  font-size: 24px;
  line-height: 68px;
  color: #FFFFFF;
  margin-bottom: 0px;
}
.preferential-flights .perferential-item .left-section .discount {
  font-weight: 700;
  font-size: 48px;
  line-height: 68px;
  color: #FFFFFF;
  margin-bottom: 0px;
}
.preferential-flights .perferential-item .left-section a {
  padding: 7px;
  background-color: #FFFFFF;
  width: 126px;
  height: 36px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #1F3D59;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preferential-flights .perferential-item .left-section a:hover {
  background-color: #70C36B;
  color: #FFFFFF;
}
.preferential-flights .perferential-item .right-section {
  width: 40%;
  z-index: 2;
}
.preferential-flights .perferential-item .right-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: ellipse(150px 150px at 95% 60%);
  background-color: #FFFFFF;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}
.preferential-flights .perferential-item .decorate {
  width: 50%;
  height: 30%;
  position: absolute;
  left: 25%;
  filter: brightness(85%);
  clip-path: ellipse(60px 60px at 50% 10%);
  z-index: 1;
}

.news-kicker {
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 66px;
}

.news-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.news-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #4F4F4F;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .news-kicker {
    font-size: 28px;
  }
  .news-title {
    font-size: 16px;
    line-height: 5px;
  }
  .news-section {
    margin-bottom: 0;
  }
}
.news-see-all {
  font-size: 24px;
  font-weight: 500;
  color: #1f3d59;
  text-decoration: none;
}
.news-see-all:hover {
  color: #1f3d59;
}

.slick-slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.slick-slider .slick-dots li {
  margin-top: 50px;
  display: inline-block;
}
.slick-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e6e6e6;
  border: none;
  padding: 0;
  text-indent: -9999px;
  cursor: pointer;
  box-shadow: none;
  transition: background 150ms ease, transform 120ms ease;
}
.slick-slider .slick-dots li button:before {
  display: none;
}
.slick-slider .slick-dots li.slick-active button {
  background: #1f3d59;
  transform: scale(1.2);
}
@media (max-width: 992px) {
  .slick-slider .slick-dots li {
    margin-top: 30px;
  }
}

.booking-card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  padding: 15px;
  border: 1px solid #d9d9d9;
}

.card-image {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.castle-image {
  width: 100%;
  height: 100%;
}
.castle-image a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}
.castle-image a img:hover {
  transform: scale(1.05);
}

.publish-date {
  color: #828282;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.description {
  color: #828282;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: color 0.3s ease;
}
.cta-button:hover {
  color: #4a90e2;
}
.cta-button::after {
  content: "→";
  font-size: 16px;
  transition: transform 0.3s ease;
}
.cta-button:hover::after {
  transform: translateX(4px);
}

.news-cards-wrapper.slider .slick-track {
  display: flex !important;
  align-items: stretch !important;
  flex-direction: row !important;
}
.news-cards-wrapper.slider .slick-list {
  display: block;
  padding-left: 15px;
}
.news-cards-wrapper.slider .slick-slide {
  display: flex !important;
  height: auto !important;
  align-items: stretch !important;
}
.news-cards-wrapper.slider .booking-card {
  margin: 0 17px;
}
.news-cards-wrapper.slider .card-content {
  margin-top: 15px;
}
.news-cards-wrapper.slider .card-content a {
  color: #121212;
  text-decoration: none;
}
.news-cards-wrapper.slider .card-content a:hover {
  text-decoration: underline;
}
.news-cards-wrapper.slider .date {
  color: #d9d9d9;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 500;
}
.news-cards-wrapper.slider .title {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #121212;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .news-cards-wrapper.slider .slick-list {
    padding-left: 0;
  }
  .news-cards-wrapper.slider .title {
    font-size: 20px;
  }
}

.service-hightlight-cards .card h1, .service-hightlight-cards .card h2, .service-hightlight-cards .card h3, .service-hightlight-cards .card h4, .service-hightlight-cards .card p {
  margin-top: 0;
}
.service-hightlight-cards.slider {
  position: relative;
  padding-bottom: 12px;
}
.service-hightlight-cards.slider .slick-track {
  display: flex !important;
  align-items: stretch !important;
}
.service-hightlight-cards.slider .slick-list {
  display: block;
}
.service-hightlight-cards.slider .slick-slide {
  height: auto !important;
  align-items: stretch !important;
  box-sizing: border-box;
  min-height: 0;
  flex: 1 0 auto !important;
  margin: 0 8px;
}
.service-hightlight-cards.slider .slick-slide > * {
  margin: 0;
}
.service-hightlight-cards.slider .service-item {
  display: block;
  padding: 18px;
}
.service-hightlight-cards.slider .slick-dots {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  list-style: none;
  padding: 0;
  width: 100%;
  position: relative !important;
  left: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.service-hightlight-cards.slider .slick-dots li {
  display: inline-block;
}
.service-hightlight-cards.slider .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e6e6e6;
  border: none;
  padding: 0;
  text-indent: -9999px;
  cursor: pointer;
  box-shadow: none;
  transition: background 150ms ease, transform 120ms ease;
}
.service-hightlight-cards.slider .slick-dots li button:before {
  display: none;
}
.service-hightlight-cards.slider .slick-dots li.slick-active button {
  background: #1F3D59;
  transform: scale(1.2);
}
@media (max-width: 992px) {
  .service-hightlight-cards.slider .slick-dots {
    margin-top: 0;
  }
  .service-hightlight-cards.slider .slick-dots li {
    margin-top: 20px;
  }
}

.service-item {
  flex: 1 1 240px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 36px 18px;
  color: #fff;
}

.service-icon {
  margin-bottom: 20px;
  margin-top: 37.5px;
  width: 100px;
  height: auto;
}

.service-body {
  margin-top: 30.7px;
  font-family: "Roboto", sans-serif;
}

.service-title {
  font-size: 18px;
  font-weight: bold;
}

.service-description {
  font-size: 14px;
  color: #FFFFFF;
}

.has-slider {
  margin-top: 60px;
}

.article-content .article-detail .header-article .section-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 44px;
  color: #09C586;
  margin-bottom: 10px;
}
.article-content .article-detail .header-article .article-title {
  color: #000000;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
}
.article-content .article-detail .header-article .article-meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.article-content .article-detail .header-article .article-meta .article-date {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #666666;
  margin-bottom: 16px;
}
.article-content .article-detail .header-article .article-image {
  width: 100%;
  margin-bottom: 16px;
}
.article-content .article-detail .header-article .article-image img {
  width: 100%;
  border-radius: 10px;
}
.article-content .article-detail h2 {
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 8px;
}
.article-content .article-detail p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #282828;
  text-align: justify;
}
.article-content .article-detail p a {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #0d6efd;
  text-decoration: none;
}
.article-content .article-detail p a:hover {
  text-decoration: underline;
}
.article-content .article-detail ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.article-content .article-detail ul li {
  list-style: disc;
  text-align: left;
}
.article-content .article-detail p:has(img) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.article-content .article-detail p:has(img) img {
  max-width: 100%;
  height: auto;
  margin: 16px 0;
}
.article-content .article-detail p:has(img) em {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}
.article-content .article-detail p:has(em) {
  text-align: center;
}
.article-content .article-detail p:has(em) em {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}
.article-content .article-detail table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.article-content .article-detail table th,
.article-content .article-detail table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}
.article-content .article-detail table th {
  background-color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}
.article-content .article-detail table td {
  background-color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}
.article-content .article-detail table ul {
  margin-left: 20px;
}
.article-content .article-detail table ul li {
  text-align: left !important;
}
.article-content .article-detail table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.article-content #toc-container {
  top: 0;
  z-index: 9;
}
.article-content #toc-container .toc-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 10px;
}
.article-content #toc-container #toc-list {
  list-style: none;
  padding: 0;
  background: #F5F5F5;
  padding: 20px 15px;
  border-radius: 5px;
}
.article-content #toc-container #toc-list .toc-link {
  display: block;
  padding: 5px 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  text-decoration: none;
}
.article-content #toc-container #toc-list .toc-link:hover {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .article-content .article-detail .header-article .article-title {
    font-size: 38px;
    line-height: 48px;
  }
}

.fqa-section {
  margin-top: 60px;
}
.fqa-section .section-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #000000;
}
.fqa-section .fqa-content {
  margin-top: 26px;
}
.fqa-section .accordion-item {
  border: none;
  border-bottom: 1px solid #D9D9D9;
}
.fqa-section .accordion-item .accordion-header .accordion-button {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #000000;
  padding: 19px 0px;
}
.fqa-section .accordion-item .accordion-header .accordion-button:hover {
  color: #0c63e4;
}
.fqa-section .accordion-item .accordion-header .accordion-button:hover::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.fqa-section .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  outline: none;
  border: none !important;
}
.fqa-section .accordion-item .accordion-header .accordion-button:focus-visible {
  box-shadow: none;
  outline: none;
  border: none !important;
}
.fqa-section .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  font-weight: 500;
  background-color: white;
  box-shadow: none;
  border: none;
}
.fqa-section .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.fqa-section .accordion-item .accordion-body {
  padding: 0px;
  padding-bottom: 15px;
  border: none !important;
}
.fqa-section .accordion-item .accordion-body:focus-visible {
  outline: none;
  box-shadow: none;
  border: none;
}
.fqa-section .accordion-item .accordion-body:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.airline-wrapper {
  background-color: white;
  margin-top: 50px;
}
.airline-wrapper .airline-header .airline-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  color: #000000;
}
.airline-wrapper .airline-header .airline-subtitle {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}
.airline-wrapper .airline-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}
.airline-wrapper .airline-list .airline-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding: 10px;
}
.airline-wrapper .airline-list .airline-item a {
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  margin: 0px;
}
.airline-wrapper .airline-list .airline-item a:hover {
  color: black;
}
.airline-wrapper .airline-list .airline-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}
.airline-wrapper .airline-list .airline-item a:nth-child(2) {
  color: #000000;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  margin: 0px;
}
.airline-wrapper .airline-list .airline-item a:nth-child(2):hover {
  color: black;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .airline-wrapper .airline-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .airline-wrapper .airline-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .airline-wrapper .airline-item img {
    width: 50px;
    height: 50px;
  }
  .airline-wrapper .airline-item a:nth-child(2) {
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .airline-wrapper {
    margin-top: 0;
  }
  .airline-wrapper .airline-list {
    grid-template-columns: 1fr;
  }
  .airline-wrapper .airline-item {
    padding: 5px;
  }
  .airline-wrapper .airline-item img {
    width: 40px;
    height: 40px;
  }
  .airline-wrapper .airline-item a:nth-child(2) {
    font-size: 10px;
  }
  .airline-wrapper .airline-header .airline-title {
    font-size: 28px;
  }
  .airline-wrapper .airline-list {
    gap: 0px;
  }
  .airline-wrapper .airline-list .airline-item a:nth-child(2) {
    font-size: 20px;
  }
}

.flight-search-container {
  font-family: "Segoe UI", sans-serif !important;
  max-width: 1280px;
  margin-top: -30px !important;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 6;
}
.flight-search-container .flight-search-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #e5e5e5;
  position: relative;
  z-index: 6;
}

/* Passenger type custom appearance - mirror ticket dropdown look */
.type-passenger {
  position: relative;
  display: inline-block;
  min-width: 220px;
}
.type-passenger .type-passenger-select {
  /* keep native select for accessibility but hide its visuals */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background: transparent;
  width: 100%;
  height: 44px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  cursor: pointer;
  color: transparent; /* hide native text since we show .selected-passenger */
}
.type-passenger {
  /* Visible display that mirrors the ticket custom select toggle */
}
.type-passenger .selected-passenger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: #fff;
  color: #111;
  min-height: 44px;
  min-width: 220px;
  font-size: 15px;
  font-weight: 600;
  box-sizing: border-box;
  z-index: 1;
  pointer-events: auto;
}
.type-passenger .selected-passenger.placeholder {
  color: #888;
  font-weight: 500;
}
.type-passenger {
  /* Place chevron on right similar to other selects */
}
.type-passenger .select-chev {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 16px;
  z-index: 3;
  pointer-events: none;
}
.type-passenger {
  /* Focus visual when the hidden select receives focus */
}
.type-passenger .type-passenger-select:focus + .selected-passenger,
.type-passenger .selected-passenger:focus {
  outline: none;
  border-color: #ffa301;
  box-shadow: 0 8px 22px rgba(255, 163, 1, 0.12);
}
.type-passenger {
  /* Remove native arrow in IE/Edge */
}
.type-passenger .type-passenger-select::-ms-expand {
  display: none;
}
@media (max-width: 992px) {
  .type-passenger {
    min-width: 100%;
  }
  .type-passenger .selected-passenger {
    min-width: 100%;
  }
}

/* passenger-options list (custom) */
.passenger-options.custom-select-options {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  max-height: 260px;
  overflow: auto;
  z-index: 99999;
  padding: 8px;
}

.type-passenger .passenger-options.custom-select-options {
  min-width: 100%;
  left: 0;
  right: auto;
  box-shadow: 0 12px 36px rgba(18, 52, 86, 0.08);
}

.passenger-options .option {
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.passenger-options .option:hover {
  background: #eef4ff;
}

.passenger-options .option:focus {
  outline: none;
}

.flight-search-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.flight-search-header .passenger-type-selector {
  flex: 0 0 auto;
  min-width: 180px;
}
.flight-search-header .passenger-type-selector .custom-select {
  position: relative;
  font-family: inherit;
}
.flight-search-header .passenger-type-selector .custom-select-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: #fff;
  color: #111;
  cursor: pointer;
  box-sizing: border-box;
  min-width: 200px;
  min-height: 44px;
  font-size: 15px;
  line-height: 1.1;
  position: relative;
}
.flight-search-header .passenger-type-selector .custom-select-toggle:hover {
  border-color: rgba(255, 163, 1, 0.6);
  box-shadow: 0 6px 18px rgba(255, 163, 1, 0.08);
}
.flight-search-header .passenger-type-selector .custom-select-toggle.open, .flight-search-header .passenger-type-selector .custom-select-toggle.active {
  border-color: #ffa301;
  box-shadow: 0 6px 22px rgba(255, 163, 1, 0.12);
}
.flight-search-header .passenger-type-selector .custom-select-toggle .chev {
  position: absolute;
  right: 12px;
  color: #888;
  font-size: 16px;
  transition: all 0.2s ease;
}
.flight-search-header .passenger-type-selector .custom-select-toggle .chev.fa-times {
  color: #e74c3c;
  font-size: 14px;
}
.flight-search-header .passenger-type-selector .custom-select-toggle.open .chev:not(.fa-times) {
  transform: rotate(180deg);
}
.flight-search-header .passenger-type-selector .passenger-type-icon {
  font-size: 16px;
  color: #ffa301;
}
.flight-search-header .passenger-type-selector .selected-text {
  flex: 1;
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flight-search-header .passenger-type-selector .selected-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  overflow: visible;
}
.flight-search-header .passenger-type-selector .selected-title.placeholder {
  color: #888;
  font-weight: 500;
}
.flight-search-header .passenger-type-selector .custom-select-options {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 180px;
  width: max-content;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(18, 52, 86, 0.08);
  max-height: 260px;
  overflow: auto;
  z-index: 9999;
  padding: 8px;
  margin: 0;
  list-style: none;
  white-space: nowrap;
}
.flight-search-header .passenger-type-selector .option {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, transform 0.08s ease;
  -webkit-tap-highlight-color: transparent;
}
.flight-search-header .passenger-type-selector .option + .option {
  margin-top: 6px;
}
.flight-search-header .passenger-type-selector .option:hover {
  background: #eef4ff;
}
.flight-search-header .passenger-type-selector .option[aria-selected=true] {
  background: #ffa301;
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 163, 1, 0.18);
}
.flight-search-header .passenger-type-selector .option-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #f5f5f5;
  color: #333;
  flex: 0 0 34px;
  transition: background 0.12s ease, color 0.12s ease;
}
.flight-search-header .passenger-type-selector .option:hover .option-icon {
  background: #e6f0ff;
}
.flight-search-header .passenger-type-selector .option[aria-selected=true] .option-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.flight-search-header .passenger-type-selector .option-text {
  overflow: hidden;
}
.flight-search-header .passenger-type-selector .option-label {
  font-weight: 600;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .flight-search-header .passenger-type-selector {
    min-width: auto;
    width: 100%;
  }
  .flight-search-header .passenger-type-selector .custom-select-toggle {
    min-width: 100%;
  }
}
@media (max-width: 1024px) {
  .flight-search-header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .flight-search-header {
    gap: 12px;
  }
}

.trip-type-selector {
  display: flex;
  gap: 6px;
  border-radius: 10px;
  overflow: visible;
  background: transparent;
  flex: 0 0 auto;
}
.trip-type-selector .trip-type-btn {
  flex: 0 0 auto;
  padding: 6px 10px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.18s ease;
  color: #666;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  min-width: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trip-type-selector .trip-type-btn i {
  margin-right: 6px;
  color: #ffa301;
  font-size: 16px;
}
.trip-type-selector .trip-type-btn:hover {
  background: rgba(255, 163, 1, 0.06);
  color: #333;
}
.trip-type-selector .trip-type-btn.active {
  background: linear-gradient(180deg, #ffa301, #f39c12);
  transform: translateY(-1px);
}
.trip-type-selector .trip-type-btn.active i {
  color: #fff;
}
.trip-type-selector .trip-type-select-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  border-radius: 8px;
  padding: 0 8px;
  min-width: 160px;
}
.trip-type-selector .trip-type-select-wrapper:focus-within,
.trip-type-selector .trip-type-select-wrapper:hover {
  border-color: #ffa301;
  box-shadow: 0 6px 22px rgba(255, 163, 1, 0.12);
}
.trip-type-selector .trip-type-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  height: 44px;
  line-height: 44px;
  cursor: pointer;
  outline: none;
  padding: 0 36px 0 6px;
  width: 100%;
}
.trip-type-selector .trip-type-select::-ms-expand {
  display: none;
}
.trip-type-selector .trip-type-icon {
  margin-right: 8px;
  color: #ffa301;
  font-size: 16px;
}
.trip-type-selector .select-chev {
  border-radius: 12px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
  font-size: 16px;
  transition: color 0.15s ease, transform 0.18s ease;
}
.trip-type-selector .trip-type-select:focus + .select-chev,
.trip-type-selector .trip-type-select:focus {
  box-shadow: 0 6px 22px rgba(255, 163, 1, 0.12);
  border-color: #ffa301;
}
.trip-type-selector .trip-type-select option {
  background: #fff;
  color: #222;
  padding: 6px 12px;
}
@media (max-width: 1024px) {
  .trip-type-selector {
    justify-content: flex-start;
    width: 100%;
  }
  .trip-type-selector .trip-type-select-wrapper {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .trip-type-selector {
    display: block;
  }
  .trip-type-selector .trip-type-btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}

.passenger-selector {
  position: relative;
  flex: 0 0 auto;
  min-width: 160px;
}
.passenger-selector .passenger-btn {
  width: 100%;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  transition: all 0.3s ease;
}
.passenger-selector .passenger-btn:hover {
  border-color: rgba(255, 163, 1, 0.6);
  box-shadow: 0 6px 18px rgba(255, 163, 1, 0.08);
}
.passenger-selector .passenger-btn .passenger-text {
  margin-left: 8px;
}
.passenger-selector .passenger-btn {
  /* caret icon on the right */
}
.passenger-selector .passenger-btn .fa-chevron-down {
  margin-left: 10px;
  color: #888;
  font-size: 16px;
}
.passenger-selector .passenger-btn {
  /* active/open state - highlight with orange outline */
}
.passenger-selector .passenger-btn.active, .passenger-selector .passenger-btn.open {
  border-color: #ffa301;
  box-shadow: 0 6px 22px rgba(255, 163, 1, 0.12);
}
.passenger-selector .passenger-btn i:first-child {
  color: #ffa301;
}
.passenger-selector .passenger-btn i:last-child {
  color: #999;
  font-size: 16px;
}
.passenger-selector .passenger-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  z-index: 1000;
  display: none;
  padding: 12px;
  margin-top: 6px;
  min-width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.passenger-selector .passenger-dropdown.show {
  display: block;
}
.passenger-selector .passenger-dropdown .passenger-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.passenger-selector .passenger-dropdown .passenger-item:last-child {
  border-bottom: none;
}
.passenger-selector .passenger-dropdown .passenger-item .passenger-info {
  flex: 1;
}
.passenger-selector .passenger-dropdown .passenger-item .passenger-info .passenger-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 4px;
}
.passenger-selector .passenger-dropdown .passenger-item .passenger-info .passenger-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.3;
}
.passenger-selector .passenger-dropdown .passenger-item .passenger-counter {
  display: flex;
  align-items: center;
  gap: 12px;
}
.passenger-selector .passenger-dropdown .passenger-item .passenger-counter .counter-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  transition: all 0.2s ease;
}
.passenger-selector .passenger-dropdown .passenger-item .passenger-counter .counter-btn:hover {
  border-color: #ffa301;
  color: #ffa301;
}
.passenger-selector .passenger-dropdown .passenger-item .passenger-counter .counter-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.passenger-selector .passenger-dropdown .passenger-item .passenger-counter .counter-btn:disabled:hover {
  border-color: #ddd;
  color: #333;
}
.passenger-selector .passenger-dropdown .passenger-item .passenger-counter .counter-value {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  min-width: 20px;
  text-align: center;
}

.flight-options {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.flight-options .passenger-type-selector {
  flex: 0 0 auto;
  min-width: 180px;
}
.flight-options .passenger-type-selector .custom-select {
  position: relative;
  font-family: inherit;
}
.flight-options .passenger-type-selector .custom-select-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: #fff;
  color: #111;
  cursor: pointer;
  box-sizing: border-box;
  min-width: 220px;
  min-height: 44px;
  font-size: 15px;
  line-height: 1.1;
  position: relative;
}
.flight-options .passenger-type-selector .custom-select-toggle:hover {
  border-color: rgba(255, 163, 1, 0.6);
  box-shadow: 0 6px 18px rgba(255, 163, 1, 0.08);
}
.flight-options .passenger-type-selector .custom-select-toggle.open, .flight-options .passenger-type-selector .custom-select-toggle.active {
  border-color: #ffa301;
  box-shadow: 0 6px 22px rgba(255, 163, 1, 0.12);
}
.flight-options .passenger-type-selector .custom-select-toggle .chev {
  position: absolute;
  right: 12px;
  color: #888;
  font-size: 16px;
}
.flight-options .passenger-type-selector .custom-select-toggle.open .chev {
  transform: rotate(180deg);
}
.flight-options .passenger-type-selector .passenger-type-icon {
  font-size: 16px;
  color: #ffa301;
}
.flight-options .passenger-type-selector .selected-text {
  flex: 1;
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flight-options .passenger-type-selector .selected-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  overflow: visible;
}
.flight-options .passenger-type-selector .selected-title.placeholder {
  color: #888;
  font-weight: 500;
}
.flight-options .passenger-type-selector .custom-select-options {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 180px;
  width: max-content;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(18, 52, 86, 0.08);
  max-height: 260px;
  overflow: auto;
  z-index: 9999;
  padding: 8px;
  margin: 0;
  list-style: none;
  white-space: nowrap;
}
.flight-options .passenger-type-selector .option {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, transform 0.08s ease;
  -webkit-tap-highlight-color: transparent;
}
.flight-options .passenger-type-selector .option + .option {
  margin-top: 6px;
}
.flight-options .passenger-type-selector .option:hover {
  background: #eef4ff;
}
.flight-options .passenger-type-selector .option[aria-selected=true] {
  background: #ffa301;
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 163, 1, 0.18);
}
.flight-options .passenger-type-selector .option-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #f5f5f5;
  color: #333;
  flex: 0 0 34px;
  transition: background 0.12s ease, color 0.12s ease;
}
.flight-options .passenger-type-selector .option:hover .option-icon {
  background: #e6f0ff;
}
.flight-options .passenger-type-selector .option[aria-selected=true] .option-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.flight-options .passenger-type-selector .option-text {
  overflow: hidden;
}
.flight-options .passenger-type-selector .option-label {
  font-weight: 600;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .flight-options .passenger-type-selector {
    min-width: auto;
    width: 100%;
  }
  .flight-options .passenger-type-selector .custom-select-toggle {
    min-width: 100%;
  }
}
.flight-options .ticket-class-selector {
  flex: 0 0 auto;
  min-width: 250px;
}
.flight-options .ticket-class-selector label {
  margin-bottom: 6px;
}
.flight-options .ticket-class-selector select.ticket-class-input {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  font-size: 16px;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  min-height: 41px;
  outline: none;
}
.flight-options .ticket-class-selector .custom-select {
  position: relative;
  font-family: inherit;
}
.flight-options .ticket-class-selector .custom-select-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: #fff;
  color: #111;
  cursor: pointer;
  box-sizing: border-box;
  min-width: 240px;
  min-height: 44px;
  font-size: 15px;
  line-height: 1.1;
  position: relative;
}
.flight-options .ticket-class-selector .custom-select-toggle:hover {
  border-color: rgba(255, 163, 1, 0.6);
  box-shadow: 0 8px 22px rgba(255, 163, 1, 0.06);
}
.flight-options .ticket-class-selector .custom-select-toggle.open, .flight-options .ticket-class-selector .custom-select-toggle.active {
  border-color: #ffa301;
  box-shadow: 0 10px 28px rgba(255, 163, 1, 0.12);
}
.flight-options .ticket-class-selector .custom-select-toggle .chev {
  margin-left: 8px;
  color: #888;
  font-size: 16px;
  transition: transform 0.18s ease;
}
.flight-options .ticket-class-selector .custom-select-toggle.open .chev {
  transform: rotate(180deg);
}
.flight-options .ticket-class-selector .custom-select .ticket-icon {
  font-size: 16px;
  color: #ffa301;
}
.flight-options .ticket-class-selector .custom-select .selected-text {
  flex: 1;
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flight-options .ticket-class-selector .selected-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  overflow: visible;
}
.flight-options .ticket-class-selector .selected-desc {
  font-size: 16px;
  color: #666;
  line-height: 1;
}
.flight-options .ticket-class-selector {
  /* Hide the selected description in the closed toggle to reduce visual clutter */
}
.flight-options .ticket-class-selector .custom-select .selected-desc {
  display: none !important;
}
.flight-options .ticket-class-selector .chev {
  color: #888;
  font-size: 16px;
}
.flight-options .ticket-class-selector .custom-select-options {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  max-width: max-content;
  width: max-content;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(18, 52, 86, 0.08);
  min-height: 320px;
  overflow: auto;
  z-index: 9999;
  padding: 8px;
  margin: 0;
  list-style: none;
  white-space: nowrap;
}
.flight-options .ticket-class-selector .custom-select .option {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, transform 0.08s ease;
  -webkit-tap-highlight-color: transparent;
}
.flight-options .ticket-class-selector .custom-select .option + .option {
  margin-top: 6px;
}
.flight-options .ticket-class-selector .custom-select .option:hover {
  background: #eef4ff;
}
.flight-options .ticket-class-selector .custom-select .option[aria-selected=true] {
  background: #ffa301;
  color: #fff;
  box-shadow: 0 6px 18px rgba(30, 102, 255, 0.18);
}
.flight-options .ticket-class-selector .option-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #f5f5f5;
  color: #333;
  flex: 0 0 34px;
  transition: background 0.12s ease, color 0.12s ease, transform 0.08s ease;
}
.flight-options .ticket-class-selector .custom-select .option:hover .option-icon {
  background: #e6f0ff;
}
.flight-options .ticket-class-selector .custom-select .option[aria-selected=true] .option-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.flight-options .ticket-class-selector .option-text {
  overflow: hidden;
}
.flight-options .ticket-class-selector .option-label {
  font-weight: 600;
  font-size: 14px;
}
.flight-options .ticket-class-selector .option-desc {
  font-size: 12px;
  color: #666;
  white-space: normal;
  overflow-wrap: break-word;
}
.flight-options .ticket-class-selector .custom-select .option[aria-selected=true] .option-desc {
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 480px) {
  .flight-options .ticket-class-selector .custom-select-toggle {
    height: 44px;
  }
  .flight-options .ticket-class-selector .custom-select-options {
    top: calc(100% + 6px);
  }
}
.flight-options .ticket-class-selector {
  /* Remove native dropdown arrow on IE/Edge and allow custom appearance */
}
.flight-options .ticket-class-selector select.ticket-class-input::-ms-expand {
  display: none;
}
.flight-options .ticket-class-selector {
  /* Cleaner focus state for select */
}
.flight-options .ticket-class-selector select.ticket-class-input:focus,
.flight-options .ticket-class-selector select.ticket-class-input:active {
  outline: none;
  border-color: rgba(255, 163, 1, 0.95);
  box-shadow: 0 8px 22px rgba(255, 163, 1, 0.12);
}
.flight-options .only-direct-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.flight-options .only-direct-selector input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #ffa301;
  transform: translateY(-1px);
}
.flight-options .only-direct-selector label {
  color: #333;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .flight-options {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .flight-options .ticket-class-selector {
    min-width: auto;
    width: 100%;
  }
  .flight-options .only-direct-selector {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .flight-options {
    gap: 30px;
  }
  .flight-options .ticket-class-selector .custom-select-toggle {
    width: 100%;
  }
  .flight-options .ticket-class-selector .selected-title {
    text-align: center;
  }
}

.flight-search-form .route-fields {
  display: grid;
  grid-template-columns: 0.65fr 48px 0.65fr 160px 160px 140px;
  gap: 12px;
  align-items: end;
  margin-bottom: 12px;
}
.flight-search-form .route-fields .airport-field {
  display: flex;
  flex-direction: column;
}
.flight-search-form .route-fields .date-field {
  display: flex;
  flex-direction: column;
}
.flight-search-form .route-fields .swap-button-container {
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 8px;
  height: 56px;
}
.flight-search-form .route-fields.multi-city-route .route-inputs {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 180px;
  gap: 12px;
  align-items: end;
}
.flight-search-form .route-fields.multi-city-route .route-inputs.one-way-layout {
  grid-template-columns: 1fr 40px 1fr 180px;
}
@media (max-width: 1200px) {
  .flight-search-form .route-fields {
    grid-template-columns: 0.65fr 40px 0.65fr 160px 180px !important;
    gap: 10px;
  }
}
@media (max-width: 1024px) {
  .flight-search-form .route-fields {
    grid-template-columns: 1fr 40px 1fr 160px; /* still two columns for slightly smaller screens */
    gap: 12px;
  }
  .flight-search-form .route-fields .swap-button-container {
    display: flex;
  }
  .flight-search-form .route-fields.multi-city-route .route-inputs {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.flight-search-form .field-label {
  display: block;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  height: 16px;
}
.flight-search-form .field-label i {
  color: #ffa301;
  margin-right: 6px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .flight-search-form .route-fields {
    display: block;
  }
}

.airport-field {
  position: relative;
}
.airport-field .airport-selector {
  position: relative;
}
.airport-field .airport-selector .airport-input {
  width: 100%;
  height: 56px;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  font-size: 16px;
  background: #fff;
  cursor: pointer;
  transition: all 0.18s ease;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.airport-field .airport-selector .airport-input:focus {
  outline: none;
  border-color: rgba(255, 163, 1, 0.95);
  box-shadow: 0 8px 22px rgba(255, 163, 1, 0.12);
}
.airport-field .airport-selector .airport-input::placeholder {
  color: #999;
}
.airport-field .airport-selector .airport-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 720px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  z-index: 1000;
  display: none;
  margin-top: 4px;
  max-height: 400px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .airport-field .airport-selector .airport-dropdown {
    width: 600px;
  }
}
@media (max-width: 768px) {
  .airport-field .airport-selector .airport-dropdown {
    width: 100%;
    left: -10px;
    right: -10px;
  }
}
@media (max-width: 480px) {
  .airport-field .airport-selector .airport-dropdown {
    width: calc(100vw - 40px);
    left: -20px;
    right: -20px;
  }
}
.airport-field .airport-selector .airport-dropdown.show {
  display: block;
}
.airport-field .airport-selector .airport-dropdown .airport-tabs {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
  background: #f8f9fa;
  overflow-x: auto;
  transition: all 0.3s ease;
  opacity: 1;
  max-height: 50px;
}
.airport-field .airport-selector .airport-dropdown .airport-tabs[style*="display: none"] {
  opacity: 0;
  max-height: 0;
  padding: 0;
  border-bottom: none;
}
.airport-field .airport-selector .airport-dropdown .airport-tabs .airport-tab {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 12px;
  color: #666;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.airport-field .airport-selector .airport-dropdown .airport-tabs .airport-tab:hover {
  color: #ffa301;
}
.airport-field .airport-selector .airport-dropdown .airport-tabs .airport-tab.active {
  color: #ffa301;
  border-bottom-color: #ffa301;
  background: #fff;
}
.airport-field .airport-selector .airport-dropdown .airport-list {
  max-height: 350px;
  overflow-y: auto;
  padding: 15px;
}
.airport-field .airport-selector .airport-dropdown .airport-list .countries-container .country-section {
  margin-bottom: 24px;
}
.airport-field .airport-selector .airport-dropdown .airport-list .countries-container .country-section:last-child {
  margin-bottom: 0;
}
.airport-field .airport-selector .airport-dropdown .airport-list .countries-container .country-section .country-title {
  font-weight: 700;
  font-size: 15px;
  color: #111111;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #e3f2fd;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.airport-field .airport-selector .airport-dropdown .airport-list .countries-container .country-section .country-airports {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 768px) {
  .airport-field .airport-selector .airport-dropdown .airport-list .countries-container .country-section .country-airports {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}
@media (max-width: 480px) {
  .airport-field .airport-selector .airport-dropdown .airport-list .countries-container .country-section .country-airports {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.airport-field .airport-selector .airport-dropdown .airport-list .countries-container .country-section .country-airports .airport-item {
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin-bottom: 3px;
}
.airport-field .airport-selector .airport-dropdown .airport-list .countries-container .country-section .country-airports .airport-item:hover {
  background: #e9ecef;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.airport-field .airport-selector .airport-dropdown .airport-list .countries-container .country-section .country-airports .airport-item.pinned {
  background: #fff3cd;
  border-color: #ffeaa7;
}
.airport-field .airport-selector .airport-dropdown .airport-list .countries-container .country-section .country-airports .airport-item.pinned .airport-name {
  font-weight: 700 !important;
  color: #856404 !important;
}
.airport-field .airport-selector .airport-dropdown .airport-list .countries-container .country-section .country-airports .airport-item .airport-name {
  font-size: 13px;
  color: #333;
  font-weight: 500;
  line-height: 1.3;
}
.airport-field .airport-selector .airport-dropdown .airport-list .airport-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 768px) {
  .airport-field .airport-selector .airport-dropdown .airport-list .airport-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .airport-field .airport-selector .airport-dropdown .airport-list .airport-categories {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.airport-field .airport-selector .airport-dropdown .airport-list .airport-category .category-title {
  font-weight: 600;
  color: #ffa301;
  font-size: 13px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
}
.airport-field .airport-selector .airport-dropdown .airport-list .airport-category .category-airports .airport-item {
  padding: 6px 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin-bottom: 2px;
}
.airport-field .airport-selector .airport-dropdown .airport-list .airport-category .category-airports .airport-item:hover {
  background: #f8f9fa;
  transform: translateX(2px);
}
.airport-field .airport-selector .airport-dropdown .airport-list .airport-category .category-airports .airport-item .airport-name {
  font-size: 12px;
  color: #333;
  font-weight: 500;
  line-height: 1.3;
}
.airport-field .airport-selector .airport-dropdown .airport-list .airport-category .category-airports .airport-item .airport-code {
  color: #666;
  font-size: 11px;
}
.airport-field .airport-selector .airport-dropdown .airport-list .airport-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.airport-field .airport-selector .airport-dropdown .airport-list .airport-item:hover {
  background: #f8f9fa;
}
.airport-field .airport-selector .airport-dropdown .airport-list .airport-item:last-child {
  border-bottom: none;
}
.airport-field .airport-selector .airport-dropdown .airport-list .airport-item .airport-name {
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
}
.airport-field .airport-selector .airport-dropdown .airport-list .airport-item .airport-code {
  color: #666;
  font-size: 12px;
}

.swap-button-container {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 70px;
  padding-bottom: 5px;
}
@media (max-width: 1024px) {
  .swap-button-container {
    display: none;
  }
}
.swap-button-container .swap-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffa301;
  transition: all 0.3s ease;
  margin-bottom: 0;
}
.swap-button-container .swap-btn:hover {
  background: #fff8f0;
  color: #f39c12;
  transform: rotate(180deg);
  box-shadow: 0 6px 16px rgba(243, 156, 18, 0.08);
}

.date-field {
  position: relative;
  min-height: 70px;
}
.date-field .date-input {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.date-field .date-input:focus {
  outline: none;
  border-color: #ffa301;
  box-shadow: 0 0 0 2px rgba(255, 163, 1, 0.2);
}
.date-field .date-input.input-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2) !important;
}
.date-field .date-input.shake {
  animation: shake 0.5s ease-in-out;
}
.date-field .date-input:disabled {
  background-color: #f8f9fa !important;
  color: #6c757d;
  cursor: pointer !important;
  border-color: #ddd;
}
.date-field .date-input:disabled::placeholder {
  color: #6c757d;
  opacity: 1;
}
.date-field .date-input:disabled:hover {
  border-color: #ffa301;
  background-color: #f8f9fa !important;
}
.date-field .date-input:disabled {
  background-color: #f8f9fa !important;
  color: #6c757d !important;
  cursor: pointer !important;
  opacity: 0.8;
}
.date-field .date-input:disabled::placeholder {
  color: #6c757d !important;
}
.date-field .date-input:disabled:hover {
  background-color: #e9ecef !important;
  border-color: #ffa301;
}
.date-field .date-error {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  color: #dc3545 !important;
  font-size: 12px !important;
  margin-top: 4px !important;
  padding: 4px 8px !important;
  background: rgba(220, 53, 69, 0.1) !important;
  border-radius: 4px !important;
  display: block !important;
  z-index: 10 !important;
}

.multi-city-container .multi-city-route {
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  background: #fafafa;
}
.multi-city-container .multi-city-route .route-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.multi-city-container .multi-city-route .route-header .route-number {
  font-weight: 600;
  color: #333;
}
.multi-city-container .multi-city-route .route-header .remove-route-btn {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.multi-city-container .multi-city-route .route-header .remove-route-btn:hover {
  background: #ff4757;
  color: #fff;
}
.multi-city-container .multi-city-route .route-inputs {
  display: grid;
  grid-template-columns: 1fr auto 1fr 200px;
  gap: 16px;
  align-items: end;
}
@media (max-width: 768px) {
  .multi-city-container .multi-city-route .route-inputs {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.multi-city-container .multi-city-route .route-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr 200px;
  gap: 16px;
  align-items: end;
}
@media (max-width: 768px) {
  .multi-city-container .multi-city-route .route-fields {
    grid-template-columns: 1fr;
  }
}
.multi-city-container .multi-city-route .route-fields .airport-field {
  display: flex;
  flex-direction: column;
}
.multi-city-container .multi-city-route .route-fields .date-field {
  min-height: 70px;
  display: flex;
  flex-direction: column;
}
.multi-city-container .multi-city-route .route-fields .swap-button-container {
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 5px;
}

.flight-search-container .buttons-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}
@media (max-width: 768px) {
  .flight-search-container .buttons-row {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
}

.add-flight-container {
  flex: 0 0 auto;
}
.add-flight-container[style*="display: none"] {
  visibility: hidden;
  width: 0;
  min-width: 0;
  overflow: hidden;
}
.add-flight-container .add-flight-btn {
  background: none;
  border: 2px dashed #ddd;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
}
.add-flight-container .add-flight-btn:hover {
  border-color: #ffa301;
  color: #ffa301;
}
.add-flight-container .add-flight-btn.disabled, .add-flight-container .add-flight-btn:disabled {
  border-color: #ccc;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}
.add-flight-container .add-flight-btn.disabled:hover, .add-flight-container .add-flight-btn:disabled:hover {
  border-color: #ccc;
  color: #999;
}

.search-button-container {
  flex: 0 0 auto;
}
.search-button-container .search-btn {
  background: linear-gradient(180deg, #ffa301, #f39c12);
  color: #fff;
  border: none;
  padding: 12px 22px; /* reduced padding for compact look */
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  box-shadow: 0 10px 22px rgba(243, 156, 18, 0.12);
  /* ensure icon and text are inline and vertically centered */
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.search-button-container .search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(243, 156, 18, 0.14);
}
.search-button-container .search-btn i {
  margin: 0; /* gap handles spacing */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}
.search-button-container .search-btn {
  /* optional text wrapper if present */
}
.search-button-container .search-btn .search-text {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.inline-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  min-width: 92px;
  padding: 0 18px;
  z-index: 3;
  background: linear-gradient(180deg, #ffa301, #f39c12);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  box-shadow: 0 10px 22px rgba(243, 156, 18, 0.12);
}
.inline-search-btn i {
  margin: 0;
  font-size: 16px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.inline-search-btn .inline-search-text {
  display: inline-flex;
  align-items: center;
  color: #fff; /* ensure text is white */
  line-height: 1;
  font-size: 16px;
  white-space: nowrap; /* prevent wrapping */
}
.inline-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(243, 156, 18, 0.14);
}
.inline-search-btn.disabled, .inline-search-btn:disabled {
  border-color: #ccc;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}
@media (max-width: 480px) {
  .inline-search-btn .inline-search-text {
    display: none;
    min-width: 44px;
    padding: 0 10px;
  }
}

/* Make the multi-city bottom search button match the compact inline search button */
#search-button-multi,
.search-button-container .search-btn.is-compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  min-width: 92px;
  padding: 0 18px;
  z-index: 3;
  background: linear-gradient(180deg, #ffa301, #f39c12);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  box-shadow: 0 10px 22px rgba(243, 156, 18, 0.12);
}

#search-button-multi i,
.search-button-container .search-btn.is-compact i {
  margin: 0;
  font-size: 16px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.flight-search-container .add-flight-container {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 10px;
}
.flight-search-container .add-flight-container[style*="display: none"] {
  display: none !important;
}
@media (max-width: 768px) {
  .flight-search-container .add-flight-container {
    justify-content: center;
    margin-bottom: 15px;
  }
}
.flight-search-container .search-button-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .flight-search-container .search-button-container {
    justify-content: center;
    margin-top: 15px;
  }
}
.flight-search-container.align-search-left .flight-route-container .route-fields {
  grid-template-columns: 1fr 40px 1fr 180px 180px;
  gap: 12px;
}
@media (max-width: 1024px) {
  .flight-search-container.align-search-left .flight-route-container .route-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .flight-search-container {
    padding: 16px;
  }
  .flight-search-container .flight-search-card {
    padding: 20px;
  }
  .trip-type-selector .trip-type-btn {
    padding: 10px 12px;
    font-size: 12px;
  }
  .flight-search-form .route-fields {
    gap: 12px;
  }
}
.airport-list::-webkit-scrollbar {
  width: 6px;
}

.airport-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.airport-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.airport-list::-webkit-scrollbar-thumb:hover {
  background: #bbb;
}

.datepicker {
  font-family: "Segoe UI", sans-serif !important;
  border: none !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  min-width: 300px !important;
  background: white !important;
}
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next {
  background: white !important;
  color: #333 !important;
  border: none !important;
  font-weight: 300 !important;
  font-size: 16px !important;
  padding: 16px 12px !important;
  transition: all 0.2s ease !important;
}
.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover {
  background: #f8f9fa !important;
  color: #ffa301 !important;
}
.datepicker .datepicker-switch {
  border-radius: 0 !important;
  cursor: pointer !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  text-transform: capitalize !important;
}
.datepicker .prev,
.datepicker .next {
  border-radius: 0 !important;
  width: 44px !important;
  position: relative !important;
}
.datepicker .prev:before,
.datepicker .next:before {
  color: #666 !important;
  font-size: 16px !important;
}
.datepicker .prev:hover:before,
.datepicker .next:hover:before {
  color: #ffa301 !important;
}
.datepicker .datepicker-days .table-condensed thead tr:first-child th {
  background: white !important;
  color: #888 !important;
  font-weight: 300 !important;
  padding: 12px 8px !important;
  font-size: 11px !important;
  text-align: center !important;
  border: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}
.datepicker .datepicker-days .table-condensed tbody td {
  padding: 2px !important;
  border: none !important;
}
.datepicker .datepicker-days .table-condensed tbody td.day {
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  text-align: center !important;
  cursor: pointer !important;
  margin: 2px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  font-weight: 500 !important;
  position: relative !important;
}
.datepicker .datepicker-days .table-condensed tbody td.day:hover {
  background: rgba(255, 163, 1, 0.1) !important;
  color: #ffa301 !important;
  transform: scale(1.05) !important;
}
.datepicker .datepicker-days .table-condensed tbody td.day.active, .datepicker .datepicker-days .table-condensed tbody td.day.active:hover {
  background: #ffa301 !important;
  color: white !important;
  font-weight: 600 !important;
  transform: scale(1.1) !important;
}
.datepicker .datepicker-days .table-condensed tbody td.day.today {
  background: white !important;
  color: #ffa301 !important;
  font-weight: 600 !important;
  position: relative !important;
}
.datepicker .datepicker-days .table-condensed tbody td.day.today:hover {
  background: #ffa301 !important;
  color: white !important;
  transform: scale(1.05) !important;
}
.datepicker .datepicker-days .table-condensed tbody td.day.today.active {
  background: #ffa301 !important;
  color: white !important;
  transform: scale(1.1) !important;
}
.datepicker .datepicker-days .table-condensed tbody td.day.disabled {
  color: #ddd !important;
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}
.datepicker .datepicker-days .table-condensed tbody td.day.disabled:hover {
  background: transparent !important;
  color: #ddd !important;
  transform: none !important;
}
.datepicker .datepicker-days .table-condensed tbody td.day.old, .datepicker .datepicker-days .table-condensed tbody td.day.new {
  color: #ccc !important;
  font-weight: 400 !important;
}
.datepicker .datepicker-days .table-condensed tbody td.day.old:hover, .datepicker .datepicker-days .table-condensed tbody td.day.new:hover {
  background: rgba(0, 0, 0, 0.03) !important;
  color: #999 !important;
  transform: none !important;
}
.datepicker .table-condensed {
  margin-bottom: 0 !important;
}
.datepicker .table-condensed th,
.datepicker .table-condensed td {
  padding: 2px !important;
  text-align: center !important;
}
.datepicker .datepicker-months .table-condensed tbody td span,
.datepicker .datepicker-years .table-condensed tbody td span {
  border-radius: 12px !important;
  padding: 10px 16px !important;
  margin: 4px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  font-weight: 400 !important;
}
.datepicker .datepicker-months .table-condensed tbody td span:hover,
.datepicker .datepicker-years .table-condensed tbody td span:hover {
  background: rgba(255, 163, 1, 0.1) !important;
  color: #ffa301 !important;
  transform: scale(1.02) !important;
}
.datepicker .datepicker-months .table-condensed tbody td span.active,
.datepicker .datepicker-years .table-condensed tbody td span.active {
  background: #ffa301 !important;
  color: white !important;
  transform: scale(1.05) !important;
}
.datepicker .datepicker-months .table-condensed tbody td span.disabled,
.datepicker .datepicker-years .table-condensed tbody td span.disabled {
  color: #ddd !important;
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}
.datepicker .datepicker-months .table-condensed tbody td span.disabled:hover,
.datepicker .datepicker-years .table-condensed tbody td span.disabled:hover {
  background: transparent !important;
  color: #ddd !important;
  transform: none !important;
}
.datepicker .datepicker-buttons {
  padding: 12px 16px !important;
  border-top: 1px solid #f0f0f0 !important;
  background: #fafafa !important;
}
.datepicker .datepicker-buttons .btn-today {
  background: transparent !important;
  color: #4285f4 !important;
  border: none !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}
.datepicker .datepicker-buttons .btn-today:hover {
  background: rgba(66, 133, 244, 0.1) !important;
  color: #4285f4 !important;
}

.date-field .date-input {
  position: relative;
}
.date-field .date-input:focus {
  border-color: #ffa301 !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 163, 1, 0.25) !important;
}

.date-error {
  color: #dc3545 !important;
  font-size: 12px !important;
  margin-top: 4px !important;
  display: block !important;
  font-weight: 500;
  animation: fadeInError 0.3s ease-in-out;
}

@keyframes fadeInError {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.date-input {
  transition: border-color 0.3s ease;
}
.date-input.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.date-input-wrapper .form-control {
  cursor: pointer;
}
.date-input-wrapper .form-control:focus {
  border-color: #ffa301;
  box-shadow: 0 0 0 0.2rem rgba(255, 163, 1, 0.25);
}
.date-input-wrapper .form-control.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.date-error {
  color: #dc3545 !important;
  font-size: 12px !important;
  margin-top: 4px !important;
  display: block !important;
  font-weight: 500 !important;
}
.date-error::before {
  content: "⚠ ";
  margin-right: 4px;
}

.date-notification {
  color: #28a745 !important;
  font-size: 12px !important;
  margin-top: 4px !important;
  display: block !important;
  font-weight: 500 !important;
}
.date-notification::before {
  content: "✓ ";
  margin-right: 4px;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
.date-input {
  transition: all 0.2s ease;
}
.date-input:focus {
  outline: none;
  border-color: #ffa301;
  box-shadow: 0 0 0 2px rgba(255, 163, 1, 0.12);
}
.date-input.is-invalid {
  animation: shake 0.5s ease-in-out;
}

.max-flight-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #ffa301;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  animation: slideInRight 0.3s ease-out;
}
.max-flight-notification i {
  font-size: 16px;
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.flight-search-container {
  animation: floatUp 0.6s ease-out;
}
.flight-search-container::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: transparent;
  border-radius: 20px;
  z-index: -1;
  opacity: 0.8;
}

@keyframes floatUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .ticket-class-selector .custom-select-toggle {
    width: 100%;
  }
  .ticket-class-selector .selected-title {
    text-align: center;
  }
  .flight-options {
    gap: 8px;
  }
  .flight-options .ticket-class-selector .custom-select-options {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .flight-search-container {
    margin-top: -60px !important;
    padding: 15px;
  }
  .flight-search-container .flight-search-card {
    padding: 10px;
    border-radius: 10px;
  }
  .flight-search-container .flight-search-card .flight-search-header {
    gap: 8px;
  }
  .flight-search-container .flight-search-card .airport-field .airport-selector .airport-input {
    height: 44px;
    padding: 10px 18px;
  }
  .flight-search-container .flight-search-card .swap-button-container {
    height: 44px;
    padding: 5px 0;
  }
  .flight-search-container .flight-search-card .swap-button-container .swap-btn {
    width: 40px;
    height: 40px;
  }
  .flight-search-container .flight-search-card .date-field {
    margin: 10px 0px;
  }
  .flight-search-container .flight-search-card .date-field .field-label {
    margin-bottom: 10px;
  }
  .flight-search-container .flight-search-card .date-field .date-input {
    height: 44px;
    padding: 10px 18px;
  }
  .zalo-chat-widget {
    bottom: 10px !important;
    right: 10px !important;
    transform: scale(0.7);
    z-index: 995 !important;
  }
}
#root {
  min-height: 300px;
}

.loader-wrapper {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-temp {
  width: 120px;
  height: 20px;
  background: linear-gradient(#000 50%, rgba(0, 0, 0, 0) 0), linear-gradient(rgba(0, 0, 0, 0) 50%, #000 0), linear-gradient(#000 50%, rgba(0, 0, 0, 0) 0), linear-gradient(rgba(0, 0, 0, 0) 50%, #000 0), linear-gradient(#000 50%, rgba(0, 0, 0, 0) 0), linear-gradient(rgba(0, 0, 0, 0) 50%, #000 0) #ddd;
  background-size: calc(16.6666666667% + 1px) 200%;
  background-repeat: no-repeat;
  animation: l12 2s infinite;
}

@keyframes l12 {
  0% {
    background-position: 0% 100%, 20% 0%, 40% 100%, 60% 0%, 80% 100%, 100% 0%;
  }
  16.67% {
    background-position: 0% 0%, 20% 0%, 40% 100%, 60% 0%, 80% 100%, 100% 0%;
  }
  33.33% {
    background-position: 0% 0%, 20% 100%, 40% 100%, 60% 0%, 80% 100%, 100% 0%;
  }
  50% {
    background-position: 0% 0%, 20% 100%, 40% 0%, 60% 0%, 80% 100%, 100% 0%;
  }
  66.67% {
    background-position: 0% 0%, 20% 100%, 40% 0%, 60% 100%, 80% 100%, 100% 0%;
  }
  83.33% {
    background-position: 0% 0%, 20% 100%, 40% 0%, 60% 100%, 80% 0%, 100% 0%;
  }
  100% {
    background-position: 0% 0%, 20% 100%, 40% 0%, 60% 100%, 80% 0%, 100% 100%;
  }
}
.promo-form-section {
  padding: 20px 0 30px;
}
.promo-form-section .promo-form-container {
  background: #eaf3fb;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
}
.promo-form-section .promo-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.promo-form-section .promo-form-card .form-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.promo-form-section .promo-form-card .form-subtitle {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
}
.promo-form-section .promo-form-card .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.promo-form-section .promo-form-card .form-control {
  border-radius: 8px;
  height: 44px;
  font-size: 0.95rem;
}
.promo-form-section .promo-form-card .promo-btn {
  height: 44px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}
@media (max-width: 5768px) {
  .promo-form-section .promo-form-container {
    padding: 15px;
  }
  .promo-form-section .promo-form-card {
    padding: 30px 15px;
  }
}

.promo-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #09C586;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.promo-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* BlockUI container */
.blockUI.blockMsg {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

/* Spinner màu vàng */
.sk-fold-cube::before {
  background-color: #FFCC00 !important;
}

.contact-page-container .bg-flights img {
  filter: none !important;
  -webkit-filter: none !important;
}
.contact-page-container .promo-form-section {
  padding-top: 30px;
}
.contact-page-container .contact-information-container h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 66px;
  color: #000000;
  margin: 30px 0 40px;
  text-align: left;
}
.contact-page-container .contact-information-container .contact-information-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.contact-page-container .contact-information-container .contact-information-content .contact-card {
  background: #F5F5F5;
  padding: 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-page-container .contact-information-container .contact-information-content .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.contact-page-container .contact-information-container .contact-information-content .contact-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.contact-page-container .contact-information-container .contact-information-content .contact-card .icon-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.contact-page-container .contact-information-container .contact-information-content .contact-card .card-content h3 {
  color: #121212;
  margin-bottom: 8px;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.contact-page-container .contact-information-container .contact-information-content .contact-card .card-content p {
  font-weight: 700;
  font-size: 24px;
  line-height: 44px;
  color: #1E3D5B;
}
.contact-page-container .contact-information-container .image-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 40px;
}
.contact-page-container .contact-information-container .image-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  aspect-ratio: 1;
  background: #e0e0e0;
  aspect-ratio: 3/4;
}
.contact-page-container .contact-information-container .image-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.contact-page-container .contact-information-container .image-gallery .gallery-item:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .contact-page-container .contact-information-container .contact-information-content {
    grid-template-columns: 1fr;
  }
  .contact-page-container .contact-information-container .image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-page-container .contact-information-container h2 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .contact-page-container .contact-information-container .image-gallery {
    grid-template-columns: 1fr;
  }
  .contact-page-container .contact-information-container .contact-information-content .contact-card {
    padding: 20px;
  }
}
.contact-page-container .map-container {
  margin-top: 50px;
  width: 100%;
  position: relative;
}
.contact-page-container .map-container #map-search {
  position: absolute;
  z-index: 2;
  left: 30px;
  top: 20px;
  border-radius: 100px;
  border: 1px solid rgba(254, 254, 254, 0.3);
  padding: 10px 30px;
  width: 400px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #1F3D59;
}
.contact-page-container .map-container #map-search::placeholder {
  color: #1F3D59;
  opacity: 0.7;
}
.contact-page-container .map-container #map-search:focus {
  outline: none;
}
@media (max-width: 480px) {
  .contact-page-container .map-container #map-search {
    width: 250px;
    font-size: 14px;
    padding: 8px 20px;
  }
}
.contact-page-container .map-container #open-external-map-btn {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 20px;
  border: 1px solid rgba(254, 254, 254, 0.3);
  width: 35px;
  height: 35px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #1F3D59;
  align-content: center;
  padding: 0px;
  transition: transform 0.2s ease-in-out;
  background-color: #FFFFFF;
}
.contact-page-container .map-container #open-external-map-btn:hover {
  transform: scale(1.1);
}
.contact-page-container .map-container #open-external-map-btn::placeholder {
  color: #1F3D59;
  opacity: 0.7;
}
.contact-page-container .map-container #open-external-map-btn:focus {
  outline: none;
}
.contact-page-container .map-container #map {
  z-index: 1;
  width: 100%;
  height: 450px;
  border-radius: 20px;
  border: 1px solid #D9D9D9;
}
.contact-page-container .map-container #map .leaflet-left {
  right: 10px !important;
  left: auto !important;
}

.promo-form-section {
  padding: 20px 0 30px;
}
.promo-form-section .promo-form-container {
  background: #eaf3fb;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
}
.promo-form-section .promo-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.promo-form-section .promo-form-card .form-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.promo-form-section .promo-form-card .form-subtitle {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
}
.promo-form-section .promo-form-card .form-label {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.promo-form-section .promo-form-card .form-control {
  border-radius: 8px;
  height: 44px;
  font-size: 0.95rem;
}
.promo-form-section .promo-form-card .promo-btn {
  height: 44px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}
@media (max-width: 5768px) {
  .promo-form-section .promo-form-container {
    padding: 15px;
  }
  .promo-form-section .promo-form-card {
    padding: 30px 15px;
  }
}

.promo-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #09C586;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.promo-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* BlockUI container */
.blockUI.blockMsg {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

/* Spinner màu vàng */
.sk-fold-cube::before {
  background-color: #FFCC00 !important;
}

.contact-page-container .bg-flights img {
  filter: none !important;
  -webkit-filter: none !important;
}
.contact-page-container .promo-form-section {
  padding-top: 30px;
}
.contact-page-container .contact-information-container h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 66px;
  color: #000000;
  margin: 30px 0 40px;
  text-align: left;
}
.contact-page-container .contact-information-container .contact-information-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.contact-page-container .contact-information-container .contact-information-content .contact-card {
  background: #F5F5F5;
  padding: 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-page-container .contact-information-container .contact-information-content .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.contact-page-container .contact-information-container .contact-information-content .contact-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.contact-page-container .contact-information-container .contact-information-content .contact-card .icon-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.contact-page-container .contact-information-container .contact-information-content .contact-card .card-content h3 {
  color: #121212;
  margin-bottom: 8px;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}
.contact-page-container .contact-information-container .contact-information-content .contact-card .card-content p {
  font-weight: 700;
  font-size: 24px;
  line-height: 44px;
  color: #1E3D5B;
}
.contact-page-container .contact-information-container .image-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 40px;
}
.contact-page-container .contact-information-container .image-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  aspect-ratio: 1;
  background: #e0e0e0;
  aspect-ratio: 3/4;
}
.contact-page-container .contact-information-container .image-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.contact-page-container .contact-information-container .image-gallery .gallery-item:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .contact-page-container .contact-information-container .contact-information-content {
    grid-template-columns: 1fr;
  }
  .contact-page-container .contact-information-container .image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-page-container .contact-information-container h2 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .contact-page-container .contact-information-container .image-gallery {
    grid-template-columns: 1fr;
  }
  .contact-page-container .contact-information-container .contact-information-content .contact-card {
    padding: 20px;
  }
}
.contact-page-container .map-container {
  margin-top: 50px;
  width: 100%;
  position: relative;
}
.contact-page-container .map-container #map-search {
  position: absolute;
  z-index: 2;
  left: 30px;
  top: 20px;
  border-radius: 100px;
  border: 1px solid rgba(254, 254, 254, 0.3);
  padding: 10px 30px;
  width: 400px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #1F3D59;
}
.contact-page-container .map-container #map-search::placeholder {
  color: #1F3D59;
  opacity: 0.7;
}
.contact-page-container .map-container #map-search:focus {
  outline: none;
}
@media (max-width: 480px) {
  .contact-page-container .map-container #map-search {
    width: 250px;
    font-size: 14px;
    padding: 8px 20px;
  }
}
.contact-page-container .map-container #open-external-map-btn {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 20px;
  border: 1px solid rgba(254, 254, 254, 0.3);
  width: 35px;
  height: 35px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #1F3D59;
  align-content: center;
  padding: 0px;
  transition: transform 0.2s ease-in-out;
  background-color: #FFFFFF;
}
.contact-page-container .map-container #open-external-map-btn:hover {
  transform: scale(1.1);
}
.contact-page-container .map-container #open-external-map-btn::placeholder {
  color: #1F3D59;
  opacity: 0.7;
}
.contact-page-container .map-container #open-external-map-btn:focus {
  outline: none;
}
.contact-page-container .map-container #map {
  z-index: 1;
  width: 100%;
  height: 450px;
  border-radius: 20px;
  border: 1px solid #D9D9D9;
}
.contact-page-container .map-container #map .leaflet-left {
  right: 10px !important;
  left: auto !important;
}

.booking-widget .search-box {
  border-left: 5px solid rgb(31, 61, 89);
}
.booking-widget .search-box h3 {
  font-weight: 600;
  color: rgb(31, 61, 89);
}
.booking-widget .search-box .btn-search {
  background: linear-gradient(135deg, rgb(31, 61, 89), rgb(45, 87, 126));
  border: none;
  font-weight: 600;
}
.booking-widget .search-box .btn-search:hover {
  opacity: 0.9;
}
.booking-widget .message {
  margin-top: 20px;
  color: rgb(247, 12, 12) !important;
  font-size: 14px !important;
}
.booking-widget .result-box {
  display: none;
}
.booking-widget .result-box h4 {
  font-weight: 600;
  color: #333;
}
.booking-widget .result-box .price-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.booking-widget .result-box .price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.booking-widget .result-box .price-card h5 {
  font-weight: 600;
}
.booking-widget .result-box .price-card p {
  margin-bottom: 0.25rem;
}

.flight-calendar-container {
  margin-bottom: 50px;
}
.flight-calendar-container h1 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 15px;
  text-align: center;
}
.flight-calendar-container .filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.flight-calendar-container .filters .filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flight-calendar-container .filters .filter-group .filter-label {
  color: #828282;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.flight-calendar-container .filters .filter-group .filter-select {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  background-color: #F2F2F2;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #121212;
}
.flight-calendar-container .filters .filter-group .filter-select:hover {
  border-color: #ccc;
}
.flight-calendar-container .calendar {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 100%;
  overflow: auto;
}
.flight-calendar-container .calendar .calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.flight-calendar-container .calendar .calendar-header .day-name {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  padding: 12px;
  color: #1a1a1a;
}
.flight-calendar-container .calendar .calendar-header-mobile {
  display: none;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.flight-calendar-container .calendar .calendar-header-mobile .day-name {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  padding: 8px;
  color: #1a1a1a;
}
.flight-calendar-container .calendar .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.flight-calendar-container .calendar .calendar-grid .calendar-cell {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 16px 12px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
}
.flight-calendar-container .calendar .calendar-grid .calendar-cell.disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.5;
}
.flight-calendar-container .calendar .calendar-grid .calendar-cell.selected {
  background-color: #4caf50;
  border-color: #4caf50;
}
.flight-calendar-container .calendar .calendar-grid .calendar-cell.selected .date-number,
.flight-calendar-container .calendar .calendar-grid .calendar-cell.selected .price {
  color: white !important;
}
.flight-calendar-container .calendar .calendar-grid .calendar-cell:hover:not(.disabled) {
  border-color: #4caf50;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}
.flight-calendar-container .calendar .calendar-grid .calendar-cell .date-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.flight-calendar-container .calendar .calendar-grid .calendar-cell .date-header .date-number {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}
.flight-calendar-container .calendar .calendar-grid .calendar-cell .date-header .sun-icon {
  width: 20px;
  height: 20px;
}
.flight-calendar-container .calendar .calendar-grid .calendar-cell .price {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}
.flight-calendar-container .calendar .calendar-grid .calendar-cell .price .price-format {
  display: inline-block;
}
.flight-calendar-container .calendar .calendar-grid .calendar-cell .price .price-short {
  display: none;
}

.flight-search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  /* nền tối */
  display: none;
  /* hiển thị overlay */
  align-content: start;
  z-index: 9999;
  /* đảm bảo overlay nằm trên cùng */
}

.flight-search-popup .flight-search-container {
  margin-top: 100px !important;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInScale 0.3s ease;
  border-radius: 20px;
}
.flight-search-popup .flight-search-container .btn-close-popup {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  z-index: 10000;
  display: block !important;
}

/* Hiệu ứng mở */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 992px) {
  .flight-calendar-container {
    padding: 0px 10px;
  }
  .flight-calendar-container .calendar .calendar-header {
    gap: 4px;
  }
  .flight-calendar-container .calendar .calendar-header .day-name {
    font-size: 14px;
    padding: 8px;
  }
  .flight-calendar-container .calendar .calendar-grid {
    gap: 4px;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell {
    padding: 8px;
    min-height: 60px;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell .date-header .date-number {
    font-size: 13px;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell .price {
    font-size: 12px;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell .price .price-format {
    display: none;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell .price .price-short {
    display: inline-block;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell .date-header .sun-icon {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 768px) {
  .flight-calendar-container h1 {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .flight-calendar-container .filters {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .flight-calendar-container .calendar .calendar-header {
    gap: 4px;
  }
  .flight-calendar-container .calendar .calendar-header .day-name {
    font-size: 13px;
    padding: 5px;
  }
  .flight-calendar-container .calendar .calendar-grid {
    gap: 4px;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell {
    padding: 8px;
    min-height: 60px;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell .date-number {
    font-size: 13px;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell .price {
    font-size: 12px;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell .date-header .sun-icon {
    width: 16px;
    height: 16px;
  }
  .flight-search-popup .flight-search-container {
    margin-top: 50px !important;
  }
  .flight-search-popup .flight-search-container .btn-close-popup {
    top: -5px;
    right: 5px;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .flight-calendar-container {
    padding: 0px;
  }
  .flight-calendar-container .calendar .calendar-header {
    display: none;
  }
  .flight-calendar-container .calendar .calendar-header-mobile {
    display: grid;
    gap: 4px;
  }
  .flight-calendar-container .calendar .calendar-header-mobile .day-name {
    font-size: 12px;
    padding: 4px;
  }
  .flight-calendar-container .calendar .calendar-grid {
    gap: 4px;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell {
    padding: 5px;
    min-height: 60px;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell .date-header .date-number {
    font-size: 12px;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell .price {
    font-size: 11px;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell .price .price-format {
    display: none;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell .price .price-short {
    display: inline-block;
  }
  .flight-calendar-container .calendar .calendar-grid .calendar-cell .date-header .sun-icon {
    width: 15px;
    height: 15px;
  }
  .flight-search-popup .flight-search-container {
    margin-top: 10px !important;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .flight-search-popup .flight-search-container .btn-close-popup {
    top: -10px;
    right: 0px;
    font-size: 16px;
  }
  .flight-search-popup .flight-search-container .flight-search-card {
    padding: 10px;
  }
}

/*# sourceMappingURL=main.css.map */
