/* Global Styles */
:root {
  --primary-color: #0137ad;
  --white: #ffffff;
  --dark-blue: #002a8a;
  --light-blue: #1e4fc7;
  --red: #ff3e3e;
}

/* Address Bar */
.hd-do-choi-thu-cung-address-bar {
}
.hd-do-choi-thu-cung-header-top {
  background-color: var(--white);
}

.hd-do-choi-thu-cung-address-text {
  color: var(--primary-color);
  font-size: clamp(0.73rem, 0.2099rem + 0.8119vw, 0.9rem);
  margin: 0;
  font-family: var(--title-font);
}

.hd-do-choi-thu-cung-address-text i {
  color: var(--primary-color);
}

/* Header */
.hd-do-choi-thu-cung-header {
  background-color: var(--primary-color);
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
}

/* Logo */
.hd-do-choi-thu-cung-logo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 3;
}

.hd-do-choi-thu-cung-logo-icon {
  position: relative;
  margin-right: 10px;
}

.hd-do-choi-thu-cung-logo-circle {
  width: 40px;
  height: 40px;
  background-color: #ff3e3e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hd-do-choi-thu-cung-logo-symbol {
  color: var(--white);
  font-size: 24px;
  transform: rotate(45deg);
  display: inline-block;
}

.hd-do-choi-thu-cung-logo-text {
  display: flex;
  flex-direction: column;
}

.hd-do-choi-thu-cung-logo-title {
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
}

.hd-do-choi-thu-cung-logo-subtitle {
  color: var(--white);
  font-size: 10px;
  letter-spacing: 1px;
}

/* Desktop Menu */
.hd-do-choi-thu-cung-desktop-menu {
  display: flex;
  justify-content: center;
}

.hd-do-choi-thu-cung-menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hd-do-choi-thu-cung-menu-item {
  position: relative;
  margin: 0 15px;
}

.hd-do-choi-thu-cung-menu-link {
  color: var(--white);
  text-decoration: none;
  font-size: clamp(0.9rem, 0.441rem + 0.7164vw, 1.05rem);
  font-weight: 500;
  padding: 15px 0;
  display: block;
  height: 100%;
  text-transform: uppercase;
}

.hd-do-choi-thu-cung-menu-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hd-do-choi-thu-cung-dropdown-icon {
  font-size: 18px;
  margin-left: 5px;
}
.hd-do-choi-thu-cung-menu-item.active .hd-do-choi-thu-cung-menu-link {
  color: var(--red);
  font-family: lato-b;
}
/* Submenu Level 1 */
.hd-do-choi-thu-cung-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}

.hd-do-choi-thu-cung-dropdown:hover .hd-do-choi-thu-cung-submenu {
  opacity: 1;
  visibility: visible;
}

.hd-do-choi-thu-cung-submenu-item {
  position: relative;
}

.hd-do-choi-thu-cung-submenu-link,
.hd-do-choi-thu-cung-submenu-link-level2 {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 15px;
  display: block;
  white-space: nowrap;

  font-family: var(--title-font);
}

.hd-do-choi-thu-cung-submenu-link:hover,
.hd-do-choi-thu-cung-submenu-link-level2:hover {
  background-color: #f5f5f5;
  color: var(--red);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.hd-do-choi-thu-cung-submenu-link i {
  float: right;
  margin-top: 3px;
}

/* Submenu Level 2 */
.hd-do-choi-thu-cung-submenu-level2 {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  z-index: 101;
}

.hd-do-choi-thu-cung-submenu-item:hover .hd-do-choi-thu-cung-submenu-level2 {
  opacity: 1;
  visibility: visible;
}

/* Utilities */
.hd-do-choi-thu-cung-utilities {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hd-do-choi-thu-cung-search-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  margin-right: 15px;
  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-do-choi-thu-cung-language-selector {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.hd-do-choi-thu-cung-flag {
  width: 24px;
  height: 16px;
  margin-right: 5px;
}

.hd-do-choi-thu-cung-dropdown-arrow {
  color: var(--white);
  font-size: 10px;
}

/* Mobile Menu Toggle */
.hd-do-choi-thu-cung-mobile-toggle {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  margin-left: 20px;
  cursor: pointer;
}

.hd-do-choi-thu-cung-toggle-bar {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transform-origin: center;
}
/* Trạng thái khi menu mở */
.hd-do-choi-thu-cung-mobile-toggle.active
  .hd-do-choi-thu-cung-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hd-do-choi-thu-cung-mobile-toggle.active
  .hd-do-choi-thu-cung-toggle-bar:nth-child(2) {
  opacity: 0;
}

.hd-do-choi-thu-cung-mobile-toggle.active
  .hd-do-choi-thu-cung-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.hd-do-choi-thu-cung-mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--primary-color);
  z-index: 1000;
  overflow-y: auto;
  padding-top: 60px;
}

.hd-do-choi-thu-cung-mobile-menu.active {
  left: 0;
}

.hd-do-choi-thu-cung-mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hd-do-choi-thu-cung-mobile-menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hd-do-choi-thu-cung-mobile-menu-link {
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-family: var(--title-font);
}
.hd-do-choi-thu-cung-mobile-menu-link:hover {
  color: rgba(255, 255, 255, 0.8);
}
.hd-do-choi-thu-cung-mobile-dropdown-icon {
  font-size: 12px;
  text-align: end;
}

/* Mobile Submenu Level 1 */
.hd-do-choi-thu-cung-mobile-submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.hd-do-choi-thu-cung-mobile-submenu.active {
  display: block;
}

.hd-do-choi-thu-cung-mobile-submenu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hd-do-choi-thu-cung-mobile-submenu-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 12px 15px 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--title-font);
  text-transform: capitalize;
}
.hd-do-choi-thu-cung-mobile-submenu-link:hover {
  color: rgba(255, 255, 255, 0.8);
}
/* Mobile Submenu Level 2 */
.hd-do-choi-thu-cung-mobile-submenu-level2 {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.hd-do-choi-thu-cung-mobile-submenu-level2.active {
  display: block;
}

.hd-do-choi-thu-cung-mobile-submenu-item-level2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hd-do-choi-thu-cung-mobile-submenu-link-level2 {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 12px 15px 12px 45px;
  display: block;
  font-family: var(--title-font);
  text-transform: capitalize;
}

/* Slider */
.hd-do-choi-thu-cung-slider {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.hd-do-choi-thu-cung-slider-container {
  position: relative;
  height: 100%;
}

.hd-do-choi-thu-cung-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.hd-do-choi-thu-cung-slide.active {
  opacity: 1;
  visibility: visible;
}

.hd-do-choi-thu-cung-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-do-choi-thu-cung-slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.hd-do-choi-thu-cung-slide-title {
  color: var(--white);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hd-do-choi-thu-cung-slide-description {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
}

.hd-do-choi-thu-cung-slide-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
}

/* Slider Navigation */
.hd-do-choi-thu-cung-slider-nav {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.hd-do-choi-thu-cung-slider-prev:hover,
.hd-do-choi-thu-cung-slider-next:hover {
  background-color: rgba(0, 0, 0, 1);
  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-do-choi-thu-cung-slider-prev,
.hd-do-choi-thu-cung-slider-next {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 15px;
  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-do-choi-thu-cung-slider-dots {
  display: flex;
  align-items: center;
}

.hd-do-choi-thu-cung-slider-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.hd-do-choi-thu-cung-slider-dot.active {
  background-color: var(--white);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hd-do-choi-thu-cung-logo-title {
    font-size: 24px;
  }

  .hd-do-choi-thu-cung-logo-subtitle {
    font-size: 9px;
  }

  .hd-do-choi-thu-cung-slide-title {
    font-size: 30px;
  }

  .hd-do-choi-thu-cung-slide-description {
    font-size: 16px;
  }

  .hd-do-choi-thu-cung-slider {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .hd-do-choi-thu-cung-address-bar {
    display: none;
  }

  .hd-do-choi-thu-cung-slide-title {
    font-size: 24px;
  }

  .hd-do-choi-thu-cung-slide-description {
    font-size: 14px;
  }

  .hd-do-choi-thu-cung-slide-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hd-do-choi-thu-cung-slider {
    height: 350px;
  }
}

@media (max-width: 575px) {
  .hd-do-choi-thu-cung-logo-circle {
    width: 35px;
    height: 35px;
  }

  .hd-do-choi-thu-cung-logo-title {
    font-size: 20px;
  }

  .hd-do-choi-thu-cung-logo-subtitle {
    font-size: 8px;
  }

  .hd-do-choi-thu-cung-slider {
    height: 300px;
  }
}

.hd-do-choi-thu-cung-logo img {
  max-width: 100%;
  object-fit: contain;
  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-do-choi-thu-cung-logo-box {
  min-width: 90px;
  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-do-choi-thu-cung-header-bottom {
  position: relative;
  z-index: 100;
  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;
}
.bg-blue-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 24%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 2;
  transform: skewX(23deg);
  -webkit-transform: skewX(23deg);
  -moz-transform: skewX(23deg);
  -ms-transform: skewX(23deg);
  -o-transform: skewX(23deg);
}
.hd-do-choi-thu-cung-language-selector img {
  width: 28px;
  height: auto;
}
.hd-do-choi-thu-cung-language-selector .dropdown-toggle::after {
  color: var(--white);
}
.hd-do-choi-thu-cung-language-selector .dropdown-menu {
  background-color: var(--white);
  border: none;
}
.hd-do-choi-thu-cung-language-selector .dropdown-item {
  color: var(--primary-color);
  font-family: lato-b;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.hd-do-choi-thu-cung-language-selector .dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.btn-check:focus + .btn,
.btn:focus {
  box-shadow: none;
}
.btn-close-menu-mobile {
  position: absolute;
  top: -15%;
  left: 5px;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.8);
  z-index: 900;
}
.hd-do-choi-thu-cung-header.active {
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}
.hd-do-choi-thu-cung-header.active .hd-do-choi-thu-cung-header-bottom {
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
  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-do-choi-thu-cung-header.active .hd-do-choi-thu-cung-logo-box {
  min-width: 55px;
  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;
}
/* header end */

/* trang chủ start */
.hd-do-choi-thu-cung-section-title {
  position: relative;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.hd-do-choi-thu-cung-title-outline {
  /* -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 65, 51, 1);
  font-family: Roboto;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: transparent;
  text-transform: uppercase; */

  font-family: lato-black;
  font-size: clamp(3rem, 2.6923rem + 1.5385vw, 4rem);
  font-style: normal;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: -1px -1px 0 rgba(255, 65, 51, 1), 1px -1px 0 rgba(255, 65, 51, 1),
    -1px 1px 0 rgba(255, 65, 51, 1), 1px 1px 0 rgba(255, 65, 51, 1);
  position: relative;
  z-index: 1;
}
.hd-do-choi-thu-cung-title-outline::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90%;
  z-index: 2;
  content: "";
  background: linear-gradient(to top, rgba(255, 255, 255, 1), transparent);
}
.hd-do-choi-thu-cung-title-solid {
  display: block;
  font-size: clamp(2rem, 1.7692rem + 1.1538vw, 2.5rem);
  color: var(--primary-color);
  margin-top: -40px;
  font-family: lato-black;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}

/* About Section */
.hd-do-choi-thu-cung-about-section {
  position: relative;
  overflow: hidden;
}

.hd-do-choi-thu-cung-about-image {
  overflow: hidden;
  --bs-aspect-ratio: 130%;
  min-height: 100%;
  position: relative;
  z-index: 2;

  clip-path: url(#about-us-clip-path);
}
.hd-do-choi-thu-cung-about-image-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 1;
  transform: translate(5%, -5%);
  -webkit-transform: translate(5%, -5%);
  -moz-transform: translate(5%, -5%);
  -ms-transform: translate(5%, -5%);
  -o-transform: translate(5%, -5%);
  clip-path: url(#about-us-clip-path);
}
.svg-about-us {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.hd-do-choi-thu-cung-about-image img,
.hd-do-choi-thu-cung-about-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-do-choi-thu-cung-stats-row {
  margin-top: 40px;
  margin-bottom: 0px;
}

.hd-do-choi-thu-cung-stat-item {
  text-align: center;
  margin-bottom: 30px;
}

.hd-do-choi-thu-cung-stat-number {
  font-size: clamp(1.2rem, 1.0154rem + 0.9231vw, 1.8rem);
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: lato-black;
}
.hd-do-choi-thu-cung-stat-number i {
  font-size: clamp(1.2rem, 1.1077rem + 0.4615vw, 1.5rem);
  margin-left: 3px;
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}

.hd-do-choi-thu-cung-stat-text {
  font-size: 1rem;
  color: var(--gray);
  font-family: var(--title-font);
}

.hd-do-choi-thu-cung-btn-primary {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  padding: 3px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-transform: uppercase;
}
.hd-do-choi-thu-cung-btn-text {
  padding: 10px 10px 10px 20px;
}
.hd-do-choi-thu-cung-btn-primary:hover .hd-do-choi-thu-cung-btn-arrow {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  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-do-choi-thu-cung-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  margin-left: 10px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  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-do-choi-thu-cung-btn-arrow i {
  color: var(--primary-color);
  font-size: 1rem;
}
/* about section end */

/* tại sao chọn chúng tôi start */
/* Why Choose Us Section */
.hd-do-choi-thu-cung-why-section {
  position: relative;
  /* background-image: url("paw-pattern.png"); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}

.hd-do-choi-thu-cung-why-item {
  text-align: center;
  margin-bottom: 40px;
}

.hd-do-choi-thu-cung-why-icon {
  margin-bottom: 20px;
}

.hd-do-choi-thu-cung-icon-circle {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.hd-do-choi-thu-cung-icon-circle img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.hd-do-choi-thu-cung-icon-circle i {
  font-size: 30px;
  color: var(--white);
}

.hd-do-choi-thu-cung-icon-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  background-color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.hd-do-choi-thu-cung-why-title {
  font-size: clamp(0.9rem, 0.8385rem + 0.3077vw, 1.1rem);
  color: var(--text-color);
  margin-bottom: 10px;
  font-family: lato-b;
}

.hd-do-choi-thu-cung-why-text {
  font-size: 14px;
  color: var(--gray);
}

.hd-do-choi-thu-cung-why-icon-line {
  position: absolute;
  top: 50%;
  right: -25%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 50%;
  height: 2px;
  background: var(--text-color);
}
.hd-do-choi-thu-cung-why-item-col:last-of-type
  .hd-do-choi-thu-cung-why-icon-line {
  display: none;
}
.hd-do-choi-thu-cung-why-section .container {
  position: relative;
  z-index: 5;
}
.hd-do-choi-thu-cung-why-section-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  max-width: 400px;
}
/* tại sao chọn chúng tôi end */

/* sản phẩm nổi bật start */
/* Products Section */
.hd-do-choi-thu-cung-products-section {
  position: relative;
}

.hd-do-choi-thu-cung-btn-secondary {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
}

.hd-do-choi-thu-cung-product-card {
  background-color: #f5f5f5;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  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;
  color: var(--text-color);
}
.hd-do-choi-thu-cung-product-card:hover {
  background-color: var(--primary-color);
  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-do-choi-thu-cung-product-card:hover .hd-do-choi-thu-cung-product-title,
.hd-do-choi-thu-cung-product-card:hover .hd-do-choi-thu-cung-product-text {
  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-do-choi-thu-cung-product-content {
  padding: 20px;
}

.hd-do-choi-thu-cung-product-title {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
  color: var(--text-color);
  margin-bottom: 10px;
  font-family: lato-b;
  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-do-choi-thu-cung-product-text {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
  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-do-choi-thu-cung-product-image {
  overflow: hidden;
  clip-path: url(#san-pham-clip-path);
}
.svg-san-pham {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.hd-do-choi-thu-cung-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-do-choi-thu-cung-product-link {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 15%;
  height: 19%;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 1.3rem;
  transform: rotate(-40deg);
  -webkit-transform: rotate(-40deg);
  -moz-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  -o-transform: rotate(-40deg);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.hd-do-choi-thu-cung-product-card:hover .hd-do-choi-thu-cung-product-link {
  background-color: var(--red);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
/* sản phẩm nổi bật end */

/* hình ảnh start */
/* Production Images Section */
.hd-do-choi-thu-cung-production-section {
  background-color: var(--white);
  color: var(--black);
}

.hd-do-choi-thu-cung-production-section .hd-do-choi-thu-cung-title-outline {
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
}

.hd-do-choi-thu-cung-production-slider {
  margin-top: 40px;
}

.hd-do-choi-thu-cung-production-image {
  border-radius: 10px;
  overflow: hidden;
}
.hd-do-choi-thu-cung-production-image:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  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-do-choi-thu-cung-production-image img,
.hd-do-choi-thu-cung-production-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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;
}
/* Swiper Customization */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.hd-do-choi-thu-cung-production-section .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.3);
}

.hd-do-choi-thu-cung-production-section .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
.tc-swiper-pagination .swiper-pagination-bullet {
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.tc-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 30px;
  border-radius: 10px;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.hd-do-choi-thu-cung-production-slider {
  margin-top: 0;
}
/* hình ảnh end */

/* đối tác khách hàng - footer start */
/* Customer Partners Section */
.hd-do-choi-thu-cung-partners-section {
  background-color: var(--white);
  color: var(--black);
  padding: 60px 0;
}

.hd-do-choi-thu-cung-partners-section .hd-do-choi-thu-cung-title-outline {
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
}

.hd-do-choi-thu-cung-partners-section .hd-do-choi-thu-cung-title-solid {
  color: var(--primary-color);
}

.hd-do-choi-thu-cung-partner-item {
  overflow: hidden;
}

.hd-do-choi-thu-cung-partner-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Latest News & Blogs Section */
.hd-do-choi-thu-cung-news-section {
  /* background-color: var(--primary-color); */
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  border-radius: 0 100px 0 0;
  z-index: 1;
}
.hd-do-choi-thu-cung-news-section .container {
  position: relative;
  z-index: 5;
}
.hd-do-choi-thu-cung-news-section-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  border-top-right-radius: 45%;
  border-bottom-right-radius: 45%;
}
.hd-do-choi-thu-cung-news-section .hd-do-choi-thu-cung-title-solid {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 20px;
}

.hd-do-choi-thu-cung-news-intro {
  padding-right: 30px;
}

.hd-do-choi-thu-cung-news-intro-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hd-do-choi-thu-cung-news-card {
  /* background-color: var(--white); */
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  height: 100%;
}

.hd-do-choi-thu-cung-news-image {
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.hd-do-choi-thu-cung-news-image img,
.hd-do-choi-thu-cung-news-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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-do-choi-thu-cung-news-content {
  padding: 20px 0;
}

.hd-do-choi-thu-cung-news-date {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 10px;
}

.hd-do-choi-thu-cung-news-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.4;
}

.hd-do-choi-thu-cung-news-text {
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.hd-do-choi-thu-cung-news-link {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  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;
}

/* Sign Up Section */
.hd-do-choi-thu-cung-signup-section {
  position: relative;
  padding: 0;
  margin-top: -50px;
  z-index: 10;
  padding-bottom: 20px;
}
.hd-do-choi-thu-cung-signup-section::before {
  position: absolute;
  content: "";
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: var(--primary-color);
}
.hd-do-choi-thu-cung-signup-section::after {
  position: absolute;
  content: "";
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background-color: var(--primary-color);
}
.hd-do-choi-thu-cung-signup-section .container {
  position: relative;
  z-index: 5;
}
.hd-do-choi-thu-cung-signup-container {
  background-color: var(--white);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 75px;
  -webkit-border-radius: 75px;
  -moz-border-radius: 75px;
  -ms-border-radius: 75px;
  -o-border-radius: 75px;
}

.hd-do-choi-thu-cung-signup-title {
  color: var(--red);
  font-size: clamp(1.3rem, 1.1769rem + 0.6154vw, 1.7rem);
  font-family: lato-b;
}

.hd-do-choi-thu-cung-signup-form {
  max-width: 500px;
  margin: 0 auto;
}

.hd-do-choi-thu-cung-signup-input-group {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background: #f5f5f5;
}

.hd-do-choi-thu-cung-signup-input {
  flex: 1;
  height: 50px;
  border: none;
  padding: 0 20px;
  font-size: 14px;
  background-color: #f5f5f5;
}

.hd-do-choi-thu-cung-signup-btn {
  width: 120px;
  height: 50px;
  background-color: var(--red);
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

/* Footer */
.hd-do-choi-thu-cung-footer {
  background-color: var(--black);
  color: var(--white);
  position: relative;
}

.hd-do-choi-thu-cung-footer-album {
  width: 100%;
  overflow: hidden;
}

.hd-do-choi-thu-cung-footer-album-item {
  overflow: hidden;
}

.hd-do-choi-thu-cung-footer-album-item img,
.hd-do-choi-thu-cung-footer-album-item a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-do-choi-thu-cung-footer-main {
  padding: 60px 0 30px;
  background-color: var(--primary-color);
}

.hd-do-choi-thu-cung-footer-title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 15px;
  font-family: lato-b;
}

.hd-do-choi-thu-cung-footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.hd-do-choi-thu-cung-footer-text a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.hd-do-choi-thu-cung-footer-text a:hover {
  color: var(--white);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.hd-do-choi-thu-cung-footer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.hd-do-choi-thu-cung-footer-list li {
  margin-bottom: 10px;
}

.hd-do-choi-thu-cung-footer-list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
}

.hd-do-choi-thu-cung-footer-list li a:hover {
  color: var(--white);
}

.hd-do-choi-thu-cung-social-icons {
  display: flex;
  margin-bottom: 30px;
}

.hd-do-choi-thu-cung-social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  margin-right: 10px;
}

.hd-do-choi-thu-cung-social-icon:hover {
  background-color: var(--red);
}

.hd-do-choi-thu-cung-copyright {
  background-color: var(--red);
  padding: 15px 0;
  color: var(--white);
  font-size: 14px;
}

.hd-do-choi-thu-cung-social-icon-sm {
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  margin-left: 5px;
}
.hd-do-choi-thu-cung-news-section .hd-do-choi-thu-cung-btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 3px;
  border-radius: 5px;
  cursor: pointer;
  padding-left: 17px;
}
.hd-do-choi-thu-cung-news-section .hd-do-choi-thu-cung-btn-arrow {
  background-color: var(--primary-color);
}
.hd-do-choi-thu-cung-news-section .hd-do-choi-thu-cung-btn-arrow i {
  color: var(--white);
}
.hd-do-choi-thu-cung-news-card-col:first-of-type
  .hd-do-choi-thu-cung-news-card {
  color: var(--white);
}
.hd-do-choi-thu-cung-news-card-col:first-of-type
  .hd-do-choi-thu-cung-news-link {
  color: var(--white);
}
.hd-do-choi-thu-cung-news-link:hover {
  color: var(--red);
  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-do-choi-thu-cung-footer-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.footer-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--white);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6rem;
  margin-right: 5px;
}
/* đối tác khách hàng - footer end */

/* trang chủ end */

/* footer start */
.input-group-form-footer {
  background: var(--white);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: none;
  padding: 5px;
}
.input-group-form-footer input {
  background: transparent;
  border: none;
}
.input-group-form-footer .input-group-form-footer-btn {
  background: var(--primary-color);
  border: none;
  border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -ms-border-radius: 5px !important;
  -o-border-radius: 5px !important;
}
.input-group-form-footer .input-group-form-footer-btn img {
  max-width: 24px;
}
.input-group-form-footer .input-group-form-footer-btn:hover {
  background-color: var(--red);
}
/* footer end */

/* trang cố định start */
/* Banner with Breadcrumb */
.hd-do-choi-thu-cung-page-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.hd-do-choi-thu-cung-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hd-do-choi-thu-cung-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hd-do-choi-thu-cung-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hd-do-choi-thu-cung-banner-title {
  color: var(--white);
  font-size: clamp(2rem, 1.5385rem + 2.3077vw, 3.5rem);
  margin-bottom: 10px;
  font-family: lato-b;
  text-transform: uppercase;
}

.hd-do-choi-thu-cung-breadcrumb {
  display: flex;
  align-items: center;
}

.hd-do-choi-thu-cung-breadcrumb-link {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.4s ease;
  -webkit-transition: color 0.4s ease;
  -moz-transition: color 0.4s ease;
  -ms-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
}
.hd-do-choi-thu-cung-breadcrumb-link:hover {
  color: var(--red);
  transition: color 0.4s ease;
  -webkit-transition: color 0.4s ease;
  -moz-transition: color 0.4s ease;
  -ms-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
}

.hd-do-choi-thu-cung-breadcrumb-separator {
  color: var(--white);
  margin: 0 10px;
  font-size: 14px;
}

.hd-do-choi-thu-cung-breadcrumb-current {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.4s ease;
  -webkit-transition: color 0.4s ease;
  -moz-transition: color 0.4s ease;
  -ms-transition: color 0.4s ease;
  -o-transition: color 0.4s ease;
}

/* About Us - Company Overview Section */
.hd-do-choi-thu-cung-about-overview-section {
  padding: 80px 0;
  background-color: var(--white);
}

.hd-do-choi-thu-cung-about-image-wrapper {
  position: relative;
  padding: 20px;
}

.hd-do-choi-thu-cung-about-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  background-color: var(--primary-color);
  border-radius: 20px;
  transform: rotate(-5deg) translate(-3%, 8%);
  z-index: 1;
}

.hd-do-choi-thu-cung-about-image {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.hd-do-choi-thu-cung-about-image img,
.hd-do-choi-thu-cung-about-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hd-do-choi-thu-cung-section-subtitle {
  color: var(--red);
  font-size: clamp(1rem, 0.9385rem + 0.3077vw, 1.2rem);
  margin-bottom: 10px;
  font-family: lato-b;
}

.hd-do-choi-thu-cung-section-title {
  color: var(--primary-color);
  font-size: clamp(1.7rem, 1.4538rem + 1.2308vw, 2.5rem);
  font-family: lato-black;
}

.hd-do-choi-thu-cung-about-text {
  margin-bottom: 30px;
}

.hd-do-choi-thu-cung-about-text p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.hd-do-choi-thu-cung-vision-mission {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.hd-do-choi-thu-cung-vision-mission-title {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hd-do-choi-thu-cung-vision,
.hd-do-choi-thu-cung-mission {
  margin-bottom: 15px;
}

.hd-do-choi-thu-cung-vision-title,
.hd-do-choi-thu-cung-mission-title {
  color: var(--dark-blue);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  display: inline-block;
}

.hd-do-choi-thu-cung-vision p,
.hd-do-choi-thu-cung-mission p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Core Values Section */
.hd-do-choi-thu-cung-core-values-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.hd-do-choi-thu-cung-value-item {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.hd-do-choi-thu-cung-value-icon {
  margin-bottom: 20px;
}

.hd-do-choi-thu-cung-value-icon-circle {
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}
.hd-do-choi-thu-cung-value-icon-circle img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.hd-do-choi-thu-cung-value-icon-circle i {
  font-size: 40px;
  color: var(--white);
}

.hd-do-choi-thu-cung-value-title {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hd-do-choi-thu-cung-value-text {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}
.page .hd-do-choi-thu-cung-about-image {
  --bs-aspect-ratio: 100%;
  min-height: 100%;
}

/* trang cố định end */

/* trang sản phẩm chi tiết start */

.fbn-product-image-section {
  text-align: center;
}
.fbn-product-main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.fbn-product-thumbnail-wrapper {
  align-items: center;
}
.fbn-product-thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.fbn-product-thumbnails img:hover {
  transform: scale(1.1);
}
.fbn-thumbnail-prev,
.fbn-thumbnail-next {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #6c757d;
}
.fbn-product-details-section {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.fbn-product-title {
  font-family: var(--title-font);
  /* font-weight: bold; */
  margin-bottom: 1rem;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 10px;
  font-size: clamp(1.4rem, 1.2769rem + 0.6154vw, 1.8rem);
}
.fbn-product-rating i {
  background: linear-gradient(to bottom, #cc9f3c, #ffdb64, #cc9f3c);
  background-clip: text;
  color: transparent;
}
.fbn-product-price {
  color: var(--second-text-color);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: bold;
}
.fbn-product-sold {
  font-size: clamp(0.875rem, 1.25vw, 1rem);
  color: #6c757d;
}
.fbn-product-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}
.fbn-product-quantity-wrapper button {
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
}
.fbn-quantity-input {
  width: 60px;
  text-align: center;
}
.fbn-add-to-cart {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  padding-left: 5px;
}
.fbn-add-to-cart:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}
.fbn-product-quantity-wrapper .input-group {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: max-content;
}
.fbn-quantity-input {
  border: none;
}
.btn-outline-secondary {
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
  background-color: #e9e9e9;
  border-color: #e9e9e9;
  color: var(--text-color);
}
.fbn-san-pham-detail-image {
  overflow: hidden;
}
.fbn-san-pham-detail-image a,
.fbn-san-pham-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-detail-thumb-image {
  overflow: hidden;
}
.sp-detail-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* nội dung chi tiết */
.fbn-san-pham-chi-tiet-title {
  border-bottom: 2px solid var(--main-color);
}
.fbn-san-pham-chi-tiet-title h3 {
  background-color: var(--main-color);
  color: var(--background-color);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  border-top-left-radius: 5px;
  border-top-right-radius: 25px;
  padding: 8px 20px;
  padding-right: 50px;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
  font-family: UTM-Avo;

  text-transform: uppercase;
  transform: translateY(5px);
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
}
.fbn-san-pham-chi-tiet-des {
  padding: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  border-bottom: 8px solid #eae9e9;
  background-color: #f8f8f8;
  height: 400px;
  overflow: hidden;
  position: relative;
}
.fbn-san-pham-chi-tiet-des::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #f8f8f8, transparent);
  z-index: 2;
  pointer-events: none;
}
.fbn-san-pham-chi-tiet-des.collapsehaha::after {
  display: none;
}
.fbn-san-pham-chi-tiet-xem-them {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 3;
}
.fbn-xem-them-btn {
  min-width: 150px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  background-color: var(--primary-color);
  border: none;
  color: var(--background-color);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.fbn-xem-them-btn:hover {
  background-color: #4a3001;
}
.sp-tt-text-right {
  text-align: right;
}
.coco-san-pham-detail-image {
  overflow: hidden;
}
.coco-san-pham-detail-image a,
.coco-san-pham-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-detail-thumb-image {
  overflow: hidden;
  cursor: pointer;
}
.sp-detail-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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;
}
.fbn-add-to-cart:hover {
  background-color: var(--text-color);
  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;
}
.vh-hinh-image {
  display: block;
  text-align: center;
  margin: 15px auto;
}
.fbn-category-hot-content-title {
  text-transform: uppercase;
  color: var(--text-color);
  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
  font-family: UTM-Avo;
}
.dodo-tin-lien-quan-item-image {
  overflow: hidden;
}
.dodo-tin-lien-quan-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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;
}
.dodo-tin-lien-quan-item:hover .dodo-tin-lien-quan-item-image 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;
}
.dodo-tin-lien-quan-item {
  border-top: 1px solid #e5e5e5;
}
.dodo-tin-lien-quan-item-name {
  color: var(--text-color);
  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;
  font-size: clamp(0.9rem, 0.89rem + 0.05vw, 0.95rem);
}
.dodo-tin-lien-quan-item:hover .dodo-tin-lien-quan-item-name {
  color: var(--second-text-color);
  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;
}
.dodo-cot-phai-title {
  color: var(--text-color);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  padding: 10px 20px;
  padding-top: 0;
  padding-right: 50px;
  font-family: UTM-Avo;
  text-transform: uppercase;
  transform: translateY(5px);
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
}
.dodo-tin-lien-quan-view-more {
  border: 1px solid #e5e5e5;
  color: var(--text-color);
  background-color: var(--background-color);
  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;
  font-family: var(--title-font);
}
.dodo-tin-lien-quan-view-more:hover {
  background-color: var(--text-color);
  color: var(--background-color);
  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;
}
.dodo-san-pham-nay-mua-ngay-image {
  overflow: hidden;
}
.dodo-san-pham-nay-mua-ngay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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;
}
.dodo-san-pham-nay-mua-ngay-gia-tien {
  font-family: UTM-AvoBold;
  font-size: clamp(1.3rem, 1.26rem + 0.2vw, 1.5rem);
  color: var(--second-text-color);
}
.dodo-san-pham-nay-mua-ngay-item .dodo-san-pham-nay-mua-ngay-danh-gia {
  font-size: 0.8rem;
}
.dodo-san-pham-nay-mua-ngay-item .dodo-san-pham-nay-mua-ngay-danh-gia i {
  color: #ffc107;
}
.btn-mua-ngay {
  background: #666;
  font-family: var(--title-font);
  text-transform: uppercase;
  font-size: 1.1rem;
  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;
}
.btn-mua-ngay:hover {
  background-color: var(--text-color);
  color: var(--background-color);
  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;
}
.dodo-san-pham-nay-mua-ngay-box {
  border: 1px solid #e5e5e5;
  position: sticky;
  top: 80px;
}
.fbn-san-pham-chi-tiet-page {
  overflow: visible;
}
.sp-scroll {
  cursor: pointer;
}
.sp-scroll:hover {
  color: var(--second-text-color);
  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;
}
.dodo-san-pham-nay-mua-ngay-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;
}
.btn-nhanxet,
.btn-guibl {
  background-color: var(--primary-color);
  color: var(--background-color);
  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;
}
.btn-nhanxet:hover,
.btn-guibl:hover {
  background-color: var(--text-color);
  color: var(--background-color);
  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;
}
.content-nhanxet {
  background-color: transparent;
  width: 100%;
}
.khung-binh-luan-wrapper {
  border: 1px solid #eae9e9;
}
.title-medium-score {
  font-size: clamp(1.2rem, 1.14rem + 0.3vw, 1.5rem);
  font-family: UTM-Avo;
}
.san-pham-detail .accordion-button {
  padding: 0.5rem 1.25rem !important;
  background-color: var(--text-color) !important;
  color: var(--background-color) !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.san-pham-detail .accordion-button:not(.collapsed) {
  background-color: var(--primary-color) !important;
  color: var(--background-color) !important;
}
.vh-notification {
  font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem);
}
.btn-call-hot-line-product-detail {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.san-pham-detail .nav-pills .nav-link {
  color: var(--text-color);
  font-size: clamp(0.8rem, 0.7077rem + 0.4615vw, 1.1rem);
  font-family: var(--title-font);
  text-transform: uppercase;
  /*border-top-left-radius: 20px;
  */ /*border-top-right-radius: 20px;
  */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 10px 30px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  clip-path: url(#san-pham-chi-tiet-clip-path);
}
.san-pham-detail .nav-pills .nav-link.active,
.san-pham-detail .nav-pills .show > .nav-link {
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--title-font);
  font-size: clamp(0.8rem, 0.7077rem + 0.4615vw, 1.1rem);
  clip-path: url(#san-pham-chi-tiet-clip-path);
}
.svg-san-pham-chi-tiet {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.san-pham-detail .nav.nav-pills {
  position: relative;
  border-bottom: 2px solid var(--primary-color);
}
/* trang sản phẩm chi tiết end */

/* trang tin tức start */
.tin-tuc .hd-do-choi-thu-cung-news-date {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.tin-tuc .hd-do-choi-thu-cung-news-card {
  margin-bottom: 0;
}
.page-item.active .page-link {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
.tin-tuc .hd-do-choi-thu-cung-news-image {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}
.hd-do-choi-thu-cung-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 */

/* tin tức item start */
.tc-tuyen-dung-item {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
  padding: 20px 0;
}
.tc-tuyen-dung-item-image {
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
.tc-tuyen-dung-item-image a,
.tc-tuyen-dung-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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;
}
.tc-tuyen-dung-item-title a {
  color: var(--text-color);
  font-family: lato-b;
  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;
}
.tc-tuyen-dung-item-title a:hover {
  color: var(--second-text-color);
  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;
}
.tc-tuyen-dung-item-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: 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;
}
/* tin tức item end */

/* trang liên hệ start */
/* Contact Section Styles */
.hd-do-choi-thu-cung-contact-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

/* Contact Form Styles */
.hd-do-choi-thu-cung-contact-form-wrapper {
  padding-right: 30px;
}

.hd-do-choi-thu-cung-contact-title {
  color: var(--primary-color);
  font-size: 32px;
  margin-bottom: 15px;
  font-family: lato-black;
  text-transform: uppercase;
}

.hd-do-choi-thu-cung-contact-subtitle {
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
}

.hd-do-choi-thu-cung-form-group {
  margin-bottom: 20px;
}

.hd-do-choi-thu-cung-form-group label {
  display: block;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}

.hd-do-choi-thu-cung-form-control {
  width: 100%;
  height: 50px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  color: #333;
  background-color: var(--white);
  transition: border-color 0.3s;
}

.hd-do-choi-thu-cung-form-control:focus {
  border-color: var(--primary-color);
  outline: none;
}

.hd-do-choi-thu-cung-textarea {
  height: 150px;
  resize: none;
}

.hd-do-choi-thu-cung-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hd-do-choi-thu-cung-submit-btn:hover {
  background-color: var(--dark-blue);
}

.hd-do-choi-thu-cung-btn-icon {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

/* Contact Info Styles */
.hd-do-choi-thu-cung-contact-info {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hd-do-choi-thu-cung-contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 0 150px;
}

.hd-do-choi-thu-cung-contact-info-section {
  margin-bottom: 25px;
}

.hd-do-choi-thu-cung-contact-info-section:last-child {
  margin-bottom: 0;
}

.hd-do-choi-thu-cung-info-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--white);
  font-family: lato-black;
  text-transform: uppercase;
}

.hd-do-choi-thu-cung-info-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

.hd-do-choi-thu-cung-info-item {
  margin-bottom: 8px;
}

.hd-do-choi-thu-cung-info-item:last-child {
  margin-bottom: 0;
}

.hd-do-choi-thu-cung-info-label {
  font-weight: 600;
  margin-right: 5px;
}

.hd-do-choi-thu-cung-info-value {
  font-weight: 400;
}

.hd-do-choi-thu-cung-social-icons-large {
  display: flex;
  gap: 15px;
}

.hd-do-choi-thu-cung-social-icon-large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s;
}

.hd-do-choi-thu-cung-social-icon-large:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Search Modal Styles */
.hd-do-choi-thu-cung-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.hd-do-choi-thu-cung-search-modal.active {
  display: block;
}

.hd-do-choi-thu-cung-search-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.hd-do-choi-thu-cung-search-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  background-color: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hd-do-choi-thu-cung-search-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hd-do-choi-thu-cung-search-title {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.hd-do-choi-thu-cung-search-input-group {
  position: relative;
  margin-bottom: 30px;
}

.hd-do-choi-thu-cung-search-input {
  width: 100%;
  height: 60px;
  padding: 10px 70px 10px 20px;
  border: 2px solid #eee;
  border-radius: 50px;
  font-size: 16px;
  color: #333;
  transition: border-color 0.3s;
}

.hd-do-choi-thu-cung-search-input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.hd-do-choi-thu-cung-search-btn:hover {
  color: var(--red);
  transition: color 0.3s;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
}

.hd-do-choi-thu-cung-search-popular-title {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hd-do-choi-thu-cung-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hd-do-choi-thu-cung-search-tag {
  display: inline-block;
  padding: 8px 15px;
  background-color: #f5f5f5;
  color: #333;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.hd-do-choi-thu-cung-search-tag:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hd-do-choi-thu-cung-contact-form-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .hd-do-choi-thu-cung-contact-info {
    height: auto;
  }
}

@media (max-width: 767px) {
  .hd-do-choi-thu-cung-contact-section {
    padding: 50px 0;
  }

  .hd-do-choi-thu-cung-contact-title {
    font-size: 28px;
  }

  .hd-do-choi-thu-cung-info-title {
    font-size: 20px;
  }

  .hd-do-choi-thu-cung-search-modal-content {
    padding: 30px 20px;
  }

  .hd-do-choi-thu-cung-search-title {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .hd-do-choi-thu-cung-contact-title {
    font-size: 24px;
  }

  .hd-do-choi-thu-cung-contact-subtitle {
    font-size: 14px;
  }

  .hd-do-choi-thu-cung-form-control {
    height: 45px;
  }

  .hd-do-choi-thu-cung-submit-btn {
    width: 100%;
  }

  .hd-do-choi-thu-cung-contact-info {
    padding: 30px 20px;
  }

  .hd-do-choi-thu-cung-info-title {
    font-size: 18px;
  }

  .hd-do-choi-thu-cung-search-input {
    height: 50px;
  }
}
.hd-ban-do-frame {
  overflow: hidden;
  max-height: 500px;
}
.hd-ban-do-frame iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: all !important;
}

.hd-do-choi-thu-cung-search-btn-go {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hd-do-choi-thu-cung-search-btn-go:hover {
  background-color: var(--dark-blue);
}
/* trang liên hệ end */
