/* Base Styles */
:root {
  --primary-blue: #6a8eae;
  --light-blue: #a4c1d7;
  --dark-blue: #3a5a78;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --text-color: #333333;
  --transition: all 0.3s ease;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
  /* font-family: "Cormorant Garamond", serif; */

  /* font-weight: 500; */
  font-family: poppins-m;
  font-weight: initial;
}

/* Header Styles */
.hd-favija-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: var(--transition);
  /* background-color: rgba(255, 255, 255, 0.9); */
  background: var(--dark-blue);
  /* backdrop-filter: blur(10px); */
  /* -webkit-backdrop-filter: blur(10px); */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hd-favija-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Logo Styles */
.hd-favija-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--dark-blue);
  transition: var(--transition);
}
.hd-favija-logo img {
  max-width: 80px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.hd-favija-logo span {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
}

.hd-favija-logo small {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-blue);
}

.hd-favija-logo:hover {
  color: var(--primary-blue);
}

/* Navigation Styles */
.hd-favija-nav {
  position: relative;
}

.hd-favija-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hd-favija-menu-item {
  position: relative;
  margin: 0 15px;
}

.hd-favija-menu-item > a {
  /* font-size: 14px; */
  font-size: clamp(0.7rem, 0.0881rem + 0.9552vw, 0.9rem);
  text-decoration: none;
  color: var(--background-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 0;
  position: relative;
  display: flex;
  align-items: center;
  transition: var(--transition);
  font-family: poppins-r;
}

.hd-favija-menu-item > a i {
  font-size: 10px;
  margin-left: 5px;
  transition: var(--transition);
}

.hd-favija-menu-item > a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffd25b;
  transition: var(--transition);
}

.hd-favija-menu-item > a:hover,
.hd-favija-menu-item > a.active {
  /* color: var(--primary-blue); */
  color: #ffd25b;
}

.hd-favija-menu-item > a:hover:after,
.hd-favija-menu-item > a.active:after {
  width: 100%;
}

.hd-favija-menu-item:hover > a i {
  transform: rotate(180deg);
}

/* Submenu Styles */
.hd-favija-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  /* background-color: var(--white); */
  background: #13274e;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 100;
  margin-top: 15px;
  width: max-content;
}

.hd-favija-submenu::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 20px;
  width: 10px;
  height: 10px;
  /* background-color: var(--white); */
  background: #13274e;
  transform: rotate(45deg);
  z-index: -1;
}

.hd-favija-menu-item:hover > .hd-favija-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hd-favija-submenu li {
  position: relative;
  list-style: none;
}

.hd-favija-submenu li a {
  display: block;
  padding: 8px 20px;
  color: var(--background-color);
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
}

.hd-favija-submenu li a:hover {
  /* background-color: var(--light-gray); */
  background: #263960;
  color: #ffd25b;
}

.hd-favija-submenu li a i {
  float: right;
  font-size: 10px;
  margin-top: 5px;
}

/* Level 2 Submenu */
.hd-favija-submenu-level-2 {
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 1px;
}

.hd-favija-submenu-level-2::before {
  top: 15px;
  left: -5px;
  display: none;
}
.hd-favija-submenu-level-1
  > li.hd-favija-has-submenu:hover
  > .hd-favija-submenu.hd-favija-submenu-level-2 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

/* Contact Buttons Styles */
.hd-favija-contact-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hd-favija-contact-btn {
  display: flex;
  align-items: center;
  margin-left: 20px;
  text-decoration: none;
  color: var(--background-color);
  transition: var(--transition);
}

.hd-favija-contact-btn i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--background-color);
}

.hd-favija-contact-btn span {
  font-size: 14px;
}

.hd-favija-contact-btn:hover {
  color: var(--primary-blue);
}

/* Language Switch Styles */
.hd-favija-language-switch {
  display: flex;
  align-items: center;
  margin-right: 20px;
  border-radius: 20px;
  /* background-color: var(--light-gray); */
  background: linear-gradient(135deg, #102346 0%, #183061 100%);
  padding: 3px;
}

.hd-favija-lang-btn {
  background: transparent;
  border: none;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--background-color);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.hd-favija-lang-btn.active {
  /* background-color: var(--white); */
  background: #263960;
  color: #ffd25b;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.hd-favija-lang-btn:hover:not(.active) {
  color: var(--primary-blue);
}

/* Mobile Language Switch */
.hd-favija-language-switch-mobile {
  display: flex;
  align-items: center;
  margin-right: 15px;
  border-radius: 20px;
  /* background-color: var(--light-gray); */
  background: #13274e;
  padding: 2px;
}

.hd-favija-language-switch-mobile .hd-favija-lang-btn {
  padding: 3px 8px;
  font-size: 11px;
}

/* Mobile Controls */
.hd-favija-mobile-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Hamburger Menu Styles */
.hd-favija-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.hd-favija-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--background-color);
  transition: var(--transition);
}

.hd-favija-hamburger:hover span {
  background-color: #ffd25b;
}

/* Mobile Menu Styles */
.hd-favija-mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #102346 0%, #183061 100%);
  z-index: 1000;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow-y: auto;
  color: #fff;
}

.hd-favija-mobile-menu.active {
  right: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hd-favija-mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hd-favija-close-menu {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hd-favija-close-menu:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Nội dung menu mobile mới */
.favija-mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.favija-mobile-item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.favija-mobile-item:last-child {
  border-bottom: none;
}

.favija-mobile-link,
.favija-mobile-item > a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.favija-mobile-link:hover,
.favija-mobile-item > a:hover,
.favija-mobile-item > a.active {
  background-color: rgba(255, 255, 255, 0.08);
  color: #e6c45c; /* Màu vàng sang trọng */
}

.favija-mobile-item.active > a {
  background-color: rgba(255, 255, 255, 0.08);
  color: #e6c45c; /* Màu vàng sang trọng */
}

.favija-submenu-toggle {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.favija-submenu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.favija-submenu-toggle i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.favija-submenu-toggle.active i {
  transform: rotate(180deg);
}

.favija-submenu-container {
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.favija-submenu-container.active {
  height: auto !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.favija-submenu-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.favija-submenu-item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.favija-submenu-item:last-child {
  border-bottom: none;
}

.favija-submenu-link {
  display: block;
  padding: 12px 20px 12px 35px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.favija-submenu-link:hover {
  color: #e6c45c; /* Màu vàng sang trọng */
  background-color: rgba(255, 255, 255, 0.05);
}

.level-1 {
  background-color: rgba(0, 0, 0, 0.15);
}

.level-2 .favija-submenu-link {
  padding-left: 50px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.level-2 {
  background-color: rgba(0, 0, 0, 0.25);
}
.hd-favija-logo-mobile img {
  width: 100%;
  max-width: 60px;
}
/* Styling cho phần contact */
.hd-favija-mobile-contact {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hd-favija-mobile-contact .hd-favija-contact-btn {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.hd-favija-mobile-contact .hd-favija-contact-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hd-favija-mobile-contact .hd-favija-contact-btn i {
  margin-right: 10px;
  font-size: 16px;
  color: #e6c45c; /* Màu vàng sang trọng */
}

/* Cập nhật animation cho hamburger menu */
.hd-favija-hamburger {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 40px;
  width: 40px;
  margin-left: 15px;
}

.hd-favija-hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffd25b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hd-favija-hamburger:hover span {
  background-color: #e6c45c; /* Màu vàng sang trọng */
}

/* Animation cho hamburger */
.hd-favija-hamburger:hover span:nth-child(1) {
  transform: translateY(-2px);
}

.hd-favija-hamburger:hover span:nth-child(3) {
  transform: translateY(2px);
}

.hd-favija-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hd-favija-overlay.active {
  display: block;
  opacity: 1;
}

/* Hero Slider Styles */
.hd-favija-hero-slider {
  /* height: 100vh; */
  position: relative;
  overflow: hidden;
}

.hd-favija-slider-container {
  height: 100%;
  position: relative;
}

.hd-favija-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hd-favija-slide.active {
  opacity: 1 !important;
  visibility: visible !important;
}
.hd-favija-slide .container {
  z-index: 2;
  position: relative;
}

.hd-favija-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hd-favija-slide-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hd-favija-slide-content {
  padding: 30px;
  margin-top: 200px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(50px);
  opacity: 0;
}

.hd-favija-slide.active .hd-favija-slide-content {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.hd-favija-slide-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hd-favija-slide-content p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hd-favija-cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  /*transition: var(--transition);
  */
  border: 1px solid transparent;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease,
    border 0.3s ease;
  -moz-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  -ms-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  -o-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.hd-favija-cta-btn:hover {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

/* Slider Navigation Styles */
.hd-favija-slider-nav {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 10;
}

.hd-favija-slider-arrow {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hd-favija-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.hd-favija-slider-dots {
  display: flex;
  margin: 0 20px;
  gap: 10px;
}

.hd-favija-dot {
  width: 13px;
  height: 13px;
  min-width: 13px;
  min-height: 13px;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 0px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.hd-favija-dot.active,
.hd-favija-dot:hover {
  background: var(--white);
}
.hd-favija-header.scrolled .hd-favija-logo img {
  max-width: 45px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
/* Responsive Styles */
@media (max-width: 991px) {
  .hd-favija-slide-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .hd-favija-slide-content {
    margin-top: 150px;
    padding: 20px;
  }

  .hd-favija-slide-content h1 {
    font-size: 28px;
  }

  .hd-favija-slide-content p {
    font-size: 14px;
  }

  .hd-favija-cta-btn {
    padding: 10px 25px;
    font-size: 12px;
  }

  .hd-favija-slider-nav {
    bottom: 30px;
  }
}

@media (max-width: 575px) {
  .hd-favija-slide-content {
    margin-top: 120px;
  }

  .hd-favija-slide-content h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .hd-favija-slide-content p {
    margin-bottom: 20px;
  }

  .hd-favija-slider-arrow {
    width: 35px;
    height: 35px;
  }
}

/* trang chủ start */
/* giới thiệu start */
/* Introduction Section Styles */
.intro-favija-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.intro-favija-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(164, 193, 215, 0.1) 0%,
    rgba(106, 142, 174, 0.05) 100%
  );
  z-index: -1;
}

/* Logo and Header Styles */

.intro-favija-logo-container {
  margin-bottom: 20px;
}

.intro-favija-logo {
  font-size: 48px;
  /* font-weight: 600; */
  letter-spacing: 3px;
  color: var(--dark-blue);
  margin-bottom: 5px;
  font-family: poppins-b;
}

.intro-favija-tagline {
  display: block;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-blue);
  font-weight: 300;
}

.intro-favija-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  width: 100%;
  max-width: 300px;
}

.intro-favija-divider span {
  height: 1px;
  flex-grow: 1;
  background-color: var(--light-blue);
}

.intro-favija-divider i {
  font-size: 18px;
  margin: 0 15px;
  color: var(--primary-blue);
}

.intro-favija-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-color);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

/* Services Styles */
.intro-favija-services-row {
  margin-bottom: 80px;
}

.intro-favija-service-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(58, 90, 120, 0.05);
  overflow: hidden;
  z-index: 1;
}

.intro-favija-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: -1;
}

.intro-favija-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(58, 90, 120, 0.1);
}

.intro-favija-service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  box-shadow: 0 5px 15px rgba(106, 142, 174, 0.1);
}

.intro-favija-service-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 1px solid var(--light-blue);
  opacity: 0.5;
  transition: var(--transition);
}

.intro-favija-service-card:hover .intro-favija-service-icon::after {
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  opacity: 0.8;
}
.intro-favija-service-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.intro-favija-service-icon i {
  font-size: 30px;
  color: var(--primary-blue);
}

.intro-favija-service-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--dark-blue);
  font-weight: 500;
}

.intro-favija-service-description {
  font-size: 15px;
  color: var(--text-color);
  margin-bottom: 25px;
  line-height: 1.7;
}

.intro-favija-service-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.intro-favija-service-link span {
  margin-right: 8px;
}

.intro-favija-service-link i {
  transition: var(--transition);
}

.intro-favija-service-link:hover {
  color: var(--dark-blue);
}

.intro-favija-service-link:hover i {
  transform: translateX(5px);
}

/* CTA Styles */
.intro-favija-cta {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 50px 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(58, 90, 120, 0.05);
}

.intro-favija-cta h4 {
  font-size: 28px;
  color: var(--dark-blue);
  margin-bottom: 30px;
}

.intro-favija-cta-button {
  display: inline-block;
  padding: 14px 35px;
  background-color: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-size: 15px;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.intro-favija-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--dark-blue);
  transition: var(--transition);
  z-index: -1;
}

.intro-favija-cta-button:hover {
  color: var(--white);
}

.intro-favija-cta-button:hover::before {
  width: 100%;
}

/* Service Card Specific Styles */
.intro-favija-service-card[data-service="visa"] {
  border-top: 3px solid var(--primary-blue);
}

.intro-favija-service-card[data-service="flight"] {
  border-top: 3px solid var(--dark-blue);
}

.intro-favija-service-card[data-service="tour"] {
  border-top: 3px solid var(--light-blue);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .intro-favija-section {
    padding: 80px 0;
  }

  .intro-favija-logo {
    font-size: 42px;
  }

  .intro-favija-description {
    font-size: 16px;
  }

  .intro-favija-cta h4 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .intro-favija-section {
    padding: 60px 0;
  }

  .intro-favija-logo {
    font-size: 36px;
    letter-spacing: 6px;
  }

  .intro-favija-tagline {
    font-size: 14px;
  }

  .intro-favija-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .intro-favija-service-card {
    margin-bottom: 30px;
    padding: 30px 25px;
  }

  .intro-favija-service-icon {
    width: 70px;
    height: 70px;
  }

  .intro-favija-service-title {
    font-size: 22px;
  }

  .intro-favija-cta {
    padding: 40px 30px;
  }

  .intro-favija-cta h4 {
    font-size: 22px;
  }

  .intro-favija-cta-button {
    padding: 12px 30px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .intro-favija-section {
    padding: 50px 0;
  }

  .intro-favija-logo {
    font-size: 32px;
    letter-spacing: 4px;
  }

  .intro-favija-divider {
    max-width: 250px;
  }

  .intro-favija-description {
    font-size: 14px;
  }

  .intro-favija-service-icon {
    width: 60px;
    height: 60px;
  }

  .intro-favija-service-icon i {
    font-size: 24px;
  }

  .intro-favija-service-title {
    font-size: 20px;
  }

  .intro-favija-cta {
    padding: 30px 20px;
  }

  .intro-favija-cta h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/* giới thiệu end */

/* dịch vụ start */

.hd-favija-section-tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 500;
}
.index .hd-favija-section-tag {
  width: 100%;
  text-align: center;
}

.hd-favija-section-title {
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hd-favija-section-divider {
  width: 60px;
  height: 2px;
  background-color: var(--primary-blue);
  margin-bottom: 25px;
}

.text-center .hd-favija-section-divider {
  margin-left: auto;
  margin-right: auto;
}

.hd-favija-section-description {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 30px;
  max-width: 800px;
}

.text-center .hd-favija-section-description {
  margin-left: auto;
  margin-right: auto;
}

/* Button Styles */
.hd-favija-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(106, 142, 174, 0.3);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hd-favija-btn:hover {
  background: var(--dark-blue);
  color: var(--white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hd-favija-btn.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.hd-favija-btn i {
  margin-left: 10px;
}

.hd-favija-btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  box-shadow: none;
}
.hd-favija-btn:hover {
  color: var(--white);
  background-color: var(--dark-blue);
}

/* Image Container Styles */
.hd-favija-image-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hd-favija-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.hd-favija-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(58, 90, 120, 0.1),
    rgba(58, 90, 120, 0.2)
  );
  pointer-events: none;
}

/* Section 1: Visa Services */
.hd-favija-visa-section {
  background-color: var(--white);
}

.hd-favija-visa-content {
  padding-right: 30px;
}

.hd-favija-visa-features {
  margin-bottom: 30px;
}

.hd-favija-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.hd-favija-feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(106, 142, 174, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.hd-favija-feature-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.hd-favija-feature-icon i {
  font-size: 20px;
  color: var(--primary-blue);
}

.hd-favija-feature-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--dark-blue);
}

.hd-favija-feature-text p {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--text-color);
}

.hd-favija-visa-image {
  position: relative;
}

.hd-favija-visa-icon {
  position: absolute;
  top: -25px;
  right: 30px;
  width: 80px;
  height: 80px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(106, 142, 174, 0.3);
  z-index: 2;
}

.hd-favija-visa-icon i {
  font-size: 32px;
  color: var(--white);
}

.hd-favija-visa-stats {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 15px 25px;
  display: flex;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hd-favija-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 25px;
}

.hd-favija-stat-item:last-child {
  margin-right: 0;
}

.hd-favija-stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--dark-blue);
}

.hd-favija-stat-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-blue);
}

/* Section 2: Flight Tickets */
.hd-favija-flight-section {
  background-color: var(--off-white);
  position: relative;
}

.hd-favija-flight-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(164, 193, 215, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  z-index: 0;
}

.hd-favija-flight-content {
  padding-left: 30px;
  position: relative;
  z-index: 1;
}

.hd-favija-flight-benefits {
  margin-bottom: 30px;
}

.hd-favija-benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.hd-favija-benefit-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(106, 142, 174, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.hd-favija-benefit-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.hd-favija-benefit-icon i {
  font-size: 16px;
  color: var(--primary-blue);
}

.hd-favija-benefit-item h4 {
  font-size: 16px;
  margin-bottom: 0;
  color: var(--dark-blue);
  font-weight: 500;
}

.hd-favija-flight-image {
  position: relative;
  z-index: 1;
}

.hd-favija-flight-icon {
  position: absolute;
  top: -25px;
  left: 30px;
  width: 80px;
  height: 80px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(106, 142, 174, 0.3);
  z-index: 2;
}

.hd-favija-flight-icon i {
  font-size: 32px;
  color: var(--white);
}

.hd-favija-flight-partners {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 15px 25px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hd-favija-flight-partners span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.hd-favija-partners-logos {
  display: flex;
  align-items: center;
}

.hd-favija-partner {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.hd-favija-partner:last-child {
  margin-right: 0;
}

.hd-favija-partner i {
  font-size: 12px;
  color: var(--primary-blue);
  margin-right: 5px;
}

/* Section 3: Featured Tours */
.hd-favija-tours-section {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.hd-favija-tours-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(164, 193, 215, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
}

.hd-favija-tours-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(164, 193, 215, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
}

.hd-favija-tours-slider {
  position: relative;
  z-index: 1;
}

/* Swiper Styles */
.hd-favija-swiper {
  overflow: visible;
  padding-bottom: 0px;
}

.hd-favija-tour-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hd-favija-tour-card.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.hd-favija-tour-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.hd-favija-tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-favija-tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(58, 90, 120, 0),
    rgba(58, 90, 120, 0.5)
  );
}

.hd-favija-tour-duration {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--dark-blue);
}

.hd-favija-tour-content {
  padding: 25px;
}

.hd-favija-tour-title {
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  color: var(--dark-blue);
  margin-bottom: 10px;
  font-weight: 500;
  display: inline-flex;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hd-favija-tour-title:hover {
  color: var(--primary-blue);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.hd-favija-tour-divider {
  width: 40px;
  height: 2px;
  background-color: var(--light-blue);
  margin-bottom: 15px;
}

.hd-favija-tour-description {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hd-favija-tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-top: 1px solid var(--light-gray);
  padding-top: 15px;
}

.hd-favija-tour-price {
  display: flex;
  flex-direction: column;
}

.hd-favija-tour-price span {
  font-size: 12px;
  color: var(--text-color);
}

.hd-favija-tour-price strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, -0.2239rem + 1.9104vw, 1.4rem);
  color: var(--dark-blue);
  font-weight: 600;
}

.hd-favija-tour-link {
  font-size: 12px;
  color: var(--primary-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.hd-favija-tour-link:hover {
  color: var(--dark-blue);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}

.hd-favija-tour-link i {
  margin-left: 5px;
  font-size: 10px;
}

/* Swiper Navigation */
.hd-favija-swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.hd-favija-swiper-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.hd-favija-swiper-button i {
  font-size: 14px;
  color: var(--dark-blue);
}

.hd-favija-swiper-button:hover {
  background-color: var(--primary-blue);
}

.hd-favija-swiper-button:hover i {
  color: var(--white);
}

.hd-favija-swiper-pagination {
  display: inline-flex;
  align-items: center;
  margin: 0 20px;
  justify-content: center;
  width: max-content !important;
}
.hd-favija-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--light-gray);
  opacity: 1;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.hd-favija-pagination .swiper-pagination-bullet-active {
  background: var(--primary-blue);
  width: 20px !important;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 991px) {
  section {
    padding: 80px 0;
  }

  .hd-favija-visa-content,
  .hd-favija-flight-content {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 50px;
  }

  .order-lg-1 {
    order: 2;
  }

  .order-lg-2 {
    order: 1;
  }
}

@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }

  .hd-favija-section-description {
    font-size: 15px;
  }

  .hd-favija-visa-stats,
  .hd-favija-flight-partners {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: -30px;
    z-index: 3;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .hd-favija-tour-card {
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  section {
    padding: 50px 0;
  }

  .hd-favija-btn {
    padding: 10px 25px;
    font-size: 13px;
  }

  .hd-favija-visa-icon,
  .hd-favija-flight-icon {
    width: 60px;
    height: 60px;
  }

  .hd-favija-visa-icon i,
  .hd-favija-flight-icon i {
    font-size: 24px;
  }

  .hd-favija-feature-item,
  .hd-favija-benefit-item {
    margin-bottom: 15px;
  }
}
.hd-favija-swiper-button.swiper-button-disabled {
  background: var(--light-gray);
  opacity: 0.5;
  pointer-events: none;
}

/* dịch vụ end */

/* quy trình start */
.hd-favija-section-tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 500;
}

.hd-favija-section-divider {
  width: 60px;
  height: 2px;
  background-color: var(--primary-blue);
  margin-bottom: 25px;
}

.text-center .hd-favija-section-divider {
  margin-left: auto;
  margin-right: auto;
}

.hd-favija-section-description {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 30px;
  max-width: 800px;
}

.text-center .hd-favija-section-description {
  margin-left: auto;
  margin-right: auto;
}

/* Button Styles */
.hd-favija-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(106, 142, 174, 0.3);
}

.hd-favija-btn i {
  margin-left: 10px;
}

.hd-favija-btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  box-shadow: none;
}

/* Section 4: Process Section */
.hd-favija-process-section {
  background-color: var(--off-white);
  position: relative;
}

.hd-favija-process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(164, 193, 215, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  z-index: 1;
  pointer-events: none;
}

.hd-favija-process-steps {
  position: relative;
  z-index: 1;
}

.hd-favija-process-step {
  position: relative;
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.hd-favija-process-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(106, 142, 174, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hd-favija-process-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.hd-favija-process-icon i {
  font-size: 28px;
  color: var(--primary-blue);
}

.hd-favija-process-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(106, 142, 174, 0.2);
  position: absolute;
  top: 20px;
  right: 20px;
  line-height: 1;
}

.hd-favija-process-title {
  font-size: 22px;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

.hd-favija-process-description {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 0;
}

/* Process Step Variations */
.hd-favija-process-step[data-step="1"] .hd-favija-process-icon {
  background-color: rgba(106, 142, 174, 0.1);
}

.hd-favija-process-step[data-step="2"] .hd-favija-process-icon {
  background-color: rgba(164, 193, 215, 0.2);
}

.hd-favija-process-step[data-step="3"] .hd-favija-process-icon {
  background-color: rgba(58, 90, 120, 0.1);
}

.hd-favija-process-step[data-step="4"] .hd-favija-process-icon {
  background-color: rgba(106, 142, 174, 0.15);
}

/* Section 5: Testimonials Section */
.hd-favija-testimonials-section {
  background-color: var(--white);
  position: relative;
}

.hd-favija-testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(164, 193, 215, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 0;
}

.hd-favija-testimonials-slider {
  position: relative;
  z-index: 1;
}

.hd-favija-testimonials-swiper {
  overflow: visible;
  padding-bottom: 0px;
}

.hd-favija-testimonial-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hd-favija-testimonial-quote {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: var(--light-blue);
  opacity: 0.5;
}

.hd-favija-testimonial-content {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.hd-favija-testimonial-content p {
  font-size: 16px;
  color: var(--text-color);
  font-style: italic;
  line-height: 1.8;
}

.hd-favija-testimonial-author {
  display: flex;
  align-items: center;
}

.hd-favija-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--light-blue);
}

.hd-favija-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-favija-author-info h4 {
  font-size: 18px;
  color: var(--dark-blue);
  margin-bottom: 5px;
  font-weight: 600;
}

.hd-favija-author-info p {
  font-size: 14px;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.hd-favija-author-rating {
  display: flex;
  align-items: center;
}

.hd-favija-author-rating i {
  color: #ffc107;
  font-size: 12px;
  margin-right: 2px;
}

/* Testimonials Navigation */
.hd-favija-testimonials-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.hd-favija-swiper-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.hd-favija-swiper-button i {
  font-size: 14px;
  color: var(--dark-blue);
}

.hd-favija-testimonials-pagination {
  display: flex;
  align-items: center;
  margin: 0 20px;
}

/* Section 6: News & Promotions */
.hd-favija-news-section {
  background-color: var(--off-white);
  position: relative;
}

.hd-favija-news-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(164, 193, 215, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  z-index: -1;
  pointer-events: none;
}

.hd-favija-news-grid {
  position: relative;
  z-index: 1;
}

.hd-favija-news-featured {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.hd-favija-news-image {
  position: relative;
  /* height: 250px; */
  overflow: hidden;
}

.hd-favija-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hd-favija-news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(58, 90, 120, 0),
    rgba(58, 90, 120, 0.5)
  );
}

.hd-favija-news-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  z-index: 1;
}

.hd-favija-news-content {
  padding: 25px;
}

.hd-favija-news-date {
  font-size: 14px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.hd-favija-news-title {
  font-size: clamp(0.9rem, 0.8385rem + 0.3077vw, 1.1rem);
  font-family: "Montserrat", sans-serif;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.hd-favija-news-excerpt {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hd-favija-news-link {
  font-size: 14px;
  color: var(--primary-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.hd-favija-news-link i {
  margin-left: 5px;
  font-size: 12px;
}

.hd-favija-news-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin-bottom: 30px;
}

.hd-favija-news-card .hd-favija-news-image {
  /* height: 180px; */
}

.hd-favija-news-card .hd-favija-news-content {
  padding: 20px;
}

.hd-favija-news-card .hd-favija-news-title {
  font-size: 18px;
  margin-bottom: 15px;
}

/* Section 7: Map & Quick Contact */
.hd-favija-contact-section {
  background-color: var(--white);
  position: relative;
}

.hd-favija-map-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: var(--white);
  /* margin-bottom: 30px; */
  display: flex;
  flex-direction: column;
}

.hd-favija-map-tabs {
  display: flex;
  background-color: var(--white);
  border-bottom: 1px solid var(--light-gray);
}

.hd-favija-map-tab {
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hd-favija-map-tab.active {
  color: var(--primary-blue);
  border-bottom: 2px solid var(--primary-blue);
}

.hd-favija-map-wrapper {
  position: relative;
  /* height: 450px; */
}

.hd-favija-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hd-favija-map.active {
  opacity: 1;
  visibility: visible;
}

.hd-favija-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.hd-favija-map-frame {
  overflow: hidden;
  min-height: 100%;
}
.hd-favija-map-frame iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: all !important;
}
.hd-favija-quick-contact {
  height: 100%;
}

.hd-favija-contact-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.hd-favija-contact-title {
  font-size: 24px;
  color: var(--dark-blue);
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
}

.hd-favija-contact-info {
  margin-bottom: 30px;
}

.hd-favija-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.hd-favija-contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(106, 142, 174, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.hd-favija-contact-icon i {
  font-size: 16px;
  color: var(--primary-blue);
}

.hd-favija-contact-text h4 {
  font-size: 16px;
  color: var(--dark-blue);
  margin-bottom: 5px;
  font-weight: 600;
}
.hd-favija-contact-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.hd-favija-contact-text p {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 5px;
}

.hd-favija-contact-social h4 {
  font-size: 16px;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.hd-favija-social-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.hd-favija-social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(106, 142, 174, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.hd-favija-social-icon:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hd-favija-social-icon.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.hd-favija-messenger-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hd-favija-messenger-link {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: rgba(106, 142, 174, 0.1);
  border-radius: 30px;
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.hd-favija-messenger-link i {
  margin-right: 8px;
}

.hd-favija-messenger-link:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

/* Section 8: Footer */
.hd-favija-footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
}

.hd-favija-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(58, 90, 120, 0.6) 0%,
    rgba(58, 90, 120, 0) 50%
  );
  z-index: 0;
}

.hd-favija-footer-about {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.hd-favija-footer-logo img {
  width: 100%;
  height: 100%;
  max-width: 140px;
  max-height: 140px;
  object-fit: contain;
}

.hd-favija-footer-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
}

.hd-favija-footer-social {
  display: flex;
}

.hd-favija-footer-social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.hd-favija-footer-social-icon:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.hd-favija-footer-links {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.hd-favija-footer-title {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.hd-favija-footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-blue);
}

.hd-favija-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hd-favija-footer-menu li {
  margin-bottom: 12px;
}

.hd-favija-footer-menu li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hd-favija-footer-menu li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.hd-favija-footer-contact {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.hd-favija-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hd-favija-footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}
.hd-favija-footer-contact-list a:hover {
  color: var(--white);
}

.hd-favija-footer-contact-list li {
  display: flex;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.hd-favija-footer-contact-list li i {
  margin-right: 15px;
  color: var(--primary-blue);
  font-size: 16px;
  margin-top: 3px;
}

.hd-favija-footer-contact-list li div {
  flex: 1;
}

.hd-favija-footer-contact-list li strong {
  display: block;
  color: var(--white);
  margin-bottom: 5px;
}

.hd-favija-footer-contact-list li p {
  margin-bottom: 5px;
  font-size: 14px;
}

.hd-favija-footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  margin-top: 50px;
}

.hd-favija-copyright,
.hd-favija-copyright a {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.75rem, 0.7346rem + 0.0769vw, 0.8rem);
  margin-bottom: 0;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.hd-favija-copyright a:hover {
  color: var(--white);
}

.hd-favija-footer-payment {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hd-favija-footer-payment span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-right: 15px;
}

.hd-favija-payment-icons {
  display: flex;
}

.hd-favija-payment-icons i {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  section {
    padding: 80px 0;
  }

  .hd-favija-process-step {
    margin-bottom: 30px;
  }

  .hd-favija-testimonial-card {
    padding: 30px;
  }

  .hd-favija-quick-contact {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }

  .hd-favija-section-description {
    font-size: 15px;
  }

  .hd-favija-process-icon {
    width: 60px;
    height: 60px;
  }

  .hd-favija-process-icon i {
    font-size: 24px;
  }

  .hd-favija-process-number {
    font-size: 36px;
  }

  .hd-favija-testimonial-card {
    padding: 25px;
  }

  .hd-favija-testimonial-content p {
    font-size: 15px;
  }

  .hd-favija-author-avatar {
    width: 50px;
    height: 50px;
  }

  .hd-favija-news-image {
    /* height: 200px; */
  }

  .hd-favija-news-card .hd-favija-news-image {
    /* height: 160px; */
  }

  .hd-favija-map-tab {
    padding: 12px 15px;
    font-size: 13px;
  }

  .hd-favija-footer-payment {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

@media (max-width: 575px) {
  section {
    padding: 50px 0;
  }

  .hd-favija-btn {
    padding: 10px 25px;
    font-size: 13px;
  }

  .hd-favija-process-step {
    padding: 25px;
  }

  .hd-favija-process-title {
    font-size: 20px;
  }

  .hd-favija-testimonial-card {
    padding: 20px;
  }

  .hd-favija-news-title {
    font-size: 20px;
  }

  .hd-favija-news-card .hd-favija-news-title {
    font-size: 16px;
  }

  .hd-favija-map-wrapper {
    height: 300px;
  }

  .hd-favija-contact-card {
    padding: 25px;
  }

  .hd-favija-footer {
    padding: 60px 0 0;
  }

  .hd-favija-footer-bottom {
    text-align: center;
  }

  .hd-favija-footer-payment {
    justify-content: center;
  }
}

/* quy trình end */

/* khách hàng start */
.hd-favija-pagination.hd-favija-testimonials-pagination {
  display: inline-flex;
  justify-content: center;
  width: max-content;
}
/* khách hàng end */

/* trang chủ end */

/* footer start */
.hd-favija-footer-contact-list img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transform: translateY(2px);
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -o-transform: translateY(2px);
}
.hd-favija-footer-contact-list li strong {
  font-size: 1rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
/* footer end */

/* trang sản phẩm chi tiết start */
.hd-visa-du-lich-day {
  display: inline-block;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 3px;
  /* margin-right: 5px; */
  font-size: 12px;
}
.vh-tourist-show-more {
  background-color: transparent;
  color: var(--primary-blue);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  padding: 0;
}

.vh-tourist-form {
  position: sticky;
  top: 62px;
}

.vh-tourist-container {
  overflow: visible;
}
.san-pham-detail .vh-tourist-container {
  padding-top: 90px;
}
/* Card Style */
.vh-tourist-card {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 30px;
  opacity: 0;
  transform: translateY(20px);
  top: 0px;
  position: relative !important;
}

/* Header Styles */
.vh-tourist-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--background-color);
  box-shadow: var(--shadow);
}

.vh-tourist-logo img {
  height: 40px;
}

.vh-tourist-menu {
  display: flex;
  gap: 30px;
  margin-bottom: 0;
}

.vh-tourist-menu li a {
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.vh-tourist-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: var(--transition);
}

.vh-tourist-menu li a:hover::after,
.vh-tourist-menu li a.vh-tourist-active::after {
  width: 100%;
}

.vh-tourist-menu-toggle {
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.vh-tourist-hero {
  height: 600px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-color: var(--background-color);
  border-radius: var(--border-radius);
}

.vh-tourist-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  z-index: 2;
  color: white;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.vh-tourist-hero-content h2 {
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
  margin-bottom: 15px;
  opacity: 0;
}

.vh-tourist-hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 600px;
  opacity: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vh-tourist-hero-badges {
  display: flex;
  gap: 20px;
  opacity: 0;
}

.vh-tourist-hero-badges span {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vh-tourist-hero-slider {
  height: 100%;
  width: 100%;
}

.vh-tourist-slider-container {
  height: 100%;
  position: relative;
}

.vh-tourist-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.vh-tourist-slide.active {
  opacity: 1;
}

.vh-tourist-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vh-tourist-slider-controls {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
}

.vh-tourist-prev,
.vh-tourist-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
}

.vh-tourist-prev:hover,
.vh-tourist-next:hover {
  background-color: var(--primary-blue);
}

.vh-tourist-slider-dots {
  display: flex;
  gap: 8px;
}

.vh-tourist-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.vh-tourist-dot.active {
  background-color: var(--primary-blue);
  width: 20px;
  border-radius: 10px;
}

/* Overview Section */
.vh-tourist-overview h2 {
  margin-bottom: 25px;
  color: var(--dark-blue);
  font-size: 24px;
}

.vh-tourist-overview-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.vh-tourist-overview-detail i {
  font-size: 24px;
  color: var(--primary-blue);
}

.vh-tourist-overview-detail h4 {
  font-size: 14px;
  color: var(--dark-blue);
  margin-bottom: 5px;
  font-family: "Montserrat", lato-m;
  font-weight: 600;
}

.vh-tourist-overview-detail p {
  font-weight: 400;
  font-size: clamp(0.8rem, 0.7692rem + 0.1538vw, 0.9rem);
}

.vh-tourist-overview-description {
  line-height: 1.8;
}

/* Pricing Section */
.vh-tourist-price-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vh-tourist-price-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark-blue);
}

.vh-tourist-price {
  margin-bottom: 20px;
}

.vh-tourist-amount {
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
  font-weight: 700;
  color: var(--primary-blue);
}

.vh-tourist-currency {
  font-size: 18px;
  color: var(--dark-gray);
  margin-left: 5px;
}

.vh-tourist-price-features {
  margin-bottom: 20px;
}

.vh-tourist-price-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vh-tourist-price-features li i {
  color: var(--primary-blue);
}

.vh-tourist-cta-button {
  background-color: var(--primary-blue);
  color: white;
  padding: 15px 0;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
  transition: var(--transition);
  width: 100%;
}

.vh-tourist-cta-button:hover {
  background-color: var(--dark-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vh-tourist-contact-info a {
  color: var(--primary-blue);
  transition: color 0.3s ease;
}

.vh-tourist-contact-info a:hover {
  color: var(--dark-blue);
}

.vh-tourist-contact-info {
  text-align: center;
  font-size: 14px;
  color: var(--dark-gray);
}

.vh-tourist-contact-info i {
  margin-right: 5px;
}

/* Highlights Section */
.vh-tourist-highlights h2 {
  color: var(--dark-blue);
  font-size: 24px;
}

.vh-tourist-highlight-card {
  text-align: center;
  /* padding: 20px; */
  border-radius: var(--border-radius);
  background-color: var(--light-gray);
  transition: var(--transition);
  height: 100%;
}

.vh-tourist-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.vh-tourist-highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
}

.vh-tourist-highlight-icon img {
  max-width: 30px;
}

.vh-tourist-highlight-card h4 {
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-family: "Montserrat", lato-m;
  font-weight: 500;
}

.vh-tourist-highlight-card p {
  font-size: 12px;
  color: var(--dark-gray);
}

/* Itinerary Section */
.vh-tourist-itinerary h2 {
  margin-bottom: 25px;
  color: var(--dark-blue);
  font-size: 24px;
}

.vh-tourist-itinerary-timeline {
  position: relative;
}

.vh-tourist-itinerary-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background-color: var(--medium-gray);
}

.vh-tourist-day {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.vh-tourist-day-marker {
  position: relative;
  z-index: 1;
  margin-right: 30px;
}

.vh-tourist-day-marker span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: white;
  font-weight: 600;
  font-size: 11px;
  transform: translateX(-3px);
}

.vh-tourist-day-content {
  flex: 1;
}

.vh-tourist-day-content h4 {
  margin-bottom: 10px;
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  font-family: "Montserrat", lato-m;
  font-weight: 600;
}

.vh-tourist-day-content p {
  margin-bottom: 15px;
}

.vh-tourist-day-content ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.vh-tourist-day-content ul li {
  list-style-type: disc;
  margin-bottom: 5px;
  color: var(--dark-gray);
}

.vh-tourist-collapsed {
  display: none;
}

.vh-tourist-show-more {
  background-color: transparent;
  color: var(--primary-blue);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  padding: 0;
  border: none;
}

.vh-tourist-show-more:hover {
  color: var(--dark-blue);
}

/* Gallery Section */
.vh-tourist-gallery h2 {
  color: var(--dark-blue);
  font-size: clamp(1.2rem, 1.1077rem + 0.4615vw, 1.5rem);
  font-family: "Montserrat", lato-m;
  font-weight: 600;
}

.vh-tourist-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  height: 100%;
  max-height: 250px;
}

.vh-tourist-gallery-item-large {
  height: 100%;
}

.vh-tourist-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vh-tourist-gallery-item:hover img {
  transform: scale(1.05);
}

.vh-tourist-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.vh-tourist-gallery-item:hover .vh-tourist-gallery-overlay {
  opacity: 1;
}

/* Reviews Section */
.vh-tourist-reviews h2 {
  margin-bottom: 25px;
  color: var(--dark-blue);
  font-size: 24px;
}

.vh-tourist-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vh-tourist-rating-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.vh-tourist-stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 5px;
}

.vh-tourist-rating-count {
  font-size: 14px;
  color: var(--dark-gray);
}

.vh-tourist-rating-bars {
  flex: 1;
}

.vh-tourist-rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.vh-tourist-rating-bar span {
  width: 60px;
  font-size: 14px;
}

.vh-tourist-rating-bar span:last-child {
  width: 40px;
  text-align: right;
}

.vh-tourist-bar-container {
  flex: 1;
  height: 8px;
  background-color: var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 10px;
}

.vh-tourist-bar {
  height: 100%;
  background-color: var(--primary-blue);
}

.vh-tourist-review {
  background-color: var(--light-gray);
  border-radius: var(--border-radius);
  padding: 20px;
}

.vh-tourist-reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.vh-tourist-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.vh-tourist-reviewer-info h4 {
  margin-bottom: 5px;
}

.vh-tourist-review-stars {
  color: #ffc107;
  font-size: 14px;
}

.vh-tourist-review-date {
  color: var(--dark-gray);
  font-size: 14px;
}

.vh-tourist-review-text {
  line-height: 1.7;
}

.vh-tourist-load-more {
  background-color: transparent;
  border: 1px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  display: block;
  margin: 0 auto;
  transition: var(--transition);
}

.vh-tourist-load-more:hover {
  background-color: var(--primary-blue);
  color: white;
}

/* FAQ Section */
.vh-tourist-faq h2 {
  margin-bottom: 25px;
  color: var(--dark-blue);
  font-size: 24px;
}

.vh-tourist-accordion-item {
  border-bottom: 1px solid var(--medium-gray);
}

.vh-tourist-accordion-header {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.vh-tourist-accordion-header h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  font-family: "Montserrat", lato-m;
}

.vh-tourist-accordion-content {
  padding: 0 0 15px;
  display: none;
}

.vh-tourist-accordion-content p {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* Contact Form */
.vh-tourist-contact h2 {
  margin-bottom: 25px;
  color: var(--dark-blue);
  font-size: 24px;
}

.vh-tourist-form-group {
  margin-bottom: 15px;
}

.vh-tourist-form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.vh-tourist-submit-button {
  background-color: var(--primary-blue);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
}

.vh-tourist-submit-button:hover {
  background-color: var(--dark-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.vh-tourist-footer {
  background-color: var(--dark-blue);
  color: white;
}

.vh-tourist-footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.vh-tourist-footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-blue);
}

.vh-tourist-footer-column p,
.vh-tourist-footer-column li {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.8;
}

.vh-tourist-footer-column a {
  color: white;
}

.vh-tourist-footer-column a:hover {
  color: var(--primary-blue);
  opacity: 1;
}

.vh-tourist-footer-column i {
  margin-right: 10px;
}

.vh-tourist-social-icons {
  display: flex;
  gap: 15px;
}

.vh-tourist-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.vh-tourist-social-icons a:hover {
  background-color: var(--primary-blue);
  transform: translateY(-3px);
}

.vh-tourist-footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 14px;
  opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .vh-tourist-container {
    overflow: hidden;
  }

  .vh-tourist-hero {
    height: 500px;
  }

  .vh-tourist-hero-content p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .vh-tourist-hero {
    height: 400px;
  }

  .vh-tourist-hero-badges {
    flex-wrap: wrap;
  }

  .vh-tourist-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .vh-tourist-hero-content p {
    font-size: 16px;
  }
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-blue);
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background: var(--light-gray);
  border: 1px solid var(--off-white);
  color: var(--text-color);
  padding: 0.75rem;
  border-radius: 10px;
  resize: none;
}
/* trang sản phẩm chi tiết end */

/* trang sản phẩm start */

/* Hero Section Styles */

.hd-favija-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hd-favija-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-favija-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
}

.hd-favija-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 100px 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hd-favija-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hd-favija-breadcrumb a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
}

.hd-favija-breadcrumb a:hover {
  opacity: 1;
}

.hd-favija-breadcrumb-separator {
  margin: 0 10px;
  font-size: 10px;
  opacity: 0.6;
}

.hd-favija-breadcrumb-current {
  color: var(--white);
  font-size: 14px;
}

.hd-favija-page-title {
  font-size: clamp(1.8rem, 1.4308rem + 1.8462vw, 3rem);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hd-favija-section-divider {
  width: 60px;
  height: 2px;
  background-color: var(--white);
  margin: 0 auto 25px;
  position: relative;
}

.hd-favija-page-description {
  font-size: clamp(0.8rem, 0.7385rem + 0.3077vw, 1rem);
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}

/* Category Filter Styles */
.hd-favija-category-filter-section {
  padding: 50px 0 30px;
  background-color: var(--white);
  position: relative;
}

.hd-favija-category-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.hd-favija-category-btn {
  padding: 12px 25px;
  background-color: transparent;
  border: 1px solid var(--light-gray);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

.hd-favija-category-btn.active {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

/* Tours Grid Styles */
.hd-favija-tours-grid-section {
  padding: 30px 0 80px;
  background-color: var(--off-white);
  position: relative;
}

.hd-favija-tour-item {
  margin-bottom: 30px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hd-favija-tour-item.hidden {
  display: none;
}

.hd-favija-tour-item.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.hd-favija-load-more-btn {
  margin-top: 30px;
  padding: 12px 30px;
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(106, 142, 174, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.hd-favija-load-more-btn span {
  margin-right: 10px;
}

.hd-favija-load-more-btn i {
  display: none;
}

.hd-favija-load-more-btn.loading span {
  opacity: 0.7;
}

.hd-favija-load-more-btn.loading i {
  display: inline-block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Newsletter Section Styles */
.hd-favija-newsletter-section {
  padding: 60px 0;
  background-color: var(--primary-blue);
  position: relative;
  overflow: hidden;
}

.hd-favija-newsletter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(58, 90, 120, 0.6) 0%,
    rgba(106, 142, 174, 0) 50%
  );
  z-index: 0;
}

.hd-favija-newsletter-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hd-favija-newsletter-content h2 {
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
  margin-bottom: 15px;
  font-weight: 600;
}

.hd-favija-newsletter-content p {
  font-size: 16px;
  margin-bottom: 0;
  opacity: 0.9;
}

.hd-favija-newsletter-form {
  position: relative;
  z-index: 1;
}

.hd-favija-newsletter-form .input-group {
  background-color: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hd-favija-newsletter-form .form-control {
  border: none;
  padding: 15px 20px;
  font-size: 14px;
  background-color: transparent;
}

.hd-favija-newsletter-form .form-control:focus {
  box-shadow: none;
}

.hd-favija-newsletter-form .hd-favija-btn {
  border-radius: 0 30px 30px 0;
  padding: 12px 25px;
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: none;
}

.hd-favija-newsletter-form .hd-favija-btn i {
  margin-left: 8px;
}

/* trang sản phẩm end */

/* trang tin tức start */

/* Filter Section Styles */
.hd-favija-filter-section {
  padding: 30px 0;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 2;
}

.hd-favija-filter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hd-favija-filter-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-blue);
  margin-right: 15px;
  margin-bottom: 10px;
}

.hd-favija-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-right: auto;
}

.hd-favija-filter-btn {
  background-color: transparent;
  border: none;
  padding: 8px 15px;
  margin-right: 5px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-color);
  border-radius: 20px;
  cursor: pointer;
}

.hd-favija-filter-btn.active {
  background-color: var(--primary-blue);
  color: var(--white);
}

.hd-favija-search-container {
  position: relative;
  margin-bottom: 10px;
}

.hd-favija-search-input {
  padding: 8px 40px 8px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  font-size: 14px;
  width: 220px;
  background-color: var(--white);
}

.hd-favija-search-input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.hd-favija-search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  color: var(--primary-blue);
  cursor: pointer;
  padding: 5px;
}

/* News List Section Styles */
.hd-favija-news-list-section {
  padding: 60px 0;
  position: relative;
}

.hd-favija-news-grid {
  margin-bottom: 40px;
}

.hd-favija-news-share {
  display: flex;
  align-items: center;
}

.hd-favija-news-share span {
  font-size: 14px;
  color: var(--text-color);
  margin-right: 10px;
}

.hd-favija-share-icon {
  width: 30px;
  height: 30px;
  background-color: rgba(106, 142, 174, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.hd-favija-share-icon:hover {
  background-color: var(--dark-blue);
  color: var(--white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

/* Pagination Styles */
.hd-favija-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.hd-favija-pagination-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  font-size: 14px;
  color: var(--text-color);
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hd-favija-pagination-btn.active {
  background-color: var(--primary-blue);
  color: var(--white);
}

.hd-favija-pagination-next {
  font-size: 12px;
}

/* Sidebar Styles */
.hd-favija-sidebar {
  position: relative;
}

.hd-favija-sidebar-widget {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hd-favija-widget-title {
  font-size: 22px;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

.hd-favija-widget-divider {
  width: 40px;
  height: 2px;
  background-color: var(--primary-blue);
  margin-bottom: 25px;
}

/* Popular Posts Widget */
.hd-favija-popular-posts {
  display: flex;
  flex-direction: column;
}

.hd-favija-popular-post {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}

.hd-favija-popular-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.hd-favija-popular-post-image {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.hd-favija-popular-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-favija-popular-post-content h4 {
  font-size: 16px;
  color: var(--dark-blue);
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.hd-favija-popular-post-meta {
  font-size: 12px;
  color: var(--primary-blue);
}

.hd-favija-popular-post-meta i {
  margin-right: 5px;
}

/* Categories Widget */
.hd-favija-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hd-favija-categories-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--light-gray);
}

.hd-favija-categories-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.hd-favija-categories-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
}

.hd-favija-categories-list li a span {
  color: var(--primary-blue);
  font-size: 12px;
  background-color: rgba(106, 142, 174, 0.1);
  padding: 2px 8px;
  border-radius: 15px;
}

/* Newsletter Widget */
.hd-favija-newsletter p {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 20px;
}

.hd-favija-form-group {
  margin-bottom: 15px;
}

.hd-favija-form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  font-size: 14px;
  background-color: var(--white);
}

.hd-favija-form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
}

/* Tags Widget */
.hd-favija-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hd-favija-tag {
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(106, 142, 174, 0.1);
  color: var(--primary-blue);
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
}
.tin-tuc .hd-favija-header {
  position: fixed;
}
body.tin-tuc {
  padding-top: 110px;
}
.tin-tuc .hd-favija-news-featured-special .hd-favija-news-image {
  height: 100%;
}
.tin-tuc .hd-favija-btn {
  margin-bottom: 15px;
  padding: 10px 13px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.tin-tuc .hd-favija-news-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tin-tuc .hd-favija-btn:hover {
  background-color: var(--dark-blue);
  color: var(--white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hd-favija-news-des {
  display: none;
}
.tin-tuc .hd-favija-news-des {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.8rem;
  color: var(--text-color) !important;
}
.hd-favija-news-item-mini .hd-favija-news-title,
.col-md-6 .hd-favija-news-title {
  font-size: clamp(0.8rem, 0.7692rem + 0.1538vw, 0.9rem);
}
.tin-tuc .hd-favija-newsletter-form .hd-favija-btn {
  width: max-content;
}
.tin-tuc .hd-favija-form-group .hd-favija-form-control,
.tin-tuc-detail .hd-favija-form-group .hd-favija-form-control {
  flex: 1;
  height: 100%;
  width: 100%;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.tin-tuc .hd-favija-form-group,
.tin-tuc-detail .hd-favija-form-group {
  display: contents;
}
.tin-tuc .hd-favija-news-list-section {
  padding-top: 30px;
}
.hd-favija-news-image-box {
  overflow: hidden;
}
.hd-favija-news-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
.hd-favija-news-image:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}
/* trang tin tức end */

/* trang tin tức detail start */
/* Hero Section Styles */

.hd-favija-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hd-favija-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-favija-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
}

.hd-favija-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 100px 0;
  padding-top: 150px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hd-favija-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hd-favija-breadcrumb a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
}

.hd-favija-breadcrumb a:hover {
  opacity: 1;
}

.hd-favija-breadcrumb-separator {
  margin: 0 10px;
  font-size: 10px;
  opacity: 0.6;
}

.hd-favija-breadcrumb-current {
  color: var(--white);
  font-size: 14px;
}

.hd-favija-article-title {
  font-size: clamp(1.3rem, 1.0846rem + 1.0769vw, 2rem);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hd-favija-article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hd-favija-article-author {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 10px;
}

.hd-favija-article-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  border: 2px solid var(--white);
}

.hd-favija-article-date,
.hd-favija-article-category {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 10px;
}

.hd-favija-article-date i,
.hd-favija-article-category i {
  margin-right: 8px;
  font-size: 14px;
}

/* Article Section Styles */
.hd-favija-article-section {
  padding: 60px 0;
  position: relative;
}

.hd-favija-article-content {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.hd-favija-article-intro {
  font-size: 20px;
  color: var(--dark-blue);
  font-weight: 500;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--light-gray);
  font-family: "Cormorant Garamond", serif;
  line-height: 1.6;
}

.hd-favija-article-paragraph {
  margin-bottom: 30px;
}

.hd-favija-article-paragraph h2 {
  font-size: 28px;
  color: var(--dark-blue);
  margin-bottom: 20px;
  font-weight: 600;
}

.hd-favija-article-paragraph p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}
.hd-favija-article-paragraph a {
  color: var(--primary-blue);
  text-decoration: underline;
}
.hd-favija-article-paragraph a:hover {
  color: var(--dark-blue);
  text-decoration: underline;
}

.hd-favija-article-image {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hd-favija-article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hd-favija-image-caption {
  background-color: var(--off-white);
  padding: 15px;
  font-size: 14px;
  color: var(--text-color);
  text-align: center;
  font-style: italic;
}

.hd-favija-article-quote {
  margin: 40px 0;
  padding: 30px;
  background-color: rgba(106, 142, 174, 0.05);
  border-left: 4px solid var(--primary-blue);
  border-radius: 0 10px 10px 0;
}

.hd-favija-article-quote blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--dark-blue);
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.hd-favija-article-quote cite {
  font-size: 14px;
  color: var(--primary-blue);
  font-style: normal;
  display: block;
  text-align: right;
}

.hd-favija-article-features {
  margin-bottom: 30px;
}

.hd-favija-feature-item {
  display: flex;
  margin-bottom: 30px;
  background-color: var(--off-white);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hd-favija-feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(106, 142, 174, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.hd-favija-feature-icon i {
  font-size: 24px;
  color: var(--primary-blue);
}

.hd-favija-feature-content h3 {
  font-size: 20px;
  color: var(--dark-blue);
  margin-bottom: 10px;
  font-weight: 600;
}

.hd-favija-feature-content p {
  font-size: 14px;
  margin-bottom: 0;
}

.hd-favija-article-list {
  padding-left: 20px;
  margin-bottom: 30px;
}

.hd-favija-article-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 5px;
}

.hd-favija-article-list li strong {
  color: var(--dark-blue);
  font-weight: 600;
}

.hd-favija-article-cta {
  background-color: rgba(106, 142, 174, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.hd-favija-article-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(164, 193, 215, 0.2) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  z-index: 0;
}

.hd-favija-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hd-favija-cta-content h3 {
  font-size: 24px;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

.hd-favija-cta-content p {
  margin-bottom: 20px;
}

.hd-favija-article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--light-gray);
  gap: 10px;
}

.hd-favija-tag-label {
  font-weight: 500;
  margin-right: 15px;
  color: var(--dark-blue);
}

.hd-favija-tag {
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(106, 142, 174, 0.1);
  color: var(--primary-blue);
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hd-favija-tag:hover {
  background: var(--dark-blue);
  color: var(--white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hd-favija-article-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--light-gray);
}

.hd-favija-share-label {
  font-weight: 500;
  margin-right: 15px;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.hd-favija-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hd-favija-share-button {
  width: 40px;
  height: 40px;
  background-color: rgba(106, 142, 174, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.hd-favija-share-button:hover {
  background: var(--dark-blue);
  color: var(--white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.hd-favija-article-author-bio {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
  padding: 30px;
  background-color: var(--off-white);
  border-radius: 10px;
}

.hd-favija-author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
  border: 3px solid var(--light-blue);
}

.hd-favija-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-favija-author-info h3 {
  font-size: 22px;
  color: var(--dark-blue);
  margin-bottom: 5px;
  font-weight: 600;
}

.hd-favija-author-role {
  font-size: 14px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.hd-favija-author-description {
  font-size: 14px;
  margin-bottom: 15px;
}

.hd-favija-author-social {
  display: flex;
}

.hd-favija-author-social a {
  width: 30px;
  height: 30px;
  background-color: rgba(106, 142, 174, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 12px;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}
.hd-favija-author-social a:hover {
  background: var(--dark-blue);
  color: var(--white);
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}
/* Sidebar Styles */
.hd-favija-sidebar {
  position: sticky;
  top: 100px;
}

.hd-favija-sidebar-widget {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hd-favija-widget-title {
  font-size: 22px;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

.hd-favija-widget-divider {
  width: 40px;
  height: 2px;
  background-color: var(--primary-blue);
  margin-bottom: 25px;
}

/* Tags Widget */
.hd-favija-tags {
  display: flex;
  flex-wrap: wrap;
}

/* Contact Widget */
.hd-favija-contact-widget p {
  font-size: 14px;
  margin-bottom: 20px;
}

.hd-favija-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.hd-favija-contact-item i {
  width: 40px;
  height: 40px;
  background-color: rgba(106, 142, 174, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-blue);
}

/* Related Articles Section */
.hd-favija-related-section {
  padding: 60px 0;
  background-color: var(--white);
  position: relative;
}

.hd-favija-related-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(164, 193, 215, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  z-index: 0;
  pointer-events: none;
}

.hd-favija-section-title {
  font-size: 32px;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* trang tin tức detail end */

/* trang liên hệ start */
/* Contact Information Section Styles */
.hd-favija-contact-info-section {
  padding: 80px 0 50px;
  position: relative;
  background-color: var(--white);
  padding-top: 40px;
}

.hd-favija-contact-info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(164, 193, 215, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  z-index: 0;
}

.hd-favija-contact-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  height: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.hd-favija-contact-card.gsap-animating {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.hd-favija-contact-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.hd-favija-contact-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(106, 142, 174, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.hd-favija-contact-icon i {
  font-size: 24px;
  color: var(--primary-blue);
}

.hd-favija-contact-card-header h3 {
  font-size: 24px;
  color: var(--dark-blue);
  margin-bottom: 0;
  font-weight: 600;
}

.hd-favija-contact-card-body p {
  margin-bottom: 20px;
  font-size: 16px;
}

.hd-favija-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.hd-favija-contact-item i {
  width: 36px;
  height: 36px;
  background-color: rgba(106, 142, 174, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.hd-favija-hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-gray);
}

.hd-favija-hours-item:last-child {
  border-bottom: none;
}

.hd-favija-day {
  font-weight: 500;
  color: var(--dark-blue);
}

.hd-favija-note {
  margin-top: 20px;
  font-size: 14px;
  font-style: italic;
  color: var(--text-color);
  opacity: 0.8;
}

.hd-favija-emergency {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.hd-favija-emergency h4 {
  font-size: 18px;
  color: var(--dark-blue);
  margin-bottom: 10px;
  font-weight: 600;
}

.hd-favija-emergency p {
  margin-bottom: 10px;
  font-size: 14px;
}

.hd-favija-emergency span {
  font-weight: 500;
  color: var(--primary-blue);
  font-size: 16px;
}

/* Contact Form Section Styles */
.hd-favija-contact-form-section {
  padding: 50px 0 80px;
  background-color: var(--off-white);
  position: relative;
}

.hd-favija-contact-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(164, 193, 215, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  z-index: 0;
}

.hd-favija-form-content {
  position: relative;
  z-index: 1;
  padding: 40px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.hd-favija-section-title {
  font-size: 32px;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

.hd-favija-section-divider {
  width: 60px;
  height: 2px;
  background-color: var(--primary-blue);
  margin-bottom: 25px;
}

.hd-favija-section-description {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 30px;
}

.hd-favija-contact-form {
  margin-top: 30px;
}

.hd-favija-form-group {
  margin-bottom: 20px;
}

.hd-favija-form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-blue);
}

.hd-favija-required {
  color: #dc3545;
}

.hd-favija-form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  font-size: 14px;
  background-color: var(--white);
  transition: border-color 0.3s ease;
}

.hd-favija-form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.form-check-label {
  font-size: 14px;
}

.form-check-label a {
  color: var(--primary-blue);
  text-decoration: none;
}

.hd-favija-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(106, 142, 174, 0.3);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.hd-favija-btn i {
  margin-left: 10px;
}

.hd-favija-map-wrapper {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* FAQ Section Styles */
.hd-favija-faq-section {
  padding: 80px 0;
  background-color: var(--white);
  position: relative;
  z-index: 1;
}

.hd-favija-faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(164, 193, 215, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  z-index: 0;
  pointer-events: none;
}

.hd-favija-accordion {
  position: relative;
  z-index: 1;
}

.hd-favija-accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: var(--white);
}

.hd-favija-accordion-header {
  margin: 0;
}

.hd-favija-accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px;
  font-size: 16px;
  color: var(--dark-blue);
  text-align: left;
  background-color: var(--white);
  border: none;
  border-radius: 0;
  overflow-anchor: none;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  cursor: pointer;
}

.hd-favija-accordion-button:not(.collapsed) {
  color: var(--primary-blue);
  background-color: rgba(106, 142, 174, 0.05);
}

.hd-favija-accordion-button::after {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236a8eae'%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");
  background-repeat: no-repeat;
  background-size: 16px;
  transition: transform 0.3s ease;
}

.hd-favija-accordion-button.collapsed::after {
  transform: rotate(-90deg);
}

.hd-favija-accordion-collapse {
  border-top: 1px solid var(--light-gray);
}

.hd-favija-accordion-body {
  padding: 20px;
}

.hd-favija-accordion-body p {
  margin-bottom: 0;
  font-size: 14px;
}

.hd-favija-contact-item-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  background-color: rgba(106, 142, 174, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-blue);
  flex-shrink: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.hd-favija-contact-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.hd-favija-contact-item a {
  color: var(--dark-blue);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  -webkit-text-decoration: none;
  -moz-text-decoration: none;
  -ms-text-decoration: none;
}
/* trang liên hệ end */

/* trang cố định start */
.hydro-favija-page-static-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.page .hd-favija-hero-image {
  max-height: 500px;
}
.page .hd-favija-hero-section {
  padding-bottom: 0;
}
.hydro-favija-page-static-des {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.8rem, 0.7692rem + 0.1538vw, 0.9rem);
  color: var(--dark-blue);
}
.hydro-favija-page-static-content {
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
}

/* sửa web */
.hd-favija-hero-slider .hd-favija-slide-image {
  overflow: hidden;
  --bs-aspect-ratio: calc(9 / 24 * 100%);
}
.hd-favija-hero-slider {
  height: auto;
}
.hd-favija-slide {
  position: relative;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
}
.hd-favija-hero-slider .hd-favija-slide-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hd-favija-header {
  position: sticky;
}
.hd-favija-hero-slider .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  min-width: 13px;
  min-height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 0px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  opacity: 1;
}
.hd-favija-hero-slider .swiper-pagination-bullet-active {
  background: var(--dark-blue);
  opacity: 1;
}
.hd-favija-hero-slider .swiper-pagination-bullet:hover {
  background: var(--dark-blue);
  opacity: 1;
}
.hd-favija-slider-arrow.hd-favija-prev-new.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.hd-favija-slider-arrow.hd-favija-next-new.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.hd-favija-vietnam-flag {
  width: 33px;
  height: 26px;
  object-fit: contain;
  position: absolute;
  z-index: 3;
  right: -22px;
  top: 10px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.hd-favija-vietnam-flag-tree {
  position: absolute;
  width: 2px;
  height: 30px;
  background: #2e2411;
  top: 11px;
  right: 11px;
  z-index: 2;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.hd-favija-vietnam-flag-tree::before {
  position: absolute;
  content: "";
  top: -2px;
  right: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #2e2411;
  z-index: 4;
}


.hd-favija-header.scrolled .hd-favija-vietnam-flag {
    right: -32px;
    top: 2px;
    transition: all .3s ease ;
    -webkit-transition: all .3s ease ;
    -moz-transition: all .3s ease ;
    -ms-transition: all .3s ease ;
    -o-transition: all .3s ease ;
}
.hd-favija-header.scrolled .hd-favija-vietnam-flag-tree {
  top: 4px;
  right: 2px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
