@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Public+Sans:wght@300;400;500;600&display=swap");

:root {
  --header-height: 70px;
  --main-bg: #f5f5f5;
  --main-transition: all 0.3s ease;
  --main-font: "Public Sans", sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --main-font-weight: 500;
  --main-border-radius: 5px;
  --main-color: #fff;
}

/* Container chính */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  height: var(--header-height);
  border-bottom: 1px solid #ddd;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  transition: var(--main-transition);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Row trong header */
header .row-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
/* heading text */

/* Logo */
.header-logo img {
  width: 130px;
  height: 70px;
  cursor: pointer;
}

/* Menu */
.header-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav ul li a {
  display: block;
  padding: 0 20px;
  line-height: var(--header-height);
  font-size: 20px;
  font-weight: 550;
  color: #333;
  text-decoration: none;
  transition: var(--main-transition);
  font-style: var(--main-font);
}

.header-nav ul li a:hover {
  background-color: var(--main-bg);
  color: #003399;
  border-radius: 5px;
}

/* Nút chọn ngôn ngữ */
.language-buttons {
  display: flex;
  gap: 10px;
}

.flag-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.flag-btn img {
  width: 32px;
  height: 24px;
  border-radius: 3px;
  transition: var(--main-transition);
}

.flag-btn:hover img {
  opacity: 0.8;
}
/* img content */
.image-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Chiều cao toàn màn hình */
  overflow: hidden;
  margin-top: 70px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Giúp ảnh lấp đầy vùng */
  object-position: center; /* Canh giữa ảnh */
  display: block;
  border-radius: 3%;
}
.overlay-content {
  position: absolute;
  top: 50%;
  left: 5%; /* cách mép trái một chút */
  right: 5%; /* cách mép phải một chút → không bao giờ tràn */
  max-width: 900px; /* giới hạn chiều rộng tối đa */
  transform: translateY(
    -50%
  ); /* chỉ dịch theo chiều dọc để căn giữa theo chiều cao */
  text-align: left; /* căn lề trái như bạn muốn */
  color: white;
  padding: 20px 30px; /* tạo khoảng thở bên trong */
  box-sizing: border-box;
}

.overlay-content h1 {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
}

.overlay-content p {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 55px;
  color: white;
}

.btn-primary {
  background-color: black;
  color: white;
  padding: 25px 35px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none; /* xoá gạch chân */
}

.btn-primary:hover {
  background-color: #0056b3;
}

/*  product */
.highlight-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 100px;
  font-family: var(--main-font);
}
.left {
  width: 45%;
}
.left h1 {
  font-size: 55px;
  font-weight: bold;
  margin: 0 0 20px 0;
  line-height: 1.1;
}
.left p {
  font-size: 30px;
  margin: 0 0 30px 0;
  line-height: 1.5;
  color: #333;
}
.btn-view {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: 0.25s ease;
  text-decoration: none; /* xoá gạch chân */
}

.btn-view:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.right {
  width: 55%; /* nới rộng phần ảnh */
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 cột */
  gap: 15px; /* giảm khoảng cách giữa ảnh */
  margin-left: 50px;
}

.large {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 90%; /* chiếm hết cột */
  height: 420px; /* bạn chỉnh cao theo ý muốn */
  object-fit: fill;
  border-radius: 10px;
  align-self: center; /* căn giữa so với 2 ảnh nhỏ */
  margin-left: 30px;
}

.small-top,
.small-bottom {
  grid-column: 2;
  width: 90%; /* bằng chiều rộng ảnh lớn */
  height: 400px; /* chỉnh theo ý bạn */
  object-fit: fill;
  border-radius: 10px;
}
/*dsachsp*/
.product-section {
  padding: 50px 24px 120px;
}
.title {
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.product-list {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 100px;
}

/* dùng a làm card */
.product-card {
  width: 420px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.product-img {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-title {
  margin-top: 12px;
  font-size: 30px;
  font-weight: 600;
}
.btn-center {
  text-align: center;
  margin-top: 30px;
}

.btn-product {
  display: inline-block;
  padding: 16px 36px;
  background: #000;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.25s ease;
  letter-spacing: 1px;
}

.btn-product:hover {
  background: #333;
  transform: translateY(-3px);
}

/* Phần mới: Về chúng tôi */

/* slider */
.header-section {
  text-align: center;
  padding: 50px 20px;
  margin-top: 100px;
  margin-bottom: 50px;
}
.header-section h2 {
  font-size: 50px;
  margin-bottom: 10px;
}
.header-section p {
  font-size: 30px;
  color: #555;
  max-width: 1000px;
  margin: 0 auto 20px;
}
.header-section .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.slider {
  width: 100%;
  max-width: 100vw; /* Giới hạn chiều rộng cho đẹp */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  border-radius: 12px; /* bo góc nhẹ cho sang */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.slider-items {
  position: relative;
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slider-item {
  min-width: 100%;
  height: 1050px; /* chiều cao đồng bộ */
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ảnh rõ nét hơn */
  object-position: center;
  border-radius: 12px;
}

/* Nút điều hướng */
.slider-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 10;
}

.slider-arrow i {
  cursor: pointer;
  font-size: 40px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 12px;
  transition: background 0.3s, transform 0.2s;
}

.slider-arrow i:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

/* zalo btn*/
.zalo-container {
  position: fixed;
  bottom: 20px;
  right: 20px; /* Thay left bằng right để di chuyển sang bên phải */
  z-index: 9999; /* Đảm bảo hiển thị trên các phần tử khác */
}

.zalo-btn {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.zalo-btn:hover {
  transform: scale(1.1); /* Phóng to khi hover */
}

.zalo-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ẩn trên màn hình nhỏ nếu cần */
@media (max-width: 600px) {
  .zalo-container {
    display: none;
  }
}

/* footer */

/* styles.css */

/* Assuming you have a .container class like in your header */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px; /* Adjust padding to match your header if needed */
}

/* CSS for the entire section */
.hk-eco-section {
  background: linear-gradient(135deg, #4898ab, #90d46c);
  color: var(--main-color);
  padding: 60px 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
  position: relative;
  width: 1950px;
}

/* --- FOOTER UPPER --- */
.hk-eco-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  gap: 60px;
  max-width: 1900px;
}

/* Cột trái: Logo + mô tả + nút */
.hk-eco-info {
  max-width: 60%;
  color: #fff;
  text-align: left;
}

.hk-eco-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hk-eco-description {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 600px;
}

/* Nút */
.hk-eco-button {
  display: inline-block;
  padding: 14px 28px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.hk-eco-button:hover {
  background: #e6e6e6;
}

/* Cột phải: Thông tin liên hệ */
.hk-eco-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ✅ giãn đều chiều cao */
  gap: 30px;
  min-height: 280px; /* ✅ giúp khớp chiều cao với cột trái */
}

.hk-eco-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 18px;
}
.hk-eco-contact span {
  font-weight: 600; /* đậm rõ ràng */
  font-size: 20px;
  text-align: left;
}

.custom-icon {
  width: 65px;
  height: 55px;
}

.hk-eco-button {
  background-color: #ffffff;
  color: #0097b2;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 40px;
}

.hk-eco-button:hover {
  background-color: #f0f0f0;
}

.hk-eco-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
  gap: 20px;

  width: 1250px;
  margin-left: 350px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-right: 40px;
  margin-bottom: 20px;
}

.footer-column:last-child {
  margin-right: 0;
}

.footer-column h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--main-color);
  text-decoration: none;
  font-size: 20px;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-column p {
  line-height: 1.5;
  font-size: 20px;
}
.page-wrapper {
  max-width: 1400px; /* rộng hơn để thoáng */
  margin: 100px auto; /* căn giữa và cách trên */
  padding: 60px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px; /* khoảng cách giữa các khối */
  font-family: "Open Sans", sans-serif;
}

/* Top text */
.top-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.left-text {
  flex: 1;
}

.left-text p {
  font-size: 20px;
  line-height: 1.8;
  color: #222;
  margin: 0;
  margin-bottom: 10px;
  font-weight: 500;
}

.right-heading {
  flex: 1;
  text-align: right;
}

.right-heading h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: #000;
  margin: 0;
}

/* Slider + Cards layout */
.main-content {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.image-slider {
  position: relative;
  flex: 2;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.image-slider .slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.image-slider .slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 12px;
}

/* Nút điều hướng trong ảnh */
.image-slider button {
  position: absolute;
  top: 50%; /* căn giữa theo chiều dọc */
  transform: translateY(-50%); /* chỉnh lại đúng giữa */
  background: rgba(0, 0, 0, 0.4); /* nền tối mờ */
  color: #fff;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  border-radius: 50%; /* nút tròn */
  font-size: 24px;
  font-weight: bold;
  z-index: 5;
  transition: all 0.3s ease;
}

.image-slider button:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.15);
}

/* vị trí nút */
.image-slider .prev {
  left: 15px; /* cách mép trái */
}
.image-slider .next {
  right: 15px; /* cách mép phải */
}
/* Cards */
.cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: linear-gradient(135deg, #4898ab, #90d46c);
  border-radius: 12px;
  padding: 24px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
  height: 105px;
}
.card:hover {
  transform: translateY(-6px);
}

.card strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
}

/* Hiệu ứng trượt từ dưới lên */
.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.slide-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ve chung toi  */
.hero-section {
  width: 100%;
  min-height: 150vh;
  background: url("/frontend/image/anhcay.jpg") no-repeat center center/cover;
  color: #fff;
  padding: 80px 20px;
}

/* Box "Về chúng tôi" */
/* ======= VỀ CHÚNG TÔI ======= */
.about-section {
  background: url("/frontend/image/anhcaymo.jpeg") center/cover no-repeat;
  position: relative;
  width: 1350px; /* Giữ nguyên kích thước cố định */
  margin: 0 auto; /* ✅ Căn giữa toàn block */
  border-radius: 20px;
  margin-top: 100px;

  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  color: #fff;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 0;
}

.about-container {
  position: relative;
  z-index: 1;

  border-radius: 16px;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1500px;
  width: 100%;
  backdrop-filter: blur(8px);
}

.about-content {
  color: #fff;
  flex: 1;
  width: 600px;
}

.about-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.about-content p {
  font-size: 30px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-content .highlight {
  font-size: 34px;
  font-style: italic;
  font-weight: 600;
  color: #fff;
}

.btn-contact {
  display: inline-block;
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #e6e6e6;
  transform: scale(1.05);
}

.about-image {
  flex: 1;
  text-align: right;
}

.about-image img {
  width: 600px;
  height: 556px;

  border-radius: 12px;
  object-fit: cover;
}
/*video*/
.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  position: relative;
}

.video-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  width: 1350px;

  padding: 50px 60px;
  border-radius: 16px;
  color: #fff;
}

.video-box video {
  width: 400px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
}

.video-content {
  max-width: 450px;
}

.video-content .subtitle {
  font-size: 30px;
  opacity: 0.9;
  margin-bottom: 10px;
  margin-top: 150px;
}

.video-content h3 {
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.video-content p {
  font-size: 25px;
  line-height: 1.6;
  opacity: 0.9;
}
/* Tiêu đề lợi ích */
.benefits-section h2 {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Lưới lợi ích */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1350px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.164);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 20px;

  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
}

.benefit-card h3 {
  font-size: 80px;
  font-weight: bold;
}

.benefit-card h4 {
  font-size: 30px;
  margin-bottom: 15px;
}

.benefit-card p {
  font-size: 20px;
  line-height: 1.5;
}

/* =========================
   Thư viện tài liệu tải xuống
   ========================= */
.library-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  font-family: var(--main-font);
}

.library-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 40px;
  margin-left: 20px;
}

.library-header h1 {
  flex: 1;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.library-header p {
  flex: 2;
  font-size: 25px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.library-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.library-card {
  background: #eaeaea;
  padding: 32px 28px;
  border-radius: 12px;
  flex: 1;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Icon styles */
.library-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.icon-1 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.icon-1 div {
  width: 42px;
  height: 12px;
  background: #123a8c;
  border-radius: 50%;
}

.icon-2 {
  width: 42px;
  height: 42px;
  position: relative;
}
.icon-2::before,
.icon-2::after {
  content: "";
  display: block;
  width: 42px;
  height: 20px;
  background: #123a8c;
}
.icon-2::before {
  border-radius: 0 0 40px 40px;
}
.icon-2::after {
  border-radius: 40px 40px 0 0;
  margin-top: 2px;
}

.icon-3 {
  width: 42px;
  height: 42px;
  background: #123a8c;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-3::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
}

/* Card text */
.library-card h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 12px 0 14px;
  color: #000;
}

.library-card p {
  font-size: 24px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1;
}

/* Button */
.library-btn {
  display: inline-block;
  background: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #123a8c;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s;
}

.library-btn:hover {
  background: #f0f0f0;
}
.custom-video {
  /* Đổi tên class sang custom-video */
  width: 100%;
  height: 700px;

  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 18px;
  position: relative;
  overflow: hidden; /* Để tránh nội dung tràn ra ngoài */
  border-radius: 10px; /* Bo góc cho container */
  margin-top: 50px;
}

video {
  width: 100%;
  height: 700px; /* Làm video đầy chiều cao container */
  object-fit: cover; /* Giữ tỷ lệ và che đầy container */
  border-radius: 10px;
}
/*category*/

.Category-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.Category-content h1 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.3;
}

.consult-section {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 0 0 10px 10px;
}

.consult-section p {
  font-size: 30px;
  color: #333;
  max-width: 1400px;
  margin: 0 auto 20px;
  line-height: 1.6;
  padding-top: 30px;
}

.btn-consult {
  background: linear-gradient(135deg, #4898ab, #90d46c);
  color: white;
  font-weight: bold;
  padding: 20px 38px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.product-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 90px 80px;
  background-color: #fff;
  flex-wrap: wrap; /* để responsive trên mobile */
  margin-top: 80px;
}

.product-image img {
  width: 620px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-content {
  max-width: 600px;
}

.product-content h2 {
  font-size: 50px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  margin-top: 0px;
}

.product-content p {
  font-size: 25px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}

.btn-quote {
  background-color: #000;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background-color: #222;
  transform: scale(1.05);
}

.plastic-section {
  text-align: left;
  padding: 60px 80px;
  background-color: #fff;
}

.plastic-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  background: #eaeaea;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  width: 100%;
  text-align: center;
}

.plastic-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px; /* tạo khoảng cách giữa các hàng */
}

.plastic-card {
  text-align: center;
  width: 400px;
}

.plastic-image {
  width: 100%;
  height: 500px;
  background-color: #e5e5e5; /* màu xám placeholder */
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plastic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plastic-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
  color: #111;
}

.ecocard {
  background-color: #f5f5f5de;
  border-radius: 8px;
  padding: 20px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
  margin-top: 50px;
}

.ecocard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  border-radius: 8px;
}

.text-content {
  position: relative;
  z-index: 1;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  margin-left: 110px;
  margin-right: 110px;
}

.text-content p {
  margin: 0 0 10px 0;
  font-size: 30px;
}

.button {
  background: linear-gradient(135deg, #4898ab, #90d46c);
  color: white;
  border: none;
  padding: 20px 34px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 200px;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-2px);
}
/* paper section */
.paper-section {
  text-align: center;
  padding: 60px 80px;
  background-color: #fff;
}

.paper-content h2 {
  font-size: 45px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  margin-top: 150px;
}

.paper-content p {
  font-size: 25px;
  line-height: 1.6;
  color: #333;
  max-width: 1500px;
  margin: 0 auto 25px;
}

.btn-quote {
  background-color: #000;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 24px 36px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background-color: #222;
  transform: scale(1.05);
}

.paper-image {
  margin-top: 40px;
}

.paper-image img {
  width: 100%;
  max-width: 1500px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-gallery {
  background-color: #fff;
  padding: 40px 60px;
}

.product-gallery h2 {
  background-color: #eaeaea;
  padding: 12px 20px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  display: inline-block;
  border-radius: 4px;
  width: 100%;
  text-align: center;
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;

  object-fit: cover;
  display: block;
}

/* Hàng trên (2 ảnh) */
.top-row .gallery-item {
  width: 45%; /* mỗi ảnh chiếm 45% để vừa 2 ảnh */
}

/* Hàng dưới (3 ảnh) */
.bottom-row .gallery-item {
  width: 32%; /* mỗi ảnh chiếm 30% để vừa 3 ảnh */
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.bowl-section {
  background-color: #fff;
  padding: 40px 60px;
}

.bowl-section h2 {
  background-color: #eaeaea;
  padding: 12px 20px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  display: inline-block;
  border-radius: 4px;
  width: 100%;
  text-align: center;
}

.bowl-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.bowl-item {
  width: 40%; /* 2 ảnh trên 1 hàng */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bowl-item img {
  width: 100%;
  height: 500px;
  object-fit: fill;
  display: block;
}

.bowl-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* tui vai */
.bag-section {
  background-color: #fff;
  padding: 40px 60px;
  margin-top: 150px;
}

.bag-section h2 {
  background-color: #eaeaea;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  display: inline-block;
  border-radius: 4px;
  width: 100%;
  text-align: center;
}

.bag-large {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bag-large img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.bag-large:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.bag-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.bag-item {
  width: 45%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* căn giữa ảnh trong block */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.bag-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.bag-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Phần tổng thể */
.custom-product-section {
  text-align: center;
  padding: 80px 20px;

  font-family: "Montserrat", sans-serif;
}

/* Tiêu đề */
.custom-content h2 {
  font-size: 60px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Đoạn mô tả */
.custom-content p {
  font-size: 25px;
  color: #333;
  max-width: 1650px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

/* Nút tư vấn */
.btn-consult {
  background-color: #5dbb63;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-consult:hover {
  background-color: #4ca855;
  transform: scale(1.05);
}

/* Video */
.video-container {
  max-width: 95%;
  border-radius: 16px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}
/* coperate */
.cooperate-process {
  padding: 80px 20px;
  font-family: "Montserrat", sans-serif;
  text-align: left;
  width: 1800px;
}

.cooperate-process h2 {
  font-size: 60px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 10px;
}

.cooperate-process .sub-title {
  font-size: 25px;
  color: #333;
  margin-bottom: 50px;
  margin-top: 50px;
}

.process-content {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 25px;
}

.process-box {
  background-color: #eaeaea;
  border-radius: 12px;
  padding: 30px 20px;
  width: 350px;

  text-align: left;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.process-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.process-box img {
  width: 70px;
  margin-bottom: 12px;
}

.process-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.process-box p {
  font-size: 20px;
  color: #333;
  line-height: 1.5;
}

.process-desc {
  max-width: 280px;
  text-align: left;
}

.process-desc p {
  font-size: 20px;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-quote {
  background-color: #000;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background-color: #222;
  transform: scale(1.05);
}

/*chinh sach mua hang */
.policy-section {
  padding: 80px 20px;
  background-color: #fff;
  font-family: var(--main-font);
  margin-right: 170px;
}

.policy-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.policy-item {
  margin-bottom: 50px;
}

.policy-item h3 {
  font-size: 35px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.policy-item p {
  font-size: 25px;
  line-height: 1.7;
  color: #333;
  margin: 0;
  text-align: justify;
}
/*trang lhe */
/* ===== SECTION LIÊN HỆ HK ECO ===== */
.contact-banner {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
  border-radius: 10px;
  margin: 80px auto;
}

.contact-banner .contact-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-banner .contact-overlay {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: left;
  max-width: 800px;
  padding: 0 20px;
}

.contact-banner h4 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-banner h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-banner p {
  font-size: 28px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #eee;
}

/* ====== THÔNG TIN LIÊN HỆ ====== */
.contact-info {
  padding: 80px 5%;
  background-color: #fff;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  flex-wrap: wrap;
}

.contact-image img {
  width: 700px;
  height: 700px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-details {
  max-width: 700px;
  color: #222;
}

.contact-details h2 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 15px;
}

.contact-details p {
  font-size: 26px;
  margin-bottom: 20px;
  font-style: italic;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  font-size: 25px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.contact-details strong {
  color: #000;
  font-weight: 600;
}
/* ====== BẢN ĐỒ LIÊN HỆ ====== */
.map-section {
  padding: 60px 100px;
  background-color: #fff;
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.map-title h1 {
  font-size: 50px;
  font-weight: 700;
  margin: 0;
  color: #111;
  margin-left: 100px;
}

.map-title h2 {
  font-size: 38px;
  font-weight: 600;
  margin: 5px 0 0;
  color: #111;
  margin-left: 100px;
}

.map-header p {
  font-size: 22px;
  color: #333;
  max-width: 480px;
  line-height: 1.5;
  margin-right: 330px;
}

.map-container {
  display: flex;
  justify-content: center;
}

.map-container iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 10px;
}
.faq-section {
  padding: 80px 100px;
  background-color: #fff;
  color: #111;
  font-family: "Inter", sans-serif;
}

.faq-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-left: 100px;
}

.faq-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 50px;
  margin-left: 100px;
}

.faq-columns {
  display: flex;
  gap: 80px;
  justify-content: space-between;
}

.faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-item h3 {
  font-size: 30px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 25px;
  line-height: 1.6;
  color: #333;
}

/* Hiệu ứng highlight cho section được chọn */
#plastic-section,
#paper-section,
#fabric-section {
  transition: all 0.5s ease;
  border-radius: 8px;
  padding: 10px;
}

/* Đảm bảo scroll mượt mà */
html {
  scroll-behavior: smooth;
}
/* reponsive  */
/* Responsive cho iPhone 14 Pro Max */
@media (max-width: 430px) {
  /* Header */
  header .row-flex {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
  }

  .header-logo img {
    width: 80px;
    margin-bottom: 10px;
  }

  .header-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .header-nav ul li a {
    padding: 10px;
    font-size: 14px;
  }

  /* Banner */
  .image-container {
    height: 60vh; /* Giảm chiều cao banner */
  }

  .overlay-content {
    left: 50%;
    text-align: left;
    width: 90%;
  }

  .overlay-content h1 {
    font-size: 28px;
  }

  .overlay-content p {
    font-size: 16px;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Footer */
  .hk-eco-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .hk-eco-contact {
    width: 100%;
  }

  .footer-columns {
    flex-direction: column;
  }

  .footer-column {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/* Font cho tiêu đề */
/* Áp dụng Public Sans cho toàn bộ trang */
* {
  font-family: var(--main-font);
}

/* Giữ Montserrat cho các tiêu đề chính */
h1,
h2,
h3,
h4,
h5,
h6,
.title,
.overlay-content h1,
.left h1,
.product-section .title,
.header-section h2,
.about-content h2,
.benefits-section h2,
.library-header h1,
.product-content h2,
.paper-content h2,
.custom-content h2,
.cooperate-process h2,
.policy-item h3,
.contact-banner h1,
.contact-details h2,
.map-title h1,
.faq-header h1 {
  font-family: var(--heading-font);
}
/* ===============================
   MENU RESPONSIVE (MOBILE ≤ 430px)
   =============================== */
/* ===========================================
   RESPONSIVE HOÀN CHỈNH CHO IPHONE 14 PRO MAX
   =========================================== */
@media (max-width: 430px) {
  /* Reset và base styles */
  * {
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
  }

  /* Container */
  .container {
    padding: 0 15px;
    max-width: 100%;
  }

  /* Header Mobile Optimized */
  header {
    height: 100px;
    padding: 0 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }

  header .row-flex {
    position: relative;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
    font-size: 28px;
    color: #333;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
  }

  .header-logo {
    text-align: center;
  }

  .header-logo img {
    width: 100px;
    height: 70px;
    transition: all 0.3s ease;
  }

  .language-buttons {
    position: absolute;
    right: 0;
    top: 40%;
    transform: translateY(-30%);
    display: flex;
    gap: 3px;
  }

  .flag-btn img {
    width: 25px;
    height: 25px;
    border-radius: 3px;
    transition: transform 0.3s ease;
  }

  .flag-btn:hover img {
    transform: scale(1.1);
  }

  /* Navigation Mobile */
  .header-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: linear-gradient(135deg, #4898ab 0%, #90d46c 100%);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-nav.active {
    left: 0;
  }

  .header-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 0 20px;
  }

  .header-nav ul li {
    width: 100%;
    text-align: center;
    margin: 5px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .header-nav.active ul li {
    opacity: 1;
    transform: translateY(0);
  }

  .header-nav ul li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .header-nav ul li:nth-child(2) {
    transition-delay: 0.15s;
  }
  .header-nav ul li:nth-child(3) {
    transition-delay: 0.2s;
  }
  .header-nav ul li:nth-child(4) {
    transition-delay: 0.25s;
  }
  .header-nav ul li:nth-child(5) {
    transition-delay: 0.3s;
  }

  .header-nav ul li a {
    display: block;
    padding: 20px 15px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .header-nav ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
  }

  /* Main Banner */
  .image-container {
    height: 70vh;

    border-radius: 20px;
  }

  .image-container img {
    border-radius: 20px;
  }

  .overlay-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    padding: 0 20px;
  }

  .overlay-content h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .overlay-content p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  .btn-primary {
    background-color: black;
    color: white;
    padding: 25px 35px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none; /* xoá gạch chân */
  }

  .btn-primary:hover {
    transform: translateY(-3px);
    background-color: #0056b3;
  }

  .page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; /* Căn giữa tất cả các khối con theo chiều ngang */
    padding: 20px 15px;
    text-align: center;
    gap: 30px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .top-section {
    display: flex;
    flex-direction: column;
    align-items: center; /* Căn giữa nội dung trong top-section */

    gap: 20px;
    width: 100%;
  }

  .right-heading h1 {
    font-size: 28px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .left-text {
    display: flex;
    flex-direction: column;
    align-items: center; /* Căn giữa đoạn văn và nút bấm */
    width: 100%;
  }

  .left-text p {
    font-size: 20px;
    /* Đảm bảo dòng chữ cuối cùng cũng ở giữa */
    max-width: 100%;
    margin-bottom: 20px;
  }

  /* Nút bấm */
  .btn-view {
    display: inline-block;
    margin: 0 auto; /* Đảm bảo nút nằm giữa */
    padding: 14px 30px;
  }

  /* Nội dung chính và Slider */
  .main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 30px;
  }

  .image-slider {
    width: 90%;
    max-width: 400px; /* Giới hạn chiều rộng ảnh cho đẹp trên mobile */
    height: 300px;
    margin: 0 auto;
  }

  /* Các thẻ Card */
  .cards {
    display: flex;
    flex-direction: column;
    align-items: center; /* Căn giữa các card */
    width: 100%;
    gap: 20px;
  }

  .card {
    width: 90%; /* Để card không quá sát mép màn hình */
    display: flex;
    flex-direction: column;
    align-items: center; /* Căn giữa nội dung bên trong card */
    text-align: center;
    padding: 25px;
  }
  .card p {
    font-size: 12px;
  }
  /* Sản phẩm nổi bật */
  .highlight-section {
    flex-direction: column;
    padding: 40px 15px;
    margin-top: 50px;
    gap: 40px;
  }

  .left {
    width: 100%;
    text-align: center;
  }

  .left h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .left p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .right {
    width: 100%;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: start; /* Đảm bảo các phần tử bắt đầu từ cùng một vị trí dọc */
  }

  .large,
  .small-top,
  .small-bottom {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    grid-row: 1;
    object-fit: cover; /* Quan trọng: ảnh sẽ cắt để vừa khung, không bị méo */
    display: block;
  }

  .large {
    grid-column: 1;
    margin-left: 0;
  }
  .small-top {
    grid-column: 2;
  }
  .small-bottom {
    grid-column: 3;
  }

  /* Danh sách sản phẩm */
  .product-section {
    margin-bottom: 0px;
  }

  .title {
    font-size: 32px;
    margin-bottom: 0px;
  }

  .product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 card 1 hàng */
    gap: 12px;
    align-items: stretch;
    margin-top: 20px;
  }

  .product-card {
    width: 100%;
  }

  .product-img {
    height: 150px; /* chiều cao ảnh gọn cho mobile */
    border-radius: 14px;
  }

  .product-title {
    font-size: 13px;
    line-height: 1.3;
    margin-top: 8px;
  }

  .btn-center {
    margin-top: 40px;
  }

  .btn-product {
    padding: 18px 35px;
    font-size: 16px;
  }

  /* Về chúng tôi */
  .about-section {
    width: 100%;
    margin-top: 50px;
    border-radius: 0;
    padding-bottom: 0px;
  }

  .about-container {
    flex-direction: column;
    padding: 40px 20px 20px 20px;
    gap: 40px;
    border-radius: 0;
  }

  .about-content {
    width: 100%;
    text-align: center;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 18px;
    line-height: 1.6;
  }

  .about-content .highlight {
    font-size: 22px;
  }

  .btn-contact {
    padding: 16px 28px;

    font-size: 16px;
  }

  .about-image {
    display: none;
  }

  /* Video Section */
  .video-section {
    margin-top: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .video-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
    width: 100%;
    border-radius: 20px;
  }

  .video-box video {
    width: 100%;
    height: 200px;
    border-radius: 16px;
  }

  .video-content {
    text-align: center;
  }

  .video-content .subtitle {
    font-size: 18px;
    margin-top: 10px;
  }

  .video-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .video-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Lợi ích */
  .benefits-section {
    padding: 50px 15px;
    padding-bottom: 30px;
  }

  .benefits-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Chia thành 2 cột */
    gap: 10px; /* Giảm khoảng cách giữa các card */
    padding: 0 10px;
  }

  .benefit-card {
    padding: 15px 10px; /* Giảm padding để chữ không bị quá sát lề card */
    border-radius: 10px; /* Có thể bo góc nhỏ lại một chút cho cân đối */
    /* Giữ nguyên các thuộc tính khác như text-align: center, backdrop-filter... */
  }

  .benefit-card h3 {
    font-size: 32px; /* Có thể giảm nhẹ cỡ chữ số 01, 02 nếu cần */
  }

  .benefit-card h4 {
    font-size: 16px; /* Giảm cỡ chữ tiêu đề card */
  }

  .benefit-card p {
    font-size: 12px; /* Giảm cỡ chữ nội dung để hiển thị đủ 2 cột */
    line-height: 1.4;
  }

  /* Năng lực & Giải pháp */
  .header-section {
    padding: 50px 15px;
    margin-top: 50px;
    text-align: center;
  }

  .header-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .header-section p {
    font-size: 16px;
    line-height: 1.6;
  }

  .header-section .btn {
    padding: 16px 28px;

    font-size: 16px;
  }

  .slider {
    border-radius: 0;
  }

  .slider-item {
    height: auto; /* Cho phép chiều cao tự động theo tỷ lệ ảnh */
    aspect-ratio: 16 / 9; /* Hoặc tỷ lệ thực tế của ảnh bạn (ví dụ 4/3) */
    overflow: hidden;
  }

  .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Giúp ảnh phủ kín nhưng vẫn giữ đúng tỷ lệ */
    display: block;
  }

  .slider-arrow i {
    font-size: 32px;
    padding: 10px;
  }

  /* Thư viện tài liệu */
  .library-section {
    padding: 50px 15px;
    margin: 50px auto;
  }

  .library-header {
    width: 100%; /* Đảm bảo header chiếm hết chiều ngang màn hình */
    display: flex;
    flex-direction: column;
    align-items: center; /* Căn giữa các phần tử con (h1, p) theo trục ngang */
    text-align: center; /* Căn giữa nội dung chữ bên trong */
    margin: 0 auto 30px auto; /* Căn giữa toàn bộ khối và tạo khoảng cách dưới */
    padding: 0 15px; /* Tránh chữ chạm sát mép màn hình */
  }

  .library-header h1 {
    font-size: 28px; /* Giữ nguyên hoặc điều chỉnh tùy ý */
    width: 100%;
    margin-bottom: 15px;
    margin-top: 50px;
  }

  .library-header p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 95%; /* Giới hạn độ rộng đoạn văn để dễ đọc hơn */
  }

  .library-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Chia đúng 3 cột */
    gap: 8px; /* Giảm khoảng cách giữa các card xuống tối thiểu */
    padding: 0 5px; /* Giảm lớp đệm hai bên màn hình */
    align-items: stretch;
  }

  .library-card {
    max-width: 100%;
    padding: 15px 10px; /* Giảm padding cho gọn */
    background: #f5f5f5; /* Màu nền xám nhạt như ảnh mẫu */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Đẩy nút tải về xuống đáy thẻ */
  }

  .library-card h2 {
    font-size: 16px; /* Giảm cỡ chữ tiêu đề thẻ */
    margin: 10px 0;
  }

  .library-card p {
    font-size: 12px; /* Giảm cỡ chữ mô tả */
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .custom-video {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    height: auto;
  }

  .custom-video video {
    border-radius: 16px;
    margin-top: 0;
    object-fit: cover;
  }

  /* Footer */
  .hk-eco-section {
    width: 100%;
    padding: 50px 15px;
    border-radius: 0;
  }

  .hk-eco-upper {
    flex-direction: column;
    gap: 40px;
    padding: 0;
    text-align: center;
  }

  .hk-eco-info {
    max-width: 100%;
  }

  .hk-eco-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .hk-eco-description {
    font-size: 16px;
    line-height: 1.6;
  }

  .hk-eco-button {
    padding: 16px 28px;

    font-size: 16px;
  }

  .hk-eco-contact {
    min-height: auto;
    gap: 25px;
    align-items: left;
  }

  .hk-eco-contact-item {
    justify-content: left;
    text-align: left;
  }

  .hk-eco-contact-item span {
    font-size: 16px;
  }

  .custom-icon {
    width: 50px;
    height: 45px;
  }

  .hk-eco-divider {
    margin: 40px 0;
  }

  .footer-columns {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-column {
    margin-right: 0;
    width: 100%;
  }

  .footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .footer-column ul li {
    margin-bottom: 8px;
  }

  .footer-column p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Zalo Button */
  .zalo-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 150, 255, 0.3);
    transition: all 0.3s ease;
  }

  .zalo-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 150, 255, 0.4);
  }

  /* Smooth animations */
  .slide-up {
    opacity: 1;
    transform: translateY(0);
  }

  /* Product hover effects for mobile */
  .product-card:hover {
    transform: translateY(-5px);
  }

  /* Hide scrollbar for menu */
  .header-nav::-webkit-scrollbar {
    display: none;
  }
  /* === CATEGORY.HTML === */
  .Category-content h1 {
    font-size: 25px;
    text-align: center;

    width: 500px;
  }
  /* Consult Section */
  .consult-section {
    padding: 40px 20px;
    text-align: center;
    margin-top: 0;
  }

  .consult-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .btn-consult {
    padding: 16px 28px;
    font-size: 16px;
  }

  /* Product Info */
  .product-info {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
    text-align: center;
  }

  .product-image img {
    width: 100%;
    height: auto;
  }

  .product-content h2 {
    font-size: 28px;
    text-align: center;
    font-weight: 800;
  }

  .product-content p {
    font-size: 16px;
    text-align: center;
  }

  .btn-quote {
    display: block; /* Biến nút thành khối để có thể dùng margin auto */
    margin: 0 auto; /* Căn giữa trái-phải tự động */
    width: fit-content; /* Quan trọng: để nút không bị kéo dài hết chiều ngang màn hình */
    padding: 16px 28px;
    font-size: 16px;
  }

  /* Plastic Section */
  .plastic-section {
    padding: 40px 20px;
    text-align: center;
  }

  .plastic-section h2 {
    font-size: 22px;
    padding: 12px 24px;
    margin-bottom: 25px;
    background: #eaeaea;
    border-radius: 8px;
    display: inline-block;
    width: auto;
    width: 100%;
  }

  .plastic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
  }

  .plastic-card {
    width: 120px;

    transition: transform 0.3s ease;
  }

  .plastic-card:hover {
    transform: translateY(-5px);
  }

  .plastic-image {
    width: 120px;
    height: 120px;

    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
  }

  .plastic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .plastic-card h3 {
    font-size: 10px;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

  /* Eco Card */
  .ecocard {
    padding: 30px 20px;
    margin-top: 0px;
  }

  .text-content {
    margin: 0;
    text-align: center;
  }

  .text-content p {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
  }

  .button {
    padding: 16px 28px;
    font-size: 16px;
    width: 250px;
  }

  /* Paper Section */
  .paper-section {
    padding: 40px 20px; /* Giảm padding cho mobile */
  }
  .paper-section h2 {
    font-size: 30px; /* Font nhỏ hơn để fit */
    text-align: center;
    margin-bottom: 20px;
    margin-top: 50px;
  }

  .paper-section p {
    font-size: 16px; /* Font nhỏ hơn để fit */
  }

  .product-gallery {
    gap: 12px; /* Gap nhỏ hơn */
    width: 100%; /* Full width trên mobile */
    padding: 0 10px; /* Thêm padding ngang */
  }

  .gallery-row {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Đổi thành 2 cột cho mobile, tránh chen chúc (hoặc 1 nếu muốn đơn giản hơn) */
  }

  .gallery-item {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Shadow nhẹ hơn trên mobile */
  }

  .gallery-item:hover {
    transform: none; /* Tắt hover trên mobile để tiết kiệm hiệu suất */
  }

  /* Bowl Section */
  /* Chỉnh lại khung bao quanh các sản phẩm bát */
  .bowl-section {
    padding: 40px 10px;
    text-align: center;
  }
  .bowl-grid {
    display: grid; /* Chuyển sang Grid */
    grid-template-columns: repeat(2, 1fr); /* Chia 2 cột bằng nhau */
    gap: 15px; /* Khoảng cách giữa các ảnh */
    padding: 10px;
    width: 100%;
  }

  /* Chỉnh lại từng thẻ sản phẩm */
  .bowl-item {
    width: 100% !important;
    max-width: none !important; /* Bỏ giới hạn 300px để ảnh không bị nhỏ */
  }

  /* Đảm bảo ảnh hiển thị đẹp và đều */
  .bowl-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* Ép ảnh vuông cho đồng bộ */
    object-fit: cover; /* Không bị méo ảnh */
    border-radius: 8px;
  }

  /* Bag Section */
  .bag-section {
    padding: 40px 20px;
    margin-top: 30px;
  }

  .bag-section h2 {
    font-size: 24px;
    text-align: center;
    width: 100%;
  }

  .bag-large {
    width: 100%;
    margin-bottom: 20px;
  }

  .bag-grid {
    display: grid !important; /* Chuyển sang Grid */
    grid-template-columns: repeat(2, 1fr) !important; /* Chia 2 cột đều nhau */
    gap: 15px !important; /* Khoảng cách giữa các túi */
    width: 100% !important;
  }

  /* Sửa lỗi item bị nhỏ hoặc xếp dọc */
  .bag-item {
    width: 100% !important; /* Chiếm trọn 1 ô của Grid */
    max-width: none !important; /* BẮT BUỘC: Xóa bỏ giới hạn 300px cũ */
  }

  /* Đảm bảo ảnh túi hiển thị vuông và đều */
  .bag-item img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1; /* Ép ảnh vuông cho đồng bộ */
    object-fit: cover; /* Cắt ảnh vừa khung, không bị méo */
    border-radius: 8px;
    display: block;
  }

  /* Custom Product Section */
  .custom-product-section {
    padding: 40px 20px;
  }

  .custom-content h2 {
    font-size: 28px;
    text-align: center;
  }

  .custom-content p {
    font-size: 16px;
    text-align: center;
  }

  .custom-video {
    height: 300px;
  }

  /* Cooperate Process */
  .cooperate-process {
    padding: 40px 20px;
    width: 100%;
  }

  .cooperate-process h2 {
    font-size: 28px;
    text-align: center;
  }

  .cooperate-process .sub-title {
    font-size: 18px;
    text-align: center;
  }

  .process-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .process-box {
    width: 100%;
    max-width: 300px;
  }

  .process-desc {
    max-width: 100%;
    text-align: center;
  }
  /* === CONTACT.HTML === */

  /* Contact Banner */
  .contact-banner {
    height: 600px;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .contact-banner img {
    height: 100%;
    width: 100%;
  }

  .contact-banner .contact-overlay {
    left: 50%;
    text-align: center;
    width: 90%;
    transform: translate(-50%, -50%);
  }

  .contact-banner h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .contact-banner h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .contact-banner p {
    font-size: 16px;
    line-height: 1.5;
  }

  /* Contact Info */
  .contact-info {
    padding: 50px 20px;
    padding-top: 0px;
    margin-top: 0px;
  }

  .contact-container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-image img {
    width: 100%;
    height: 300px;
  }

  .contact-details {
    text-align: center;
  }

  .contact-details h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .contact-details p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .contact-details ul {
    text-align: left;
  }

  .contact-details li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  /* Map Section */
  .map-section {
    padding: 50px 20px;
  }

  .map-header {
    display: flex;
    flex-direction: column;
    align-items: center; /* Quan trọng để căn giữa các thẻ div con */
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .map-title {
    width: 100%;
  }

  .map-title h1,
  .map-title h2 {
    font-size: 20px;
    margin: 0 auto 10px auto; /* Căn giữa bằng margin và reset margin mặc định */
  }
  .map-title h2 {
    font-size: 20px;
    margin-left: 0;
  }

  .map-header p {
    font-size: 16px;
    line-height: 1.6;
    margin-right: 0;
  }

  .map-container iframe {
    height: 400px;
  }

  /* FAQ Section */
  .faq-section {
    padding: 50px 20px;
  }

  .faq-header {
    text-align: center;
  }

  .faq-header h1 {
    font-size: 32px;
    margin-left: 0;
  }

  .faq-header h2 {
    font-size: 20px;
    margin-left: 0;
    margin-bottom: 30px;
  }

  .faq-columns {
    flex-direction: column;
    gap: 30px;
  }

  .faq-item {
    text-align: left;
  }

  .faq-item h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .faq-item p {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* Additional improvements for very small screens */
@media (max-width: 380px) {
  .overlay-content h1 {
    font-size: 28px;
  }

  .right-heading h1 {
    font-size: 24px;
  }

  .title {
    font-size: 28px;
  }

  .about-content h2 {
    font-size: 28px;
  }
}

/* Landscape orientation fixes */
@media (max-width: 430px) and (orientation: landscape) {
  .header-nav {
    height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .header-nav ul li a {
    padding: 15px 20px;
    font-size: 18px;
  }

  .image-container {
    height: 100vh;
  }
}

/* High DPI screen improvements */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .header-logo img {
    image-rendering: -webkit-optimize-contrast;
  }
}
/* ===========================================
   RESPONSIVE CHO TẤT CẢ CÁC TRANG
   =========================================== */

@media (max-width: 430px) {
  /* === CHUNG CHO TẤT CẢ CÁC TRANG === */

  /* === TRANG CATEGORY.HTML === */

  /* === TRANG CHÍNH SÁCH === */

  /* Policy Section */
  .policy-section {
    padding: 50px 20px;
    width: 100%;
  }

  .policy-item {
    margin-bottom: 40px;
    text-align: left;
  }

  .policy-item h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .policy-item p {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
  }

  /* Banner chính sách */
  .image-container .overlay-content h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .image-container .overlay-content p {
    font-size: 16px;
    line-height: 1.5;
  }

  /* === CẢI THIỆN CHUNG === */

  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }

  /* Improved touch targets */
  .btn-primary,
  .btn-view,
  .btn-product,
  .btn-contact,
  .btn-consult,
  .btn-quote,
  .button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Better image handling */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Improved text readability */
  p,
  li {
    line-height: 1.6;
  }

  /* Section spacing */
  section {
    padding: 40px 0;
  }

  /* Form elements */
  input,
  textarea,
  select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Additional improvements for very small screens */
@media (max-width: 380px) {
  .Category-content h1 {
    font-size: 28px;
  }

  .product-content h2 {
    font-size: 24px;
  }

  .paper-content h2 {
    font-size: 24px;
  }

  .custom-content h2 {
    font-size: 24px;
  }

  .contact-banner h1 {
    font-size: 28px;
  }

  .contact-details h2 {
    font-size: 24px;
  }
}

/* Landscape orientation fixes */
@media (max-width: 430px) and (orientation: landscape) {
  .image-container {
    height: 100vh;
  }

  .contact-banner {
    height: 100vh;
  }

  .header-nav {
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
}

/* High DPI screen improvements */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .header-logo img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .ecocard {
    background-color: rgba(45, 45, 45, 0.95);
    color: #ffffff;
  }
}

/* Print styles */
@media print {
  .zalo-container,
  .menu-toggle,
  .language-buttons {
    display: none !important;
  }
}
/* Ẩn icon menu trên máy tính */
.menu-toggle {
  display: none;
}

/* Chỉ hiện icon menu khi màn hình mobile */
@media (max-width: 430px) {
  .menu-toggle {
    display: block;
  }
}
