/* ========================================================================
   RONG TA COCONUT - 2025 ULTRA MODERN DESIGN (FIXED)
   Premium B2B Platform with Latest Web Trends
   ======================================================================== */
   /* ==========================================================
   LOGISTICS SHOWCASE STYLES (MỚI)
   ========================================================== */

.logistics-showcase {
    padding: 5rem 0;
    /* Dùng nền trắng để tách biệt với 2 section xám ở trên */
    background: #f9fafb;
}

.logistics-showcase .section-description {
    /* Dùng lại màu xám đậm cho chữ */
    color: #4b5563;
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* 1. CARD CHA (Giống .team-member-card) */
.logistics-card {
    background: #ffffff;
    border-radius: 16px;
    /* Dùng box-shadow nhẹ hơn vì nền đã trắng */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
    border: 1px solid #e2e8f0; /* Thêm viền xám nhạt */
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.logistics-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.2);
}

/* 2. ẢNH (Giống .member-image) */
.logistics-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.logistics-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.logistics-card:hover .logistics-image img {
    transform: scale(1.05);
}

/* 3. NỘI DUNG (Giống .member-info) */
.logistics-content {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    position: relative;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 4. ICON TRÒN (Giống .team-icon) */
.logistics-icon {
    width: 80px;
    height: 80px;
    /* Dùng nền xanh lá nhạt cho đồng bộ */
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    font-size: 2.25rem;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 5. NỘI DUNG TEXT (Giống .member-info h4/p) */
.logistics-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 0.5rem;
}

.logistics-content p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .logistics-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================
   TEAM SHOWCASE STYLES (v3 - Kiểu "Factory")
   ========================================================== */
.team-showcase {
    padding: 5rem 0;
    /* ĐỔI NỀN: Dùng nền xám #e2e8f0 giống Factory */
    background: #e2e8f0;
}

/* ĐỔI MÀU CHỮ: Dùng màu xám đậm cho dễ đọc */
.team-showcase .section-description {
    color: #4b5563;
}

.team-showcase .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* 1. CARD CHA */
.team-showcase .team-member-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-showcase .team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.2);
}

/* 2. ẢNH (ĐỔI TỈ LỆ) */
.team-showcase .member-image {
    width: 100%;
    /* THAY ĐỔI: Đổi từ 1/1 (vuông) thành 16/10 (chữ nhật) */
    aspect-ratio: 16 / 10; 
    overflow: hidden;
}

.team-showcase .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-showcase .team-member-card:hover .member-image img {
    transform: scale(1.05);
}

/* 3. NỘI DUNG (THÊM PADDING VÀ VỊ TRÍ) */
.team-showcase .member-info {
    /* THAY ĐỔI: Thêm padding-top để chừa chỗ cho icon */
    padding: 2.5rem 1.5rem 1.5rem 1.5rem; 
    /* THAY ĐỔI: Cần cái này để icon con nằm đúng */
    position: relative; 
    text-align: center; /* Đưa text-align vào đây */
    
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 4. ICON TRÒN (CLASS MỚI - COPY TỪ FACTORY) */
.team-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669; 
    font-size: 2.25rem; 
    
    /* Trick chồng ảnh */
    position: absolute;
    top: -40px; 
    left: 50%;
    transform: translateX(-50%);
    
    border: 6px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 5. NỘI DUNG CŨ (Giữ nguyên) */
.team-showcase .member-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 0.5rem;
}

.team-showcase .member-info p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.team-showcase .member-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background: #dcfce7;
    color: #059669;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .team-showcase .team-grid {
        grid-template-columns: 1fr;
    }
}
/* ---------------------------- */
.language-switcher {
  display: flex;
  align-items: center;
  margin-left: var(--space-6);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-800);
  transition: transform 0.25s ease;
}

.lang-btn:hover {
  transform: translateY(-1px);
}

/* Flag */
.lang-btn img {
  width: 24px;
  height: 17px;
  border-radius: 3px;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hiệu ứng đổi cờ */
.lang-btn.changing img {
  opacity: 0;
  transform: translateY(-4px);
}

/* Chữ có background nhẹ */
.lang-btn span {
  background: rgba(0, 0, 0, 0.06);
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--gray-900);
  transition: background 0.3s ease, color 0.3s ease;
}

.lang-btn:hover span {
  background: rgba(0, 0, 0, 0.1);
}



/* ========================================================================
   1. CSS VARIABLES - 2025 Design System
   ======================================================================== */
:root {
  /* Colors - Modern Palette */
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-light: #34d399;
  --secondary: #0ea5e9;
  --accent: #f59e0b;
  
  /* Neutrals - High Contrast */
  --black: #0a0a0a;
  --gray-900: #171717;
  --gray-800: #262626;
  --gray-700: #404040;
  --gray-600: #525252;
  --gray-500: #737373;
  --gray-400: #a3a3a3;
  --gray-300: #d4d4d4;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --gray-50: #fafafa;
  --white: #ffffff;
  
  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Border Radius - Modern */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  
  /* Shadows - Layered */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-index */
  --z-nav: 1000;
  --z-dropdown: 1100;
  --z-modal: 1200;
}

/* ==========================================================
   FACTORY SHOWCASE STYLES
   ========================================================== */
.factory-showcase {
    /* ĐỔI NỀN: Dùng nền xám nhạt (màu #e2e8f0) */
    background: #e2e8f0 !important;
    
    /* Mấy cái cũ giữ nguyên */
    padding: 5rem 0;
}
.factory-showcase-grid {
    display: grid;
    /* Dùng auto-fit để nó tự động responsive */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.showcase-item {
    background: #ffffff;
    border-radius: 16px; /* Giống .partner-logo */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Giống .partner-logo */
    transition: all 0.3s ease;
    overflow: hidden; /* Để bo góc ảnh */
    display: flex;
    flex-direction: column;
}

.showcase-item:hover {
    /* Hiệu ứng nhấc lên khi hover, giống .partner-logo */
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.2); 
}

.showcase-image {
    width: 100%;
    aspect-ratio: 16 / 10; /* Giữ tỉ lệ ảnh 16:10 */
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Đảm bảo ảnh lấp đầy khung */
    transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.05); /* Zoom nhẹ ảnh khi hover */
}

.showcase-content {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem; /* Tăng padding-top để chừa chỗ cho icon */
    text-align: center;
    position: relative;
    flex-grow: 1; /* Đảm bảo các card cao bằng nhau */
    display: flex;
    flex-direction: column;
}

.showcase-icon {
    width: 80px;
    height: 80px;
    /* Dùng nền gradient xanh lá nhạt giống .partners-icon */
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669; /* Màu xanh lá đậm cho icon */
    font-size: 2.25rem; /* Kích thước icon */
    
    /* Đây là trick để icon nằm chồng lên ảnh một nửa */
    position: absolute;
    top: -40px; /* Kéo icon lên (nửa chiều cao của nó) */
    left: 50%;
    transform: translateX(-50%);
    
    /* Thêm viền trắng để tách biệt với ảnh */
    border: 6px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.showcase-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #065f46; /* Màu xanh lá rất đậm cho tiêu đề */
    margin-bottom: 0.75rem;
}

.showcase-content p {
    font-size: 0.9rem;
    color: #4b5563; /* Màu xám cho text */
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1; /* Đẩy nội dung xuống */
}

/* Responsive cho grid */
@media (max-width: 992px) {
    .factory-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
/* ========================================================================
   2. RESET & BASE
   ======================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-base);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}.factory-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}
/* --- BỐ CỤC CHUNG & TIÊU ĐỀ --- */
.factory-section {
  padding: 60px 0;
  background: #f9fafb;
}

.factory-section .container {
  max-width: 1200px; /* Tăng độ rộng để chứa thanh cuộn */
  margin: 0 auto;
  padding: 0 15px;
}

.section-header.centered {
  text-align: center;
  margin-bottom: 40px;
}
.section-header .section-label {
  color: #008D41;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
}
.section-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}
.section-header .section-description {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================================================
   3. LAYOUT
   ======================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

/* ==========================================================
   TOP BAR STYLES (Green Gradient)
   ========================================================== */
.topbar {
  background: linear-gradient(90deg, #22c55e 0%, #15803d 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0;
    z-index: 1001;
}

.topbar .container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar-left {
  flex: 1 1 auto;
}

.topbar-right {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
}

.topbar-item i {
  font-size: 0.9rem;
  color: #f0fdf4;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.topbar a:hover {
  color: #dcfce7;
}

/* Responsive */
@media (max-width: 768px) {
  .topbar {
    font-size: 0.75rem;
    text-align: center;
  }

  .topbar .container {
    flex-direction: column;
    gap: 0.3rem;
  }

  .topbar-right {
    justify-content: center;
  }
}

/* ==========================================================
   MARQUEE TEXT EFFECT (Smooth Horizontal Scroll)
   ========================================================== */
.marquee-wrap {
  position: relative;
  overflow: hidden;
  height: 1.2em;
  flex: 1;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.marquee-text {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marqueeScroll 10s linear infinite;
  font-weight: 500;
  color: #fff;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}



/* ========================================================================
   4. NAVIGATION - Modern Floating Style (FIXED + Topbar Support)
   ======================================================================== */

/* ====== Fixed header offset for Topbar ====== */
:root {
  --topbar-height: 38px; /* dùng giá trị chính xác theo thiết kế topbar */
}

/* ====== Navigation Base ====== */
.nav-modern {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: var(--space-6) 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

/* ====== Scrolled State ====== */
.nav-modern.scrolled {
  padding: var(--space-4) 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gray-300);
}

/* ====== Nav Container ====== */
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ====== Logo ====== */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--black);
  text-decoration: none;
  z-index: 1001;
}

.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: transform var(--transition-base);
}
.logo:hover img {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

/* ====== Nav Links ====== */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  transition: all var(--transition-base);
}

.nav-link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--gray-700);
  position: relative;
  padding: var(--space-2) 0;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  width: 100%;
}

/* ====== Language Switcher ====== */
.language-switcher {
  margin-left: var(--space-6);
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition-fast);
}
.lang-btn:hover {
  transform: translateY(-2px);
}

/* ====== Mobile Toggle ====== */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-2);
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  display: block;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================================================
   MOBILE MENU
   ======================================================================== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--topbar-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--topbar-height));
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-6);
    padding: var(--space-8);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-base);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    font-size: 1.125rem;
  }

  .nav-links .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .mobile-toggle {
    display: flex;
  }
}

/* ====== FIX: Ensure topbar + nav spacing for hero ====== */
/* Body padding để tránh hero bị che */
body {
  padding-top: calc(var(--topbar-height) + 84px); /* tổng cao topbar + nav */
}

.nav-modern {
  position: fixed;
  top: var(--topbar-height); /* 38px = chiều cao topbar */
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
}

.topbar.hide {
  transform: translateY(-100%);
  transition: transform 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.nav-modern.fixed-to-top {
  top: 0 !important;
  transition: top 0.4s ease;
}

/* ========================================================================
   5. BUTTONS - 2025 Style
   ======================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-700);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: 1rem;
}

/* ==========================================================
   HERO SECTION - Clean Corporate Tropical (v5)
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: white;
  padding: 6rem 1.5rem 4rem;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transform: scale(1);
  transition: transform 18s ease-in-out;
}
.hero:hover .hero-image {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(4, 120, 87, 0.5) 100%
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Title */
.hero-title {
  font-family: var(--font-display, "Inter", sans-serif);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #e6ffe6 40%, #b7f6ce 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #10b981;
  color: #fff;
  border: none;
}
.btn-primary:hover {
  background: #0e9e74;
  transform: translateY(-2px);
}


/* Ripple effect */
.btn-ripple {
  position: relative;
  overflow: hidden;
}
.btn-ripple::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn-ripple:hover::after {
  width: 250px;
  height: 250px;
}

/* Scroll Indicator */
.scroll-indicator {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
  color: white;
  opacity: 0.9;
  animation: bounce 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
  margin-top: 0.5rem;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes scrollLine {
  0% { opacity: 0; height: 0; }
  50% { opacity: 1; height: 40px; }
  100% { opacity: 0; height: 40px; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions a { width: 100%; max-width: 280px; justify-content: center; }
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 6rem 0 5rem; /* Thêm space cho scroll indicator */
  }

  .floating-coconut,
  .floating-leaf {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem; /* Thêm margin bottom */
  }

  .stat-value {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
    max-width: 300px;
  }
  
  .scroll-indicator {
    bottom: 2rem; /* Điều chỉnh cho mobile */
  }
}

@media (max-width: 480px) {
  .hero-badge {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .stat {
    padding: 1.25rem 0.75rem;
  }
}
/* ========================================================================
   7. SECTION STYLING
   ======================================================================== */
   
section {
  padding: var(--space-20) 0;
}

.section-header {
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.section-header.centered {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: var(--space-3);
}

.section-label.light {
  color: rgba(255, 255, 255, 0.8);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.section-title.light {
  color: var(--white);
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-600);
}
/* ========================================================================
   LEAF DECORATIONS - Clearer, Brighter, Organic Glow
   ======================================================================== */
.leaf-decoration {
  position: absolute;
  pointer-events: none;
  width: 600px;
  opacity: 0.35; /* tăng rõ hơn */
  filter: drop-shadow(0 0 20px rgba(16,185,129,0.35)) saturate(1.3);
  mix-blend-mode: multiply;
  animation: floatLeaf 14s ease-in-out infinite;
}

.leaf-1 {
  top: 0;
  left: -5%;
  transform: rotate(-10deg);
  animation-delay: 0s;
}

.leaf-2 {
  bottom: -10%;
  right: -10%;
  width: 550px;
  transform: scaleX(-1) rotate(12deg);
  animation-delay: 3s;
}

.leaf-3 {
  top: -15%;
  right: 10%;
  width: 450px;
  opacity: 0.25;
  transform: rotate(20deg);
  animation-delay: 6s;
}

/* Mượt và đều hơn */
@keyframes floatLeaf {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-20px) rotate(3deg) scale(1.02);
  }
}


/* ========================================================================
   8. PRODUCTS SECTION - Modern Card Grid
   ======================================================================== */
.products {
  background: var(--gray-50);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-200);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-light);
}

.product-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.product-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-6);
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.product-badge.premium {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.product-content {
  padding: var(--space-6);
}

.product-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--space-3);
}

.product-content p {
  color: var(--gray-600);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.product-features {
  list-style: none;
  margin-bottom: var(--space-5);
}

.product-features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  color: var(--gray-700);
  font-size: 0.875rem;
}

.product-features i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ========================================================================
   9. ABOUT SECTION - Split Layout
   ======================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}

.about-image-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  padding: var(--space-4) var(--space-6);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.badge-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.about-content {
  padding: var(--space-6);
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: var(--space-8);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.feature-item {
  display: flex;
  gap: var(--space-4);
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: 1.5rem;
}

.feature-text h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--space-2);
}

.feature-text p {
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
}

/* ========================================================================
   10. QUALITY SECTION - 4 top + 2 perfectly centered bottom
   ======================================================================== */
.quality {
  position: relative;
  background: var(--gray-900);
  overflow: hidden;
  padding: 6rem 0;
}

.quality-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
  z-index: 0;
}

.quality-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(16,185,129,0.12) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.25;
}

.quality-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section header */
.quality .section-label {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.quality .section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.quality .section-description {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* ========================================================================
   GRID (4 trên + 2 dưới căn giữa)
   ======================================================================== */
.certifications {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Hàng 5–6 tách riêng, cho vào flex để căn giữa toàn hàng */
.certifications::after {
  content: '';
  grid-column: 1 / -1;
  display: block;
}

.certifications-row-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

/* === Certification Item === */
.cert-item {
  width: 100%;
  max-width: 250px;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.cert-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(16,185,129,0.25),
              0 8px 16px rgba(0,0,0,0.3);
}

/* ICON */
.cert-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: transform 0.4s ease;
}

.cert-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05)
          drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: all 0.3s ease;
}

.cert-item:hover .cert-icon {
  transform: scale(1.1);
}
.cert-item:hover .cert-icon img {
  filter: brightness(1.2) drop-shadow(0 8px 14px rgba(16,185,129,0.5));
}

/* TEXT */
.cert-item h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cert-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.cert-item:hover h4 { color: var(--primary); }
.cert-item:hover p { color: rgba(255,255,255,0.9); }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 991px) {
  .certifications {
    grid-template-columns: repeat(3, 1fr);
  }
  .certifications-row-bottom {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .certifications {
    grid-template-columns: repeat(2, 1fr);
  }
  .certifications-row-bottom {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .certifications {
    grid-template-columns: 1fr;
  }
  .cert-icon { width: 70px; height: 70px; }
  .cert-item { max-width: 100%; }
}

/* ========================================================================
   11. TESTIMONIALS - Modern Slider
   ======================================================================== */
.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
}

.testimonial-card {
  padding: var(--space-8);
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.testimonial-rating {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
  color: #fbbf24;
  font-size: 1.125rem;
}

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.author-info h5 {
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--space-1);
}

.author-info span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ========================================================================
   12. CTA SECTION
   ======================================================================== */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: var(--space-8);
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.cta .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

/* ========================================================================
   13. CONTACT SECTION
   ======================================================================== */
.contact {
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-16);
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: var(--space-4);
}

.contact-info p {
  color: var(--gray-600);
  margin-bottom: var(--space-8);
  font-size: 1.125rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.contact-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-item i {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: 1.25rem;
}

.contact-item h4 {
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--space-2);
}

.contact-item a,
.contact-item p {
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: var(--space-3);
}

.social-links a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  color: var(--gray-700);
  font-size: 1.25rem;
  transition: all var(--transition-base);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: var(--space-4);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

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

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================
   14. FOOTER - Modern Minimal
   ======================================================================== */
.footer {
  background: var(--black);
  color: var(--gray-400);
  padding: var(--space-20) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

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

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}

.footer-col p {
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: var(--space-3);
}

.footer-col ul li a {
  color: var(--gray-400);
  transition: color var(--transition-base);
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--gray-800);
}

.footer-badges {
  display: flex;
  gap: var(--space-3);
}

.footer-badges .badge {
  padding: var(--space-2) var(--space-4);
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}
/* ========================================================================
   GOOGLE MAP - Compact, Centered, Clean Layout
   ======================================================================== */
.section-map {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 2rem auto 0;
  padding: 0;
  width: 100%;
}

/* Gói map trong khung nhỏ gọn */
.section-map #gmap {
  width: min(90%, 1300px);
  height: 260px; /* giảm chiều cao cho gọn */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0f0f0f;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hiệu ứng hover nhẹ */
.section-map #gmap:hover {
  transform: scale(1.015);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* Iframe đồng bộ màu */
.section-map #gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(10%) contrast(1.05) saturate(1.05);
  transition: filter 0.3s ease;
}
.section-map #gmap:hover iframe {
  filter: grayscale(0%) contrast(1.08) saturate(1.15);
}

/* Responsive */
@media (max-width: 992px) {
  .section-map #gmap {
    width: 92%;
    height: 220px;
  }
}
@media (max-width: 640px) {
  .section-map #gmap {
    width: 94%;
    height: 200px;
  }
}

/* ========================================================================
   15. ANIMATIONS & TRANSITIONS
   ======================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.scale-in {
  animation: scaleIn 0.5s ease-out;
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================================
   16. UTILITIES
   ======================================================================== */
.text-center {
  text-align: center;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }
}

/* ========================================================================
   17. RESPONSIVE DESIGN - MOBILE OPTIMIZED
   ======================================================================== */

/* Tablet */
@media (max-width: 968px) {
  :root {
    --space-20: 4rem;
    --space-16: 3rem;
  }
  
  .container {
    padding: 0 var(--space-5);
  }
  
  .hero {
    height: auto;
    min-height: 70vh;
    padding: var(--space-16) 0 var(--space-12);
  }
  
  .hero-bg,
  .hero-image,
  .hero-gradient {
    height: 70vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
  
  .stat-value {
    font-size: 2rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-6);
  }
  
  section {
    padding: var(--space-16) 0;
  }
  
  .process-timeline {
    flex-direction: column;
    gap: var(--space-6);
  }
  
  .process-arrow {
    transform: rotate(90deg);
    flex: 0 0 30px;
  }
}

  /* Mobile - COMPREHENSIVE FIX */
@media (max-width: 640px) {
  :root {
    --space-20: 3rem;
    --space-16: 2.5rem;
    --space-12: 2rem;
    --space-8: 1.5rem;
  }
  
  html {
    font-size: 15px;
  }
  
  body {
    overflow-x: hidden;
  }
  
  .container {
    padding: 0 var(--space-4);
  }
  
  /* Navigation Mobile - EXTRA FIXES */
  .nav-modern {
    padding: var(--space-3) 0;
  }
  
  .nav-container {
    padding: 0 var(--space-4);
    position: relative;
  }
  
  .logo {
    z-index: 1001;
    position: relative;
  }
  
  .logo img {
    width: 36px;
    height: 36px;
  }
  
  .logo-text {
    font-size: 1.125rem;
  }
  
  /* Hide desktop language switcher */
  .nav-container > .language-switcher {
    display: none;
  }
  
  .mobile-toggle {
    z-index: 1001;
    position: relative;
  }
  
  /* Hero Mobile */
  .hero {
    height: auto;
    min-height: 85vh;
    padding: var(--space-12) 0 var(--space-8);
  }
  
  .hero-bg,
  .hero-image,
  .hero-gradient {
    height: 85vh;
  }
  
  .hero-content {
    padding: 0 var(--space-2);
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: var(--space-2) var(--space-3);
    gap: var(--space-1);
    margin-bottom: var(--space-5);
  }
  
  .hero-badge i {
    font-size: 0.875rem;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: var(--space-5);
    line-height: 1.15;
  }
  
  .hero-subtitle {
    font-size: 0.9375rem;
    margin-bottom: var(--space-6);
    line-height: 1.6;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: var(--space-4) var(--space-6);
    font-size: 0.9375rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    max-width: 100%;
  }
  
  .stat-value {
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .scroll-indicator {
    bottom: var(--space-4);
    font-size: 0.75rem;
  }
  
  /* Sections Mobile */
  section {
    padding: var(--space-12) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-10);
  }
  
  .section-label {
    font-size: 0.75rem;
  }
  
  .section-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-3);
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  /* About Mobile */
  .about-grid {
    gap: var(--space-8);
  }
  
  .about-image-badge {
    bottom: var(--space-4);
    left: var(--space-4);
    padding: var(--space-3) var(--space-4);
  }
  
  .badge-text {
    font-size: 1rem;
  }
  
  .lead-text {
    font-size: 1.0625rem;
  }
  
  .features-list {
    gap: var(--space-4);
    margin-bottom: var(--space-6);
  }
  
  .feature-item {
    gap: var(--space-3);
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .feature-text h4 {
    font-size: 1rem;
  }
  
  .feature-text p {
    font-size: 0.875rem;
  }
  
  /* Products Mobile */
  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .product-card {
    border-radius: var(--radius-xl);
  }
  
  .product-image {
    aspect-ratio: 3/2;
  }
  
  .product-badge {
    top: var(--space-3);
    right: var(--space-3);
    padding: var(--space-1) var(--space-3);
    font-size: 0.6875rem;
  }
  
  .product-content {
    padding: var(--space-5);
  }
  
  .product-content h3 {
    font-size: 1.25rem;
  }
  
  .product-content p {
    font-size: 0.875rem;
  }
  
  .product-features {
    margin-bottom: var(--space-4);
  }
  
  .product-features li {
    font-size: 0.8125rem;
    padding: var(--space-1) 0;
  }
  
  /* Quality Mobile */
  .quality {
    padding: var(--space-12) 0;
  }
  
  .certifications {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
  
  .cert-item {
  width: 100%;
  max-width: 300px;
}

  
  .cert-icon {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
  }
  
  .cert-item h4 {
    font-size: 1.125rem;
  }
  
  /* Process Mobile */
  .process-timeline {
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
  }
  
  .process-step {
    flex: 0 0 100%;
    max-width: 100%;
    padding: var(--space-5);
  }
  
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.8125rem;
  }
  
  .step-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    margin-bottom: var(--space-3);
  }
  
  .process-step h4 {
    font-size: 0.9375rem;
  }
  
  .process-step p {
    font-size: 0.8125rem;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    flex: 0 0 24px;
    font-size: 1.25rem;
  }
  
  .process-image-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .showcase-main img {
    aspect-ratio: 16/10;
  }
  
  .stat-box {
    padding: var(--space-4);
    gap: var(--space-3);
  }
  
  .stat-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .stat-info h4 {
    font-size: 0.9375rem;
  }
  
  .stat-info p {
    font-size: 0.8125rem;
  }
  
  /* Partners Mobile */
  .strategic-partners {
    padding: var(--space-12) 0;
  }
  
  .leaf-decoration {
    width: 300px;
    opacity: 0.15;
  }
  
  .leaf-1 {
    top: -5%;
    left: -20%;
  }
  
  .leaf-2 {
    bottom: -10%;
    right: -30%;
    width: 280px;
  }
  
  .leaf-3 {
    display: none;
  }
  
  .partners-icon {
    width: 64px;
    height: 64px;
  }
  
  .partners-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-8);
  }
  
  .partner-logo {
    padding: var(--space-4);
    min-height: 80px;
  }
  
  .partner-logo img {
    max-height: 60px;
  }
  
  /* Why Choose Mobile */
  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .why-features {
    gap: var(--space-4);
    margin-top: var(--space-6);
  }
  
  .why-item {
    padding: var(--space-4);
    gap: var(--space-3);
  }
  
  .why-item i {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  
  .why-item h4 {
    font-size: 1rem;
  }
  
  .why-item p {
    font-size: 0.8125rem;
  }
  
  .why-badge {
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-3) var(--space-4);
  }
  
  .badge-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .badge-content h4 {
    font-size: 0.875rem;
  }
  
  .badge-content p {
    font-size: 0.6875rem;
  }
  
  /* Footer Mobile */
  .footer {
    padding: var(--space-12) 0 var(--space-6);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
  }
  
  .footer-logo img {
    width: 36px;
    height: 36px;
  }
  
  .footer-logo span {
    font-size: 1.125rem;
  }
  
  .footer-col h4 {
    font-size: 0.9375rem;
    margin-bottom: var(--space-3);
  }
  
  .footer-col ul li {
    margin-bottom: var(--space-2);
    font-size: 0.875rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
    padding-top: var(--space-6);
  }
  
  .footer-bottom p {
    font-size: 0.875rem;
  }
  
  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
  }
  
  .footer-badges .badge {
    font-size: 0.6875rem;
    padding: var(--space-1) var(--space-3);
  }
  
  /* Buttons Mobile */
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    font-size: 0.875rem;
    padding: var(--space-3) var(--space-5);
  }
  
  .btn-large {
    font-size: 0.9375rem;
    padding: var(--space-4) var(--space-6);
  }
  
  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .gallery-item.gallery-large,
  .gallery-item.gallery-wide {
    grid-column: span 1;
  }
  
  .gallery-overlay {
    padding: var(--space-4);
  }
  
  .gallery-overlay h4 {
    font-size: 1rem;
  }
  
  /* Applications Mobile */
  .applications-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .app-card {
    padding: var(--space-6);
  }
  
  .app-icon {
    width: 64px;
    height: 64px;
    font-size: 2rem;
    margin-bottom: var(--space-4);
  }
  
  .app-card h4 {
    font-size: 1.125rem;
  }
  
  .app-card p {
    font-size: 0.875rem;
  }
  
  /* CTA Mobile */
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-content p {
    font-size: 1rem;
    margin-bottom: var(--space-6);
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-3);
  }
  
  .cta-actions .btn-primary,
  .cta-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  /* Testimonial Mobile */
  .testimonial-slider {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .testimonial-card {
    padding: var(--space-6);
  }
  
  .testimonial-text {
    font-size: 0.9375rem;
    margin-bottom: var(--space-5);
  }
  
  /* Contact Mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .contact-info h2 {
    font-size: 1.75rem;
  }
  
  .contact-info p {
    font-size: 1rem;
    margin-bottom: var(--space-6);
  }
  
  .contact-items {
    gap: var(--space-5);
    margin-bottom: var(--space-6);
  }
  
  .contact-item i {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
  
  .contact-item h4 {
    font-size: 1rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .contact-form-wrap {
    padding: var(--space-6);
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: var(--space-3);
    font-size: 0.9375rem;
  }
  
  /* Scroll to top button mobile */
  .scroll-to-top {
    width: 48px !important;
    height: 48px !important;
    bottom: 1rem !important;
    right: 1rem !important;
    font-size: 1.125rem !important;
  }
}

/* ========================================================================
   18. PERFORMANCE OPTIMIZATIONS
   ======================================================================== */

/* GPU Acceleration */
.btn-primary,
.btn-secondary,
.btn-outline,
.product-card,
.testimonial-card,
.cert-item {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================================================
   19. FOCUS STYLES - Accessibility
   ======================================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

/* ========================================================================
   20. CUSTOM SCROLLBAR
   ======================================================================== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ========================================================================
   21. LOADING STATES
   ======================================================================== */
.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid var(--gray-300);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========================================================================
   22. COMPANY GALLERY SECTION
   ======================================================================== */
.company-gallery {
  background: var(--white);
  padding: var(--space-20) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.gallery-item.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.gallery-overlay p {
  font-size: 0.875rem;
  opacity: 0.9;
}

@media (max-width: 968px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item.gallery-large,
  .gallery-item.gallery-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.gallery-large,
  .gallery-item.gallery-wide {
    grid-column: span 1;
  }
}

/* Gallery Zoom Effect */
.gallery-item.gallery-zoomed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  height: 90vh;
  z-index: 9999;
  box-shadow: 0 0 100px rgba(0,0,0,0.8);
}

.gallery-item.gallery-zoomed img {
  object-fit: contain;
}

/* ========================================================================
   23. APPLICATIONS SECTION
   ======================================================================== */
.applications {
  background: var(--gray-50);
  padding: var(--space-20) 0;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.app-card {
  padding: var(--space-8);
  background: var(--white);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 2px solid var(--gray-200);
  transition: all var(--transition-base);
}

.app-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
}

.app-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: 2.5rem;
  margin: 0 auto var(--space-5);
}

.app-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--space-3);
}

.app-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 968px) {
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .applications-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================
   24. PRODUCTION PROCESS SECTION
   ======================================================================== */
.process {
  background: var(--white);
  padding: var(--space-20) 0;
}

.process-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-16);
  flex-wrap: wrap;
}

.process-step {
  flex: 0 0 180px;
  text-align: center;
  padding: var(--space-6);
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  border: 2px solid var(--gray-200);
  position: relative;
  transition: all var(--transition-base);
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow-xl);
}

.step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.step-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: 1.75rem;
  margin: 0 auto var(--space-4);
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--space-2);
}

.process-step p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.process-arrow {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
}

.process-image-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.showcase-main {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.showcase-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.stat-box {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.stat-box:hover {
  transform: translateX(8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: 1.5rem;
}

.stat-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--space-1);
}

.stat-info p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

@media (max-width: 968px) {
  .process-timeline {
    flex-direction: column;
  }
  
  .process-arrow {
    transform: rotate(90deg);
  }
  
  .process-image-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .process-step {
    flex: 0 0 100%;
  }
}

/* ========================================================================
   25. WHY CHOOSE US SECTION - Polished Corporate Style
   ======================================================================== */
.why-choose {
  background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
  padding: var(--space-20) 0;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.why-content {
  padding-right: var(--space-8);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: var(--space-8);
}

.why-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: all 0.35s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 20px rgba(16,185,129,0.12);
}

.why-item i {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 4px 8px rgba(16,185,129,0.3);
  transition: transform 0.35s ease;
}

.why-item:hover i {
  transform: scale(1.1);
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.25rem 0;
}

.why-item p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* === IMAGE SIDE === */
.why-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.why-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 1s ease;
}

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

/* === BADGE === */
.why-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.92);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
  color: #fff;
  font-size: 1.25rem;
}

.badge-content h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.badge-content p {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin: 0;
}

/* === Responsive === */
@media (max-width: 968px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  .why-content {
    order: 2;
    padding-right: 0;
    text-align: center;
  }
  .why-image {
    order: 1;
  }
  .why-item {
    justify-content: center;
    text-align: left;
  }
}


/* ========================================================================
   END OF FIXED CSS
   ======================================================================== */