/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Archivo", sans-serif;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  /*background-color: #092C02;*/
  color: white;
  /*position: fixed;*/
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

/* Container and viewport fixes */
.container {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Ensure sections don't overflow */
section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 72px;
  height: 86px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease; /* Hiệu ứng mượt khi thay đổi style */
}

/* Header khi scroll xuống */
.header.scrolled {
  background: linear-gradient(
    108.46deg,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(0, 0, 0, 0.08) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  /* padding: 10px 72px; Giảm padding để header gọn hơn (tuỳ chọn) */
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  height: 46.72px;
}

.logo img {
  height: 46.72px; /* Chiều cao cố định */
  width: auto; /* Chiều rộng tự động tính theo tỷ lệ ảnh */
  display: block; /* Đảm bảo không có khoảng trắng dưới ảnh */
}

.logo-text {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 30.69px;
  letter-spacing: 0%;
  color: white;
  line-height: 1; /* Giúp chữ không bị dư khoảng trắng dọc */
  margin: 0; /* Reset margin mặc định */
}

.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-item {
  font-family: "Archivo", sans-serif;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
  font-size: 16px;
}

.nav-item:hover {
  opacity: 0.8;
}

.hotline-btn {
  font-family: "Archivo", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  /*width: 152px;*/
  height: 48px;
  border-radius: 201px;
  padding: 12px 20px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}

.hotline-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.3s;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* Làm icon thành màu trắng */
}

.mobile-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 16px;
  background: rgba(0, 0, 0, 0.95);
  border-radius: 12px;
  padding: 16px;
  min-width: 200px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}

.mobile-dropdown.show {
  display: block;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-item {
  font-family: "Archivo", sans-serif;
  display: block;
  color: white;
  text-decoration: none;
  padding: 12px 16px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 8px;
  transition: background 0.3s;
  margin-bottom: 4px;
}

.mobile-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-hotline {
  font-family: "Archivo", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #facc15;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.3s;
}

.mobile-hotline:hover {
  background: rgba(250, 204, 21, 0.1);
}

/* Header Right Container */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hero Section */
.hero {
  padding: 120px 72px 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  /*background: linear-gradient(270deg, rgba(9, 44, 2, 0.2) -0.87%, rgba(9, 44, 2, 0.4) 100%);*/
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("assets/hero-bg.webp");
  background-size: cover;
  background-position: center;
  z-index: -1;
  /*opacity: 0.4;*/
}

.hero-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 78px;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero-subtitle {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 48px;
  max-width: 629px;
}

/* Action Row */
.action-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.btn-group {
  display: flex;
  gap: 12px;
}

.btn {
  font-family: "Archivo", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 44px;
  border-radius: 28px;
  padding: 8px 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: #facc15;
  color: #092c02;
}

.btn-primary:hover {
  background: #f8d84d;
}

.btn-secondary {
  background: white;
  border: 1px solid #e2e8f0;
  color: #296317;
}

.btn-secondary:hover {
  background: #f8f8f8;
}

/* Info Group */
.info-group {
  display: flex;
  gap: 12px;
}

.info-box {
  width: 180px;
  height: 124px;
  border-radius: 16px;
  padding: 8px 16px;
  background: rgba(81, 163, 13, 0.5);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  transition: transform 0.3s;
}

.info-box:hover {
  transform: translateY(-5px);
}

.info-box img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

/* Video Section */
.video-section {
  width: 100%;
  padding: 0;
  position: relative;
}

.video-container {
  width: 100%;
  position: relative;
  /* No background here - background will be separate */
}

/* Background layer with fixed height */
.video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 700px; /* Adjusted height for background */
  background-color: #013b2c;
  z-index: 1;
}

.video-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 80px 200px 0px 200px; /* Added top padding for spacing from top */
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.video-title {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 42px;
  line-height: 1.2;
  color: #f8fafc;
  margin: 0;
  flex: 1;
}

.video-description {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #f1f5f9;
  margin: 0;
  flex: 1;
  max-width: 500px;
}

.video-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 80px 80px; /* Add padding to the sides and bottom */
  max-width: 1200px; /* Optional: constrain max width */
  margin: 0 auto; /* Center the content */
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px; /* Optional: rounded corners */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); /* Optional: add some shadow */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; /* Remove default border */
}

/* FAQ Section Specific Styles */
.faq-section .video-wrapper {
  margin-top: 32px;
  margin-bottom: 32px;
}

/* Mobile responsive for video section */
@media (max-width: 768px) {
  .header.scrolled {
    backdrop-filter: blur(10px); /* Giảm blur để tối ưu hiệu suất */
  }

  .header {
    padding: 0 16px;
    justify-content: space-between;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Header right container mobile adjustments */
  .header-right {
    gap: 8px;
  }

  /* Create a right group for hotline + menu */
  .hotline-btn {
    margin-right: 0;
  }

  /* Logo adjustments for mobile */
  .logo img {
    height: 36px;
  }

  .logo-text {
    font-size: 18px;
  }

  /* Hotline button mobile adjustments */
  .hotline-btn {
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 18px;
  }

  .hotline-btn i {
    font-size: 12px;
  }

  .hotline-btn span {
    font-size: 14px;
  }

  /* Hide mobile hotline in dropdown since we show it in header */
  .mobile-hotline {
    display: none;
  }

  /* Hero responsive */
  .hero {
    padding: 106px 0 20px;
    min-height: auto;
    width: 100vw;
    margin: 0;
  }

  .hero-content {
    padding: 20px 20px 0;
    width: 100%;
    max-width: none;
  }

  .hero::before {
    background-image: url("assets/hero-bg-mobile.webp");
    width: 100vw;
    left: 0;
    right: 0;
    background-position: center top;
    background-size: cover;
  }

  .hero-title {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 38px;
    line-height: 44px;
    margin-bottom: 16px;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 32px;
    text-align: center;
    font-style: normal;
  }

  .action-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .btn-group {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .btn {
    width: calc(50% - 4px);
    font-size: 14px;
    height: 40px;
    padding: 8px 8px;
  }

  .info-group {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .info-box {
    width: calc(33.33% - 6px);
    height: 70px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 4px;
    gap: 4px;
  }

  .info-box img {
    width: 20px;
    height: 20px;
    margin-bottom: 0;
  }

  .info-box span {
    font-size: 12px;
    text-align: center;
  }

  /* Prevent horizontal scroll */
  * {
    max-width: 100%;
  }

  .hero,
  .hero-content,
  .action-row,
  .btn-group,
  .info-group {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Process section mobile responsive */
  .process-section {
    padding: 0 0;
  }

  .process-container {
    padding: 20px 0;
  }

  .process-content {
    text-align: center;
    padding: 0 20px !important;
  }

  .process-title {
    font-family: "Archivo", sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    font-size: 30px !important;
    line-height: 36px !important;
    text-align: center !important;
    color: rgba(1, 59, 44, 1) !important;
    margin: 0 0 16px 0 !important;
    padding: 0 20px !important;
  }

  .process-description {
    font-family: "Archivo", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 16px !important;
    line-height: 24px !important;
    text-align: center !important;
    color: rgba(100, 116, 139, 1) !important;
    margin: 0 !important;
    max-width: 100% !important;
    padding: 0 20px !important;
  }

  .process-images {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .process-bg-img {
    content: url("assets/floor-bg-mobile.png");
    width: 100%;
    height: auto;
  }

  .process-image {
    width: 100%;
    height: auto !important;
    max-width: 100%;
  }

  /* Video Section */
  .video-container::before {
    height: 400px; /* Smaller fixed height for mobile */
  }

  .video-header {
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px 0px 20px; /* Adjusted top padding for mobile */
    margin-bottom: 40px;
  }

  .video-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .video-description {
    font-size: 14px;
    line-height: 1.4;
    max-width: none;
  }

  .video-content {
    padding: 0 20px 40px 20px; /* Adjusted bottom padding for mobile */
  }

  .video-placeholder {
    height: 250px;
    font-size: 16px;
  }

  .video-content iframe {
    height: 250px;
  }

  /* Why Choose Us Section Mobile */
  .why-choose-section {
    padding: 60px 20px;
  }

  .why-choose-title {
    font-size: 32px;
  }

  .why-choose-subtitle {
    font-size: 16px;
  }

  .why-choose-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-choose-card {
    padding: 32px;
  }
}

/* Section Quy Trình */
.process-section {
  width: 100%;
  padding: 0;
  position: relative;
}

.process-container {
  width: 100%;
  background: linear-gradient(90deg, #f3fcff 0%, #e3ffef 100%);
  margin: 0 auto;
  padding: 20px 0;
}

.process-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.2;
  text-align: center;
  color: rgba(1, 59, 44, 1);
  margin: 0 0 16px 0;
  padding: 0 72px;
}

.highlight {
  color: rgba(101, 163, 13, 1);
}

.process-description {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.4;
  text-align: center;
  color: rgba(100, 116, 139, 1);
  margin: 0 0 60px 0;
  max-width: 800px;
  padding: 0 72px;
}

.process-images {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.process-bg-img {
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 1;
  opacity: 0.8;
}

.process-image {
  position: relative;
  height: 791px;
  width: auto;
  object-fit: contain;
  z-index: 2;
}

/* Why Choose Us Section */
.why-choose-section {
  width: 100%;
  padding: 80px 72px;
  background-color: #f8fafc; /* Light gray background */
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-choose-header {
  margin-bottom: 60px;
}

.why-choose-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.why-choose-subtitle {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #475569; /* Slate-600 */
  max-width: 700px;
  margin: 0 auto;
}

.why-choose-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-choose-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.why-choose-card-title {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #013b2c;
  margin-bottom: 12px;
}

.why-choose-card-desc {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #64748b; /* Slate-500 */
}

:root {
  --scale: 1;
}

.retina-3x .retina-2x .process-base {
  width: calc(1440px * var(--scale));
  height: calc(1080px * var(--scale));
  transform: scale(var(--scale));
  transform-origin: top left;
}

/* Pricing Section */
.pricing-section {
  width: 100%;
  padding: 16px 0;
  background-color: #ffffff;
}

.pricing-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 200px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 16px 0;
}

.title-normal {
  color: #65a30d;
}

.title-highlight {
  color: #013b2c;
}

.pricing-subtitle {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.pricing-card {
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  padding: 32px 24px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  box-shadow: 0px 106.67px 106.67px -71.11px #4c567314;
}

.package-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
}

.package-name {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 1.2;
  color: #020617;
  margin: 0 0 12px 0;
}

.package-desc {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #020617;
  margin: 0 0 20px 0;
}

.package-price {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px; /* Giảm font size */
  line-height: 1.2;
  color: #1d262c;
  margin: 0 0 4px 0;
  white-space: nowrap; /* Ngăn xuống dòng */
  overflow: hidden; /* Ẩn phần thừa */
  text-overflow: ellipsis; /* Hiển thị ... nếu quá dài */
}

.package-price-per-kg {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px; /* Giảm font size */
  line-height: 1.2;
  margin: 0 0 8px 0;
  white-space: nowrap; /* Ngăn xuống dòng */
  overflow: hidden; /* Ẩn phần thừa */
  text-overflow: ellipsis; /* Hiển thị ... nếu quá dài */
}

.yellow-text {
  color: #ffc700;
}

.green-text {
  color: #4caf50;
}

.price-note {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin: 0 0 24px 0;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #e2e8f0;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  width: 100%;
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Style cho feature không có (icon check màu #64748B) */
.feature-unavailable .check-icon {
  filter: brightness(0) saturate(100%) invert(41%) sepia(18%) saturate(392%)
    hue-rotate(187deg) brightness(95%) contrast(92%);
  opacity: 1;
}

/* Style cho text của feature không có */
.feature-unavailable span {
  color: #64748b !important;
  text-decoration: line-through;
  opacity: 1;
}

.feature-item span {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  color: #020617;
}

.cta-button {
  width: 100%;
  height: 48px;
  border-radius: 1000px;
  padding: 12px;
  background-color: #65a30d;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;

  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
  color: #f8fafc;
}

.cta-button:hover {
  background-color: #4d7c0f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(101, 163, 13, 0.3);
}

/* Premium Card (Gói Cao Cấp) */
.premium-card {
  background-color: #013b2c !important;
  background-image: url("assets/pro_package_bg.png") !important;
  background-size: auto !important;
  background-position: top left !important;
  background-repeat: no-repeat !important;
  border-color: #013b2c !important;
  position: relative !important;
}

.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(1, 59, 44, 0.3);
  border-radius: 4px;
  z-index: 1;
}

.premium-card > * {
  position: relative;
  z-index: 2;
}

.premium-card .package-name,
.premium-card .package-desc,
.premium-card .feature-item span {
  color: #f8fafc !important;
}

.premium-card .package-price {
  background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.premium-card .price-note {
  color: #94a3b8 !important;
}

.premium-card .divider {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

/* Standard Card (Popular Badge) */
.standard-card {
  position: relative;
  overflow: visible;
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -6px;
  background: linear-gradient(89.8deg, #00bbe1 -8.28%, #03891e 95.16%);
  color: white;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  padding: 12px 18px 12px 16px;
  z-index: 10;
  clip-path: polygon(
    0% 0%,
    calc(100% - 2px) 0%,
    100% 2px,
    calc(100% - 2px) 100%,
    0% 100%,
    12px 50%
  );
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Tam giác tối phía sau badge để tạo hiệu ứng 3D */
.popular-badge::before {
  content: "";
  position: absolute;
  top: 2px;
  right: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 6px 20px 0;
  border-color: transparent #014a36 transparent transparent;
  z-index: -1;
}

/* Mobile responsive for pricing section */
@media (max-width: 768px) {
  .pricing-section {
    padding: 16px 0;
  }

  .pricing-container {
    padding: 0 20px;
  }

  .pricing-header {
    margin-bottom: 40px;
  }

  .pricing-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .pricing-subtitle {
    font-size: 14px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .package-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .package-name {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .package-desc {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .package-price {
    font-size: 18px;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .price-note {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .divider {
    margin-bottom: 20px;
  }

  .feature-list {
    margin-bottom: 24px;
  }

  .feature-item {
    margin-bottom: 12px;
    gap: 10px;
  }

  .check-icon {
    width: 16px;
    height: 16px;
  }

  .feature-item span {
    font-size: 13px;
  }

  .cta-button {
    height: 44px;
    font-size: 14px;
  }
}

/* Promotion Section */
.promotion-section {
  width: 100%;
  padding: 64px 0;
  background: linear-gradient(-13.9deg, #fffff6 -3.42%, #ecfeee 101.46%);
}

.promotion-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 200px;
}

.promotion-header {
  text-align: center;
  margin-bottom: 60px;
}

.promotion-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 16px 0;
}

.promotion-title .title-normal {
  color: #013b2c;
}

.promotion-title .title-highlight {
  color: #65a30d;
}

.promotion-subtitle {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.coupon-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.coupon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.coupon-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; /* Tỷ lệ vuông 1:1 */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: white;
}

.coupon-desc {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  color: #020617;
  margin: 0;
}

.coupon-code {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 4px 8px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.code-text {
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #374151;
  letter-spacing: 0.5px;
}

.copy-btn {
  background: transparent;
  color: inherit;
  border: none;
  padding: 6px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-icon {
  width: 16px;
  height: 16px;
  /* Giữ nguyên màu gốc của icon, bỏ filter */
}

.copy-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.copy-btn:active {
  transform: translateY(0);
}

/* Mobile responsive for promotion section */
@media (max-width: 768px) {
  .promotion-section {
    padding: 40px 0;
  }

  .promotion-container {
    padding: 0 20px;
  }

  .promotion-header {
    margin-bottom: 40px;
  }

  .promotion-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .promotion-subtitle {
    font-size: 14px;
  }

  .coupon-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .coupon-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* Giữ tỷ lệ vuông cho mobile */
    object-fit: cover;
  }

  .coupon-desc {
    font-size: 16px;
  }

  .coupon-code {
    padding: 6px 10px;
    gap: 6px;
  }

  .code-text {
    font-size: 12px;
  }

  .copy-btn {
    padding: 4px 6px;
  }

  .copy-icon {
    width: 14px;
    height: 14px;
  }

  /* Use mobile versions of coupon images if available */
  .coupon-item:nth-child(1) .coupon-image {
    content: url("assets/referral_coupon_mobile.png");
  }

  .coupon-item:nth-child(2) .coupon-image {
    content: url("assets/facebook_sharing_coupon_mobile.png");
  }
}

/* Customer Review Section */
.review-section {
  width: 100%;
  padding: 64px 0;
  background-color: #ffffff;
}

.review-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 200px;
}

.review-rows-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0;
  position: relative;
}

/* Gradient overlay on left edge */
.review-rows-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 210px;
  height: 100%;
  background: linear-gradient(
    to right,
    #ffffff 15.71%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 10;
  pointer-events: none;
}

/* Gradient overlay on right edge */
.review-rows-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 210px;
  height: 100%;
  background: linear-gradient(
    to left,
    #ffffff 15.71%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 10;
  pointer-events: none;
}

.review-header {
  text-align: center;
  margin-bottom: 60px;
}

.review-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: #013b2c;
}

.review-title .title-highlight {
  font-weight: 600;
  color: #65a30d;
}

.review-subtitle {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.review-row {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  padding: 0 20px;
  white-space: nowrap;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.review-row::-webkit-scrollbar {
  display: none;
}

/* Row 1: 4 thẻ - scroll left to right */
.review-row:first-child .review-cards-wrapper {
  display: flex;
  gap: 20px;
  animation: scrollLeft 35s linear infinite;
}

.review-row:first-child:hover .review-cards-wrapper {
  animation-play-state: paused;
}

/* Row 2: 5 thẻ - scroll right to left */
.review-row:last-child .review-cards-wrapper {
  display: flex;
  gap: 20px;
  animation: scrollRight 40s linear infinite;
}

.review-row:last-child:hover .review-cards-wrapper {
  animation-play-state: paused;
}

/* Auto-scroll animations */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.review-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 252px;
  max-width: 400px;
  /* width: 252px; */
  flex-shrink: 0;
  white-space: normal;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.reviewer-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reviewer-name {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  color: #0a0a0a;
  margin: 0 0 4px 0;
}

.reviewer-address {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  color: #0a0a0a;
  opacity: 0.56;
  margin: 0;
}

.review-text {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  color: #0a0a0a;
  margin: 0;
  flex: 1;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.rating {
  display: flex;
  gap: 4px;
  align-items: center;
}

.star-icon {
  width: 16px;
  height: 16px;
}

.star-empty {
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.3;
}

/* Mobile responsive for review section */
@media (max-width: 768px) {
  .review-section {
    padding: 40px 0;
  }

  .review-container {
    padding: 0 20px;
  }

  .review-rows-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    position: relative;
  }

  /* Mobile gradient overlays */
  .review-rows-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(
      to right,
      #ffffff 15.71%,
      rgba(255, 255, 255, 0) 100%
    );
    z-index: 10;
    pointer-events: none;
  }

  .review-rows-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(
      to left,
      #ffffff 15.71%,
      rgba(255, 255, 255, 0) 100%
    );
    z-index: 10;
    pointer-events: none;
  }

  .review-header {
    margin-bottom: 40px;
  }

  .review-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .review-subtitle {
    font-size: 14px;
  }

  .review-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 16px;
    animation: autoScroll 25s linear infinite;
  }

  .review-row:first-child {
    animation: autoScroll 30s linear infinite;
  }

  .review-row:last-child {
    animation: autoScroll 35s linear infinite reverse;
    margin-bottom: 0;
  }

  .review-card {
    padding: 20px;
    gap: 12px;
    min-width: 252px;
    width: 252px;
    flex-shrink: 0;
    white-space: normal;
  }

  .reviewer-avatar {
    width: 48px;
    height: 48px;
  }

  .reviewer-name {
    font-size: 16px;
  }

  .reviewer-address {
    font-size: 14px;
  }

  .review-text {
    font-size: 13px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .star-icon {
    width: 14px;
    height: 14px;
  }
}

/* FAQ Section */
.faq-section {
  background-color: #1d5b37;
  padding: 64px 104px;
  width: 100%;
}

.faq-container {
  max-width: 1440px;
  margin: 0 auto;
}

.faq-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.faq-left {
  flex: 0.65;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-right {
  flex: 0.35;
}

.faq-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.faq-subtitle {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #f1f5f9;
  margin: 0;
}

.faq-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  margin: 16px 0;
}

.faq-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.faq-question-btn {
  width: 200px;
  height: 44px;
  min-width: 80px;
  padding: 8px 12px;
  gap: 4px;
  border-radius: 28px;
  background-color: #facc15;
  border: none;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #0a0a0a;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.faq-question-btn:hover {
  background-color: #eab308;
  transform: translateY(-1px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  width: 710px;
  border-radius: 12px;
  padding: 24px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
  background-color: #ffffff;
  height: auto;
  min-height: 176px;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.faq-question-text {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  color: #eaecf0;
  margin: 0;
}

/* Plus icon for collapsed state */
.faq-question::after {
  content: "";
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-question::after {
  background-image: url("assets/ic_plus.png");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
}

.faq-item.active .faq-question::after {
  display: none;
}

.faq-item.active .faq-question-text {
  display: none;
}

.faq-answer {
  display: none;
  gap: 16px;
  flex-direction: column;
}

.faq-item.active .faq-answer {
  display: flex;
}

.faq-answer-title {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  color: #020617;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer-title .faq-minus-icon {
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer-title .faq-minus-icon::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #64748b;
}

.faq-answer-text {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* Mobile responsive for FAQ section */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 20px;
  }

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

  .faq-left,
  .faq-right {
    flex: 1;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-subtitle {
    font-size: 14px;
  }

  .faq-question-btn {
    width: 100%;
    max-width: 200px;
    align-self: center;
  }

  .faq-item {
    width: 100%;
    padding: 20px;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-question::after {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }

  .faq-answer-title {
    font-size: 16px;
  }

  .faq-answer-text {
    font-size: 14px;
  }

  .faq-minus-icon {
    width: 20px !important;
    height: 20px !important;
  }

  .faq-minus-icon::before {
    width: 14px !important;
    height: 2px !important;
  }
}

/* Contact Form Section */
.contact-section {
  width: 100%;
  padding: 64px 200px;
  background-color: #ffffff;
}

.contact-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.contact-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Form Box - Left Column */
.form-box {
  flex: 1.7;
  padding: 56px 40px;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: -13px 18px 35px 0px #00000017;
}

.form-title {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  color: #020617;
  margin: 0 0 12px 0;
}

.form-subtitle {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #64748b;
  margin: 0 0 32px 0;
}

.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

/* Special layout for form with 5 inputs */
.form-grid .form-group:nth-child(1) {
  grid-column: 1 / 2; /* Họ và tên - cột 1 */
}

.form-grid .form-group:nth-child(2) {
  grid-column: 2 / 3; /* Email - cột 2 */
}

.form-grid .form-group:nth-child(3) {
  grid-column: 3 / 4; /* Số điện thoại - cột 3 */
}

.form-grid .form-group:nth-child(4) {
  grid-column: 1 / 2; /* Số lượng gà - cột 1 hàng 2 */
}

.form-grid .form-group:nth-child(5) {
  grid-column: 2 / 4; /* Dịch vụ - cột 2-3 hàng 2 */
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

.form-input,
.form-textarea {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #525252;
  background: transparent;
  color: #020617;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: #65a30d;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit-btn {
  width: 560px;
  height: 72px;
  padding: 24px 40px;
  border-radius: 100px;
  background-color: #65a30d;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 32px;

  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  color: #ffffff;
}

.form-submit-btn:hover {
  background-color: #4d7c0f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(101, 163, 13, 0.3);
}

/* Contact Info - Right Column */
.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  line-height: 1.2;
  margin: 0;
  color: #013b2c;
}

.contact-title .title-highlight {
  color: #65a30d;
}

.contact-subtitle {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #64748b;
  margin: 0;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

.contact-value {
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 1.2;
  color: #020617;
  margin: 0;
}

/* Mobile responsive for contact section */
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 20px;
  }

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

  .form-box {
    flex: 1;
    padding: 32px 24px;
  }

  .form-title {
    font-size: 18px;
  }

  .form-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  /* Reset mobile grid layout to single column */
  .form-grid .form-group:nth-child(1),
  .form-grid .form-group:nth-child(2),
  .form-grid .form-group:nth-child(3),
  .form-grid .form-group:nth-child(4),
  .form-grid .form-group:nth-child(5) {
    grid-column: 1 / -1;
  }

  .form-input,
  .form-textarea {
    font-size: 14px;
    padding: 10px 0;
  }

  .form-submit-btn {
    width: 100%;
    height: 56px;
    padding: 16px 24px;
    font-size: 16px;
    margin-top: 24px;
  }

  .contact-info {
    flex: 1;
    gap: 20px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-subtitle {
    font-size: 14px;
    line-height: 24px;
  }

  .contact-list {
    gap: 24px;
    margin-top: 12px;
  }

  .contact-item {
    gap: 12px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-label {
    font-size: 14px;
  }

  .contact-value {
    font-size: 16px;
  }

  /* Use mobile versions of contact icons */
  .contact-item:nth-child(1) .contact-icon {
    content: url("assets/ic_phone_info_mobile.png");
  }

  .contact-item:nth-child(2) .contact-icon {
    content: url("assets/ic_zalo_info_mobile.png");
  }

  .contact-item:nth-child(3) .contact-icon {
    content: url("assets/ic_facebook_info_mobile.png");
  }

  .contact-item:nth-child(4) .contact-icon {
    content: url("assets/ic_email_info_mobile.png");
  }

  .contact-item:nth-child(5) .contact-icon {
    content: url("assets/ic_address_info_mobile.png");
  }
}

/* Farm Gallery Section */
.gallery-section {
  width: 100%;
  padding: 64px 200px;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.gallery-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: #013b2c;
}

.gallery-title .title-highlight {
  color: #65a30d;
}

.gallery-subtitle {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Gallery Slider */
.gallery-slider {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gallery-track {
  display: flex;
  width: calc(100% * 20); /* 20 slides * 100% */
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
  flex: 0 0 calc(100% / 20); /* Each slide is 1/20th of track = 5% */
  width: calc(100% / 20);
  height: 100%;
  position: relative;
  cursor: pointer;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-slide:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  color: white;
  padding: 40px 32px 24px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-slide.active .gallery-caption,
.gallery-slide:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption h4 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 8px 0;
  color: white;
}

.gallery-caption p {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #013b2c;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.gallery-slider:hover .gallery-nav {
  opacity: 1;
  visibility: visible;
}

.gallery-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

/* Dots indicator */
.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active,
.gallery-dot:hover {
  background: white;
  transform: scale(1.2);
}

/* Mobile slide counter */
.gallery-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: none; /* Hidden on desktop */
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10;
}

.counter-current {
  color: #2ecc71;
  font-weight: 600;
}

.counter-separator {
  margin: 0 4px;
  opacity: 0.7;
}

.counter-total {
  opacity: 0.9;
}

/* Fullscreen Modal */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.gallery-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  width: 90vw;
  height: 90vh;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: -60px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.modal-caption {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
}

.modal-caption h4 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 8px 0;
  color: white;
}

.modal-caption p {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: -80px;
}

.modal-next {
  right: -80px;
}

/* Mobile responsive for gallery section */
@media (max-width: 768px) {
  .gallery-section {
    padding: 40px 20px;
  }

  .gallery-header {
    margin-bottom: 40px;
  }

  .gallery-title {
    font-size: 28px;
  }

  .gallery-subtitle {
    font-size: 14px;
  }

  .gallery-slider {
    height: 300px;
    border-radius: 12px;
    overflow: hidden; /* Ensure only 1 slide is visible */
  }

  /* Mobile: each slide takes full container width */
  .gallery-track {
    width: calc(100% * 20); /* Keep 20 slides */
  }

  .gallery-slide {
    flex: 0 0 100%; /* Each slide takes full container width */
    width: 100%;
  }

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

  .gallery-caption {
    padding: 20px 16px 12px;
  }

  .gallery-caption h4 {
    font-size: 16px;
  }

  .gallery-caption p {
    font-size: 12px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-dots {
    display: none; /* Hide dots on mobile */
  }

  /* Show mobile counter */
  .gallery-counter {
    display: block;
    bottom: 15px;
    font-size: 13px;
    padding: 6px 12px;
  }

  /* Modal adjustments for mobile */
  .modal-content {
    width: 95vw;
    height: 80vh;
  }

  .modal-close {
    top: -50px;
    width: 40px;
    height: 40px;
  }

  .modal-caption {
    bottom: -60px;
  }

  .modal-caption h4 {
    font-size: 18px;
  }

  .modal-caption p {
    font-size: 14px;
  }

  .modal-nav {
    width: 44px;
    height: 44px;
  }

  .modal-prev {
    left: -60px;
  }

  .modal-next {
    right: -60px;
  }

  /* Hide modal navigation on very small screens */
  @media (max-width: 480px) {
    .modal-prev,
    .modal-next {
      display: none;
    }
  }
}

/* App Section */
.app-section {
  width: 100%;
  min-height: 80vh;
  background-image: url("assets/app_section_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 0; /* Giảm padding trên dưới */
}

.app-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000066;
  z-index: 1;
}

.app-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 20px 160px;
  position: relative;
  z-index: 2;
}

.app-screen {
  flex: 0 0 auto;
  max-width: 450px;
}

.app-image {
  width: 100%;
  height: 600px;
  object-fit: contain;
}

.app-info {
  flex: 1;
  color: white;
  min-width: 0; /* Cho phép shrink */
}

.app-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  line-height: 1.2;
  color: white;
  margin: 0 0 24px 0;
}

.app-description {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: white;
  margin: 0 0 32px 0;
}

/* App Download Options Container */
.app-download-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 800px;
}

/* Tab Input Section */
.app-tab-input {
  flex: 1;
  max-width: 400px;
}

/* App Tabs */
.app-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.app-tab {
  width: 116px;
  height: 44px;
  border-radius: 8px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  background: transparent;
  color: white;
  background: transparent;
  transition: all 0.3s ease;
}

.app-tab.active {
  background: #ffffff66;
  backdrop-filter: blur(10px);
}

.app-instruction {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #cbd5e1;
  margin: 0 0 16px 0;
}

/* App Input Form */
.app-input-form {
  width: 100%;
}

.app-input-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 60px;
  background: #ffffff66;
  backdrop-filter: blur(35.424930572509766px);
  border-radius: 9999px; /* Full corner radius */
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 8px;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
}

.app-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.app-submit-btn {
  width: 120px;
  height: 44px;
  border-radius: 36px;
  padding: 12px 16px;
  background: #ffffff;
  border: none;
  border-bottom: 2.21px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #013b2c;
  transition: all 0.3s ease;
}

.app-submit-btn:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
}

/* App Divider */
.app-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #cbd5e1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

/* App Install Section */
.app-install {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
  width: 180px;
}

.app-store-link {
  display: block;
  transition: transform 0.3s ease;
}

.app-store-link:hover {
  transform: scale(1.05);
}

.store-icon {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Mobile responsive for app section */
@media (max-width: 768px) {
  .app-section {
    min-height: 70vh;
    padding: 20px 0;
  }

  .app-content {
    flex-direction: column;
    gap: 30px;
    padding: 20px 20px;
    text-align: center;
  }

  .app-image {
    height: 400px;
  }

  .app-title {
    font-size: 28px;
  }

  .app-description {
    font-size: 14px;
  }

  .app-download-options {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .app-tab-input {
    width: 100%;
  }

  .app-tabs {
    justify-content: center;
  }

  .app-input-container {
    max-width: 350px;
  }

  .app-instruction {
    font-size: 14px;
  }

  .app-divider {
    order: 1;
  }

  .app-tab-input {
    order: 0;
  }

  .app-install {
    order: 2;
    flex-direction: row;
    gap: 20px;
  }

  .store-icon {
    height: 65px;
  }
}

/* Footer Section */
.footer-section {
  width: 100%;
  background: #0c111f;
  padding: 64px 0;
}

.footer-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 104px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Row 1: Main Content */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* Column 1: Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
}

.footer-logo-text {
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 36px;
  color: white;
}

.footer-description {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 1.5;
  color: #f8fafc;
  margin: 0;
  max-width: 400px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social-link {
  display: block;
  transition: transform 0.3s ease;
}

.footer-social-link:hover {
  transform: scale(1.1);
}

.footer-social-icon {
  width: 32px;
  height: 32px;
}

/* Column 2 & 3: Services & Support */
.footer-column-title {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 28px;
  color: #65a30d;
  margin: 0 0 24px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #65a30d;
}

/* Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: #f1f5f933;
  border: none;
}

/* Row 2: Legal */
.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #cbd5e1;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-link {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: #65a30d;
}

/* Row 3: Business Info */
.footer-business {
  display: flex;
  justify-content: center;
}

.footer-business-info {
  text-align: center;
}

.footer-business-info p {
  font-family: "Archivo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #cbd5e1;
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.footer-business-info p:last-child {
  margin-bottom: 0;
}

/* Zalo button */
.zalo-fixed-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.zalo-fixed-button a {
  background: #0180c7;
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.zalo-fixed-button img {
  width: 24px;
  margin-right: 8px;
}

/* Mobile responsive for footer */
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 0;
  }

  .footer-container {
    padding: 0 20px;
    gap: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-logo-text {
    font-size: 28px;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .footer-business-info p {
    font-size: 12px;
  }
}

/* End of file */
