@charset "UTF-8";
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
  padding: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.3;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
  font-family: "Roboto", sans-serif;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

a {
  text-decoration: none;
}

/*
  10. Create a root stacking context
*/
.clickable {
  cursor: pointer;
}

.hover-zoom {
  transition: transform 0.3s ease;
}

.hover-zoom:hover {
  transform: scale(1.05);
}

#root,
#__next {
  isolation: isolate;
}

.sub-header {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.14);
  width: 100%;
  background: #ffffff;
  height: -moz-max-content;
  height: max-content;
}
.sub-header.fixed-header {
  position: fixed;
  top: 0;
  z-index: 1000;
}
.sub-header .container-menu {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.sub-header .logo-gr {
  display: inline-block;
  height: 60px;
}
.sub-header .logo-gr img {
  height: 100%;
}
.sub-header .menu-main {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sub-header .menu-main li {
  float: left;
  position: relative;
  display: block;
}
.sub-header .menu-main li:hover ul {
  display: block;
}
.sub-header .menu-main li.language {
  background-image: url(./../images/icons/language.svg);
  background-repeat: no-repeat;
  background-position: left;
  padding: 22px 28px;
  padding-left: 25px;
}
.sub-header .menu-main li.language select {
  outline: none;
  border: unset;
  font-weight: bold;
  cursor: pointer;
}
.sub-header .menu-main li a {
  color: #000;
  padding: 22px 28px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  outline: 0;
  line-height: 1.42857143;
  text-transform: uppercase;
  display: block;
}
.sub-header .menu-main li.active a, .sub-header .menu-main li:hover a {
  color: #006885;
}
.sub-header .menu-main li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0px;
  min-width: 200px;
  z-index: 3;
  background: #006885;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  border: 0;
  padding: 0;
  overflow: hidden;
  margin-top: 0;
}
.sub-header .menu-main li ul li {
  float: left;
  width: 100%;
  max-width: 100%;
}
.sub-header .menu-main li ul li a {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 20px !important;
  font-size: 14px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1294117647);
  color: #ffffff !important;
  white-space: nowrap;
  clear: both;
}

main {
  background-color: rgba(243, 243, 243, 0.5411764706);
}
main .hero-banner {
  position: relative;
  height: 600px;
}
main .hero-banner .banner-swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
main .hero-banner swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .hero-banner swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .hero-banner > .container-menu {
  position: relative;
  z-index: 10;
}
main .hero-banner .slogan {
  padding-top: 230px;
}
main .hero-banner .slogan .title {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
}
main .hero-banner .slogan .sub-title {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
main .hero-banner .filter-form {
  margin-top: 40px;
  border-radius: 16px;
  background-color: #ffffff;
  padding: 16px;
}
main .hero-banner .filter-form .constrain .item-select {
  width: -moz-max-content;
  width: max-content;
  background-color: #e7eef6;
  padding: 4px;
  border-radius: 4px;
  gap: 3px;
  min-width: 120px;
}
main .hero-banner .filter-form .constrain .item-select.passenger {
  margin-left: 16px;
}
main .hero-banner .filter-form .constrain .item-select .text {
  text-wrap: nowrap;
  font-size: 14px;
}
main .hero-banner .filter-form .fields {
  margin-top: 12px;
}
main .hero-banner .filter-form .fields .icon {
  color: #868691;
}
main .hero-banner .filter-form .fields .route {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}
main .hero-banner .filter-form .fields .route .swap:hover {
  cursor: pointer;
}
main .hero-banner .filter-form .fields .route .swap:hover .icon {
  color: #29292e;
}
main .hero-banner .filter-form .fields .route .route-from,
main .hero-banner .filter-form .fields .route .route-to {
  flex: 1;
}
main .hero-banner .filter-form .fields .field-item {
  height: 50px;
  border: 1px solid rgba(23, 23, 23, 0.1019607843);
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
main .hero-banner .filter-form .fields .field-item:hover {
  border-color: #ffa301;
}
main .hero-banner .filter-form .fields .field-item .text {
  font-size: 14px;
}
main .hero-banner .filter-form .fields .field-item .group-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
main .hero-banner .filter-form .fields .field-item .group-date .from-date,
main .hero-banner .filter-form .fields .field-item .group-date .to-date {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}
main .hero-banner .filter-form .fields .field-item .group-date .to-date {
  margin-left: 10px;
}
main .hero-banner .filter-form .fields .field-item .vertical-divider {
  width: 1px;
  height: 20px;
  background-color: #d3d3d3;
}
main .hero-banner .filter-form .fields .search-button {
  border-radius: 8px;
  background-color: #ffa301;
  color: #ffffff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
main .hero-banner .filter-form .fields .search-button .icon {
  color: #ffffff;
}
main .route-top {
  margin-top: 50px;
}
main .route-top .item {
  overflow: hidden;
  border-radius: 8px;
}
main .route-popular {
  background: linear-gradient(to right, #fff7e7 0%, #fff7e7 50%, #d2faff 100%);
}
main .route-popular .wrap {
  margin-top: 48px;
  padding: 24px 24px 50px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
main .route-popular .title {
  color: #ffa301;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
  margin-block: 20px;
}
main .route-popular .list-location {
  gap: 8px;
}
main .route-popular .list-location .item {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease-in;
}
main .route-popular .list-location .item.selected, main .route-popular .list-location .item:hover {
  background-color: #ffa301;
  color: #ffffff;
}
main .route-popular .route-availables .item {
  border-radius: 8px;
  overflow: hidden;
}
main .route-popular .route-availables .item .thumbnail {
  overflow: hidden;
}
main .route-popular .route-availables .item .route-from-to {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 4px;
}
main .route-popular .route-availables .item .route-from-to .icon {
  color: #868691;
}
main .route-popular .route-availables .item .route-from-to .from,
main .route-popular .route-availables .item .route-from-to .to {
  font-size: 14px;
}
main .why-choose {
  margin-top: 50px;
}
main .why-choose .title {
  color: #ffa301;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
}
main .why-choose .list {
  margin-top: 10px;
}
main .why-choose .list .item {
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 2.5px 4.33px 35px 0px rgba(0, 0, 0, 0.04);
  padding: 16px;
  transition: all 0.5s ease;
}
main .why-choose .list .item:hover {
  box-shadow: 2.5px 4.33px 35px 0px rgba(0, 0, 0, 0.1);
}
main .why-choose .list .item .icon {
  height: 60px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
main .why-choose .list .item .label {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 700;
}
main .why-choose .list .item .description {
  margin-top: 7px;
  font-size: 16px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
main .partner {
  background-color: #ffffff;
  padding-block: 40px;
  margin-top: 50px;
}
main .partner .title {
  color: #ffa301;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
}
main .partner .partner-swiper,
main .partner .payment-swiper {
  width: 100%;
  padding: 20px 0;
}
main .partner .partner-swiper .partner-swiper::part(wrapper),
main .partner .payment-swiper .partner-swiper::part(wrapper) {
  transition-timing-function: linear !important;
}
main .partner .partner-swiper swiper-slide,
main .partner .payment-swiper swiper-slide {
  width: auto !important;
  /* Để slide fit nội dung ảnh */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: auto;
}
main .partner .partner-swiper .lazy,
main .partner .payment-swiper .lazy {
  max-height: 60px;
  /* Tuỳ chỉnh chiều cao ảnh */
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 10px;
}
main .partner .image-doitac {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .partner .image-doitac img {
  max-height: 50px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .recommend-route {
  margin-top: 50px;
}
main .recommend-route .title {
  color: #ffa301;
  font-size: 20px;
  font-weight: 600;
}
main .recommend-route .menu-bottom {
  list-style: none;
  padding: 0;
}
main .recommend-route .menu-bottom li {
  margin-top: 10px;
  background-color: #ffffff;
  box-shadow: 2.5px 4.33px 35px 0px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  padding: 10px 8px 10px 35px;
  transition: all 0.5s ease;
  position: relative;
}
main .recommend-route .menu-bottom li::before {
  content: url(./../images/icons/plane.png);
  position: absolute;
  left: 10px;
  top: 30%;
  transform: translateY(-36%);
  filter: brightness(0) saturate(100%);
  background-size: cover;
  transform: rotate(320deg);
}
main .recommend-route .menu-bottom li:hover {
  background-color: #ffa301;
}
main .recommend-route .menu-bottom li:hover::before {
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(1887%) hue-rotate(336deg) brightness(121%) contrast(100%);
}
main .recommend-route .menu-bottom li:hover a {
  color: #ffffff;
}
main .recommend-route .menu-bottom li a {
  color: #000000;
}
main .news {
  margin-top: 50px;
  padding-block: 30px;
}
main .news .title {
  color: #ffa301;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
}
main .news .news-swiper {
  margin-block: 20px;
  cursor: grab;
}
main .news .news-swiper .swiper {
  padding-block: 20px;
}
main .news .news-swiper::part(wrapper) {
  transition-timing-function: ease-in-out;
}
main .news .news-swiper .item {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 2.5px 4.33px 35px 0px rgba(0, 0, 0, 0.04);
  transition: all 0.5s ease;
}
main .news .news-swiper .item:hover {
  box-shadow: 2.5px 4.33px 35px 0px rgba(0, 0, 0, 0.1);
}
main .news .news-swiper .item .thumbnail {
  height: 240px;
  position: relative;
  overflow: hidden;
}
main .news .news-swiper .item .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .news .news-swiper .item .thumbnail .publict-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: #ffffff;
  padding: 6px;
  border-radius: 8px;
  text-align: center;
}
main .news .news-swiper .item .thumbnail .publict-date .day {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
main .news .news-swiper .item .thumbnail .publict-date .month {
  font-size: 16px;
  font-weight: 400;
}
main .news .news-swiper .item .content {
  padding: 16px;
}
main .news .news-swiper .item .content .location {
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 600;
}
main .news .news-swiper .item .content .title {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
main .news .news-swiper .item .content .description {
  text-align: justify;
  font-size: 14px;
  color: #737373;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

footer {
  background: url(./../images/footer-bg.jpg) no-repeat top center;
  background-size: cover;
  padding: 50px 0px 20px 0px;
  display: inline-block;
  width: 100%;
  float: left;
  color: #fff;
  line-height: 24px;
  font-size: 14px;
  font-weight: 300;
}
footer .title-white-18 {
  font-size: 18px;
  color: #fff;
  line-height: 22px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffa301;
}
footer .menu-bottom,
footer .menu-footer {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: inline-block;
  width: 100%;
}
footer .menu-footer li {
  font-weight: 400;
}
footer .menu-footer li a {
  color: #fff;
}
footer .menu-footer li a:hover {
  color: #ffa301;
}
footer .dis-in-100 {
  display: inline-block;
  width: 100%;
}
footer .text-yellow-20 {
  color: #ffa301;
  font-size: 20px;
  line-height: 21px;
  font-weight: 600;
}
footer .icon-home {
  background: url(./../images/icons/address.png) no-repeat center left;
  padding: 3px 0px 0px 23px;
}
footer .icon-plane {
  background: url(./images/icons/plane.png) no-repeat center left;
  padding: 3px 0px 0px 23px;
}
footer .icon-email {
  background: url(./../images/icons/email.png) no-repeat center left;
  padding: 3px 0px 0px 23px;
}
footer .icon-phone {
  background: url(./../images/icons/icon-phone.png) no-repeat 0px 5px;
  padding: 3px 0px 0px 23px;
}
footer .newsletter {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0px 59px 0px 0px;
  margin-top: 20px;
}
footer .newsletter .txtEmail {
  height: 45px;
  width: 100%;
  font-style: italic;
  padding: 0px 0px 0px 10px;
  color: #000;
}
footer .newsletter .btn-newsletter {
  background: #ffa301;
  height: 45px;
  border: 0px;
  width: 60px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  position: absolute;
  top: 0px;
  right: 0px;
  color: #000;
}
footer .mgt20 {
  margin-top: 20px;
}
footer .bottom-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #688b94;
  margin: 30px 0px 0px 0px;
  padding: 25px 0px 0px 0px;
}
footer .bottom-footer img {
  height: 50px;
  width: auto;
}
footer .bottom-footer .company-info p {
  margin-bottom: 3px;
}
footer .socials-right {
  float: right;
  padding: 10px 0px;
}
footer .icon-fb {
  display: inline-block;
  height: 25px;
  width: 28px;
  background: url(./../images/fb.png) no-repeat 0px 0px;
  background-size: 100% 100%;
}
footer .icon-yt {
  display: inline-block;
  height: 25px;
  width: 28px;
  background: url(./../images/yt.png) no-repeat 0px 0px;
  background-size: 100% 100%;
  margin-left: 4px;
}/*# sourceMappingURL=index.css.map */


/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e3c72 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-hero {
  background: linear-gradient(45deg, var(--secondary-color), #ffa500);
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(248, 181, 0, 0.4);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(248, 181, 0, 0.6);
}

/* Floating Animation */
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--light-color);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.1), transparent);
  transition: left 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  color: var(--secondary-color);
  transform: scale(1.1);
}

/* About Section */
.about {
  padding: 100px 0;
  background: white;
}

.about-img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: scale(1.05);
}

/* Process Section */
.process {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process-step {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
  transition: all 0.3s ease;
}

.process-step:hover .process-number {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(44, 90, 160, 0.5);
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--primary-color);
  color: white;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--secondary-color);
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: var(--dark-color);
  color: white;
}

.stat-item {
  text-align: center;
  margin-bottom: 30px;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--secondary-color);
  display: block;
}

.counter {
  transition: all 0.3s ease;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  border-radius: 10px;
}

.form-control:focus {
  background: rgba(255,255,255,0.15);
  border-color: var(--secondary-color);
  color: white;
  box-shadow: 0 0 0 0.2rem rgba(248, 181, 0, 0.25);
}

.form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 50px 0 20px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 2.5rem;
  }
  
  .hero p {
      font-size: 1.1rem;
  }
}