/* ==========================================================================
   LeafLink Custom Design System & Style Sheet - Business Catalogue 2026
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --primary-color: #0B5D3F;
  --primary-light: #1A7D5A;
  --primary-dark: #063D2A;
  --secondary-color: #C8652A;
  --secondary-hover: #A8511E;
  --secondary-light: #E8863A;
  --accent-gold: #B8922F;
  --bg-color: #FAF5EB;
  --bg-card: #F5EFE0;
  --bg-section-alt: #F0EBD8;
  --text-dark: #2A3B32;
  --text-light: #6B7D72;
  --white: #ffffff;
  --black: #1a1a1a;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Be Vietnam Pro', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.25s ease;
  --border-radius-sm: 10px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-pill: 50px;

  --shadow-subtle: 0 2px 8px rgba(11,93,63,0.04);
  --shadow-light: 0 4px 20px rgba(11,93,63,0.06);
  --shadow-premium: 0 12px 40px rgba(11,93,63,0.10);
  --shadow-hover: 0 20px 50px rgba(11,93,63,0.15);
  --shadow-dramatic: 0 30px 60px rgba(11,93,63,0.18);
}

/* --- Global Reset & Base Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

#wallpaper {
  width: 100%;
  position: relative;
}

section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}

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

p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* --- Utility Layout Components --- */
.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 24px;
}

.section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-gold));
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-transform: none;
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  max-width: 650px;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

.shadow-premium {
  box-shadow: var(--shadow-premium);
}

.max-h-70vh {
  max-height: 70vh;
  object-fit: contain;
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition-smooth);
  padding: 18px 0;
}

header.scrolled {
  background-color: rgba(250, 245, 235, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 4px 30px rgba(11,93,63,0.06);
  padding: 10px 0;
  border-bottom: 1px solid rgba(11,93,63,0.06);
}

.navbar {
  padding: 0;
}

.navbar-brand img {
  height: 42px;
  width: auto;
  transition: var(--transition-smooth);
}

.navbar-nav {
  gap: 5px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 18px !important;
  border-radius: var(--border-radius-pill);
  transition: var(--transition-smooth);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
  background-color: rgba(12, 78, 53, 0.05);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-pill);
}

/* === SUBPAGE HEADER TRANSPARENT OVERRIDES === */
@media (min-width: 992px) {
  header.subpage-header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
  }
  header.subpage-header:not(.scrolled) .nav-link:hover,
  header.subpage-header:not(.scrolled) .nav-link.active {
    color: var(--white) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
  }
  header.subpage-header:not(.scrolled) .nav-link.active::after {
    background-color: var(--secondary-light) !important;
  }
  header.subpage-header:not(.scrolled) .navbar-brand img {
    filter: brightness(0) invert(1);
  }
  header.subpage-header:not(.scrolled) .btn-contact {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: var(--white) !important;
    box-shadow: none !important;
    border-radius: 4px 18px 4px 18px !important;
  }
  header.subpage-header:not(.scrolled) .btn-contact:hover {
    background: var(--white) !important;
    border-color: var(--white) !important;
    color: var(--primary-color) !important;
    border-radius: 18px 4px 18px 4px !important;
    box-shadow: var(--shadow-premium) !important;
  }
}

.btn-contact {
  font-size: 12px;
  font-weight: 700;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--secondary-color), #E8863A) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  padding: 10px 24px !important;
  border-radius: 4px 18px 4px 18px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(200, 101, 42, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap !important;
}

.btn-contact:hover {
  background: linear-gradient(135deg, #E8863A, var(--secondary-color)) !important;
  border-radius: 18px 4px 18px 4px !important;
  box-shadow: 0 6px 18px rgba(200, 101, 42, 0.35);
  transform: translateY(-2px);
}

/* === NAVBAR CART ITEM STYLES === */
.nav-cart-item a.nav-link {
  padding: 10px 14px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-cart-item a.nav-link:hover {
  background-color: rgba(12, 78, 53, 0.05);
}

.nav-cart-item .cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--secondary-color) !important;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 9px;
  line-height: 1;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

@media (min-width: 992px) {
  header.subpage-header:not(.scrolled) .nav-cart-item a.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
  }
  header.subpage-header:not(.scrolled) .nav-cart-item a.nav-link:hover {
    color: var(--white) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
  }
  header.subpage-header:not(.scrolled) .nav-cart-item .cart-badge {
    border-color: var(--primary-color);
  }
}



/* === RESPONSIVE NAVBAR FOR ZOOM & LAPTOPS === */
@media (min-width: 992px) and (max-width: 1400px) {
  .nav-link {
    padding: 8px 12px !important;
    font-size: 12px;
  }
  .navbar-nav {
    gap: 3px;
  }
  .btn-contact {
    padding: 8px 16px !important;
    font-size: 11px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .nav-link {
    padding: 8px 8px !important;
    font-size: 11px;
    letter-spacing: 0.2px;
  }
  .navbar-nav {
    gap: 1px;
  }
  .btn-contact {
    padding: 8px 12px !important;
    font-size: 11px;
  }
  .navbar-brand img {
    height: 34px;
  }
}

/* --- SECTION 1: HERO SECTION --- */
#sec-hero {
  background: var(--bg-color);
  padding-top: 110px;
  padding-bottom: 50px;
  background-image:
    radial-gradient(ellipse at 5% 15%, rgba(11,93,63,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(200,101,42,0.03) 0%, transparent 40%);
}

.hero-brand-top {
  margin-bottom: 10px;
}

.hero-brand-top .hero-tagline {
  font-size: 10px;
  font-weight: 700;
  color: var(--secondary-color);
  border: 1px solid rgba(216, 108, 39, 0.2);
  padding: 5px 12px;
  border-radius: var(--border-radius-pill);
  letter-spacing: 2px;
  display: inline-block;
  background-color: rgba(216, 108, 39, 0.03);
}

.hero-brand-bottom {
  margin-top: 25px;
}

.hero-brand-bottom .hero-tagline {
  font-size: 10px;
  font-weight: 700;
  color: var(--secondary-color);
  border: 1px solid rgba(216, 108, 39, 0.2);
  padding: 5px 12px;
  border-radius: var(--border-radius-pill);
  letter-spacing: 2px;
  display: inline-block;
  background-color: rgba(216, 108, 39, 0.03);
}

.hero-subtitle {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 18px;
  letter-spacing: -1px;
  line-height: 1.25;
  min-height: 110px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typewriter */
.typewriter-cursor {
  font-weight: 300;
  color: var(--secondary-color);
  animation: blink 0.8s steps(1) infinite;
  -webkit-text-fill-color: var(--secondary-color);
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Hero fade-in animation */
.hero-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.7;
}

.btn-hero-primary {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--border-radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-premium);
  border: 2px solid var(--primary-color);
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

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

.btn-hero-secondary {
  border: 2px solid rgba(12, 78, 53, 0.15);
  color: var(--primary-color);
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--border-radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: transparent;
  display: inline-block;
  transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
  border-color: var(--primary-color);
  background-color: rgba(12, 78, 53, 0.03);
  transform: translateY(-3px);
}

/* --- Hero Image Collage --- */
.hero-collage {
  position: relative;
  width: 100%;
  height: 460px;
}

.collage-img {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

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

/* Main large image */
.collage-main {
  width: 65%;
  height: 400px;
  top: 0;
  left: 0;
  border-radius: var(--border-radius-lg);
  z-index: 2;
  border: 5px solid var(--white);
  animation: floatSlow1 6s ease-in-out infinite;
}

.collage-main:hover {
  transform: scale(1.04) !important;
  z-index: 5;
  animation-play-state: paused;
}

/* Small top-right */
.collage-small-top {
  width: 45%;
  height: 200px;
  top: -10px;
  right: 0;
  border-radius: var(--border-radius-md);
  z-index: 3;
  border: 4px solid var(--white);
  animation: floatSlow2 7s ease-in-out infinite;
}

.collage-small-top:hover {
  transform: scale(1.06) rotate(-2deg) !important;
  z-index: 5;
  animation-play-state: paused;
}

/* Small bottom-right */
.collage-small-bottom {
  width: 45%;
  height: 220px;
  bottom: 20px;
  right: 10px;
  border-radius: var(--border-radius-md);
  z-index: 3;
  border: 4px solid var(--white);
  animation: floatSlow3 5s ease-in-out infinite;
}

.collage-small-bottom:hover {
  transform: scale(1.06) rotate(2deg) !important;
  z-index: 5;
  animation-play-state: paused;
}

@keyframes floatSlow1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.5deg); }
}

@keyframes floatSlow2 {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0.5deg); }
  50% { transform: translateY(-6px) translateX(4px) rotate(-1deg); }
}

@keyframes floatSlow3 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(-0.5deg); }
}

/* Accent circle */
.collage-accent-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  opacity: 0.3;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pulseCircle 3s ease-in-out infinite;
}

@keyframes pulseCircle {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.15; }
}

.collage-badge {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-10%);
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover)) !important;
  color: var(--white) !important;
  padding: 14px 22px;
  border-radius: var(--border-radius-md);
  z-index: 6;
  text-align: center;
  box-shadow: 0 10px 30px rgba(200, 101, 42, 0.3);
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  transition: var(--transition-smooth);
  animation: badgeFloat 4.5s ease-in-out infinite;
}

.collage-badge:hover {
  transform: translateX(-10%) scale(1.08) !important;
  box-shadow: 0 15px 35px rgba(200, 101, 42, 0.4);
  border-color: rgba(255, 255, 255, 0.4) !important;
  cursor: default;
}

.badge-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 3.5px;
  color: var(--white) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.badge-text {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--white) !important;
  opacity: 1;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateX(-10%) translateY(0); }
  50% { transform: translateX(-10%) translateY(-6px); }
}

/* --- SECTION 2: VỀ LEAFLINK --- */
#sec-about {
  background: linear-gradient(180deg, var(--white) 0%, #F8F3E8 100%);
  position: relative;
}

#sec-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background-image: url('../images/cs-layer2.png');
  background-size: cover;
  background-position: top center;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

#sec-about > .container {
  position: relative;
  z-index: 1;
}

.value-chain-wrapper {
  margin-top: 50px;
}

.value-chain-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(11,93,63,0.04);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.value-chain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(11,93,63,0.08);
}

.card-icon-wrap {
  width: 50px;
  height: 50px;
  background-color: rgba(12, 78, 53, 0.05);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.value-chain-card:hover .card-icon-wrap {
  background-color: var(--primary-color);
  color: var(--white);
}

.value-chain-card .card-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--primary-color);
  line-height: 1.4;
}

.card-img-container {
  width: 100%;
  height: 130px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 2px solid var(--white);
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.value-chain-card:hover .card-img-container img {
  transform: scale(1.06);
}

/* Arrow between cards on desktop */
.card-arrow-right {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--secondary-color);
  font-size: 16px;
  background-color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(12, 78, 53, 0.05);
}

/* Center Card LeafLink Branding (Green Background) */
.center-card {
  background-color: var(--primary-color) !important;
  color: var(--white);
  border: none;
}

.center-card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.center-logo {
  height: 48px;
  width: auto;
}

.center-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}

.center-divider {
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
  margin-bottom: 15px;
}

.center-slogan {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  line-height: 1.5;
  color: #c7ebd9 !important; /* Soft light green-white */
  margin-bottom: 0;
  text-transform: uppercase;
}

.about-text-details {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.about-group-photo-container {
  width: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-premium);
  position: relative;
}

.about-group-photo-container img {
  width: 100%;
  display: block;
}

.about-photo-caption {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
}

/* --- SECTION 3: THÁCH THỨC & GIẢI PHÁP --- */
#sec-challenge-solution {
  background: linear-gradient(180deg, #F8F3E8 0%, var(--bg-color) 100%);
  position: relative;
}

#sec-challenge-solution::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 300px;
  background-image: url('../images/cs-layer7.png');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

#sec-challenge-solution > .container {
  position: relative;
  z-index: 1;
}

.cs-container-box {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(11,93,63,0.05);
}

.cs-col {
  padding: 50px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.challenges-side {
  background: linear-gradient(180deg, #FAF7F2 0%, #F5F0E5 100%);
}

.solutions-side {
  background: linear-gradient(180deg, #F2F9F5 0%, #E8F4ED 100%);
}

.cs-side-header {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  display: inline-block;
  margin-bottom: 15px;
}

.cs-side-header.challenge {
  background: linear-gradient(135deg, #E8E5DE, #DDD9D0);
  color: #4a4947;
}

.cs-side-header.solution {
  background: linear-gradient(135deg, #C5E1D3, #B5D8C6);
  color: var(--primary-dark);
}

/* Challenge & Solution Item Cards */
.cs-item-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(11,93,63,0.03);
  border-left: 3px solid transparent;
  transition: var(--transition-smooth);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.cs-item-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
  border-left-color: var(--accent-gold);
}

.sol-card:hover {
  border-left-color: var(--primary-light);
}

.cs-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
  padding-right: 70px; /* Leave space for thumbnail */
}

.cs-item-num {
  font-size: 20px;
  font-weight: 800;
  color: #9ea8a2;
  margin-right: 15px;
}

.sol-card .cs-item-num {
  color: var(--secondary-color);
}

.cs-item-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  margin-bottom: 0;
  text-transform: uppercase;
}

.cs-item-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FAF8F5;
  color: var(--primary-color);
  font-size: 20px;
  transition: var(--transition-smooth);
}

.sol-card .cs-item-img {
  background-color: #E8F4ED;
  color: var(--secondary-color);
}

.cs-item-card:hover .cs-item-img {
  background-color: var(--primary-color);
  color: var(--white);
}

.sol-card:hover .cs-item-img {
  background-color: var(--secondary-color);
  color: var(--white);
}

.cs-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-item-body ul {
  padding-left: 20px;
  list-style-type: square;
  margin-bottom: 0;
}

.cs-item-body li {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.cs-item-body li::marker {
  color: var(--secondary-color);
}

/* Middle vertical pillar connecting C & S */
.cs-vertical-pillar {
  background-color: var(--primary-dark);
  height: 100%;
  padding: 40px 15px;
  color: var(--white);
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.pillar-steps-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  margin-top: 35px;
}

.pillar-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  max-width: 145px;
  transition: all 0.3s ease;
}

.pillar-step-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.pillar-step-item .step-circle {
  font-size: 12px;
  color: var(--secondary-color);
}

.pillar-step-item .step-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
}

.pillar-line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--secondary-color), rgba(255, 255, 255, 0.1));
  margin: 6px 0;
}

/* --- SECTION 4: VÌ SAO CHỌN LEAFLINK --- */
#sec-why {
  background: linear-gradient(180deg, var(--white) 0%, #F8F4EA 50%, var(--white) 100%);
  padding-bottom: 0 !important;
  position: relative;
}

#sec-why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url('../images/why-dsc00634.png');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
}

#sec-why > .container {
  position: relative;
  z-index: 1;
}

.why-solution-card {
  background: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(11,93,63,0.04);
  transition: var(--transition-smooth);
}

.why-solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(11,93,63,0.08);
}

.why-card-top {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background-color: var(--white);
}

.why-card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.why-solution-card:hover .why-card-top img {
  transform: scale(1.06);
}

.why-card-icon-floating {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-premium);
  border: 2px solid var(--white);
  transition: var(--transition-smooth);
}

.why-solution-card:hover .why-card-icon-floating {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

.why-card-content {
  padding: 24px;
}

.why-card-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.why-card-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Circular Economy Ecosystem Flow Diagram */
/* Đường divider ngăn cách trang trí giữa 2 phần */
.ecosystem-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 40px 0 10px 0;
  gap: 20px;
}

.ecosystem-divider .divider-line {
  flex: 1;
  height: 1.2px;
  background: linear-gradient(to right, rgba(216, 108, 39, 0), rgba(216, 108, 39, 0.45) 50%, rgba(216, 108, 39, 0));
}

.ecosystem-divider .divider-leaf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecosystem-divider .divider-leaf-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.why-ecosystem-flow {
  background: linear-gradient(180deg, var(--white) 0%, #FAF5EB 15%, #F5EFE0 100%);
  padding: 50px 0 60px 0;
  position: relative;
  overflow: hidden;
  border-top: none;
}

.ecosystem-bg-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-image: url('../images/why-layer10.png');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  opacity: 0.10;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0) 70%);
  mask-image: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0) 70%);
}

.ecosystem-heading {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--primary-color);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.ecosystem-heading .text-orange {
  color: var(--secondary-color);
}

/* Sơ đồ tuần hoàn tự dựng */
.ecosystem-diagram-wrapper {
  position: relative;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 20px;
  z-index: 3; /* Nổi bật hơn lớp nền chìm */
}

.ecosystem-diagram-inner {
  position: relative;
  width: 650px;
  height: 650px;
  margin: 0 auto;
}

.ecosystem-orbit-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Tâm sơ đồ - Logo và Slogan */
.ecosystem-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--white);
  border: 1.2px solid #d86c27; /* Viền vàng đất nhạt sang trọng như catalogue */
  box-shadow: 0 10px 30px rgba(12, 78, 53, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 25px;
}

.ecosystem-center-logo {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ecosystem-center-logo img {
  width: 125px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Các node xung quanh */
.ecosystem-node {
  position: absolute;
  width: 96px;
  height: 96px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.ecosystem-node:hover {
  transform: scale(1.08);
}

/* Premium Icon Box in Center of Node */
.ecosystem-node .node-icon-box {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2.5px solid rgba(12, 78, 53, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(12, 78, 53, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 6;
}

.ecosystem-node .node-icon-box i {
  font-size: 28px;
  color: var(--primary-color);
  transition: all 0.35s ease;
}

/* Hover transitions */
.ecosystem-node:hover .node-icon-box {
  border-color: var(--secondary-color);
  box-shadow: 0 10px 24px rgba(216, 108, 39, 0.2);
  transform: translateY(-2px);
}

.ecosystem-node:hover .node-icon-box i {
  color: var(--secondary-color);
  transform: scale(1.1) rotate(5deg);
}

/* Node Label positioning and design */
.node-label {
  position: absolute;
  bottom: -22px;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  background-color: rgba(250, 245, 239, 0.95);
  padding: 2px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.ecosystem-node:hover .node-label {
  color: var(--secondary-color);
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(216, 108, 39, 0.1);
}

/* Tọa độ hình học 9 node quanh vòng tròn 650x650 */
.node-1 { left: 277px; top: 47px; }
.node-2 { left: 425px; top: 101px; }
.node-3 { left: 504px; top: 237px; }
.node-4 { left: 476px; top: 392px; }
.node-5 { left: 356px; top: 493px; }
.node-6 { left: 198px; top: 493px; }
.node-7 { left: 78px; top: 392px; }
.node-8 { left: 50px; top: 237px; }
.node-9 { left: 129px; top: 101px; }

/* Custom Badge tự code bằng CSS thay vì dùng ảnh đè lên */
.ecosystem-bottom-bar-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  background-color: transparent;
  position: relative;
  z-index: 5;
}

.ecosystem-custom-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid rgba(216, 108, 39, 0.25);
  border-radius: 50px;
  padding: 10px 42px;
  box-shadow: 0 6px 20px rgba(12, 78, 53, 0.04);
  z-index: 10;
  max-width: 95%;
  margin: 0 auto;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #d86c27;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  box-shadow: 0 0 0 0 rgba(216, 108, 39, 0.4);
  transition: var(--transition-smooth);
}

.badge-icon-circle i {
  transition: var(--transition-fast);
}

.badge-item:first-of-type .badge-icon-circle {
  animation: circlePulse 2.6s infinite ease-in-out;
}

.badge-item:last-of-type .badge-icon-circle {
  animation: circlePulse 2.6s infinite ease-in-out;
  animation-delay: 1.3s;
}

.badge-item:hover .badge-icon-circle {
  background-color: #b85314;
  transform: scale(1.05);
}

.badge-item:hover .badge-icon-circle i {
  transform: scale(1.15) rotate(15deg);
}

.badge-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 900;
  color: var(--primary-dark) !important;
  letter-spacing: 0.8px;
  white-space: nowrap;
  text-shadow: 0 0.5px 0.5px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.badge-item:hover .badge-text {
  color: #b85314 !important;
}

.badge-divider {
  display: flex;
  align-items: center;
  margin: 0 45px;
  gap: 15px;
}

.divider-line {
  width: 45px;
  height: 1.2px;
  background-color: rgba(184, 83, 20, 0.35);
}

.divider-leaf {
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-leaf svg {
  width: 22px;
  height: 22px;
  display: block;
}

.divider-leaf svg path {
  stroke: #b85314 !important;
  fill: #b85314 !important;
}

@keyframes circlePulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(216, 108, 39, 0.4);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 0 8px rgba(216, 108, 39, 0);
    transform: scale(1.06);
  }
}

/* Responsive cho di động */
@media (max-width: 992px) {
  .ecosystem-diagram-inner {
    transform: scale(0.8);
    margin: -60px auto;
  }
}

@media (max-width: 768px) {
  .why-ecosystem-flow {
    padding: 55px 0 0 0;
  }
  .ecosystem-heading {
    font-size: 18px;
    line-height: 1.4;
    padding: 0 15px;
  }
  .ecosystem-diagram-inner {
    transform: scale(0.55);
    margin: -140px auto;
  }
  .ecosystem-bottom-bar-wrap {
    margin-top: -60px;
  }
}

@media (max-width: 480px) {
  .ecosystem-diagram-inner {
    transform: scale(0.42);
    margin: -180px auto;
  }
  .ecosystem-bottom-bar-wrap {
    margin-top: -110px;
  }
}

/* --- SECTION 5: NĂNG LỰC LEAFLINK --- */
#sec-capacity {
  background: linear-gradient(180deg, #F5EFE0 0%, #FAF5EB 40%, var(--bg-color) 100%);
  padding-top: 50px !important;
  position: relative;
}

#sec-capacity::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: url('../images/about-layer7.png');
  background-size: cover;
  background-position: bottom center;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  mask-image: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

#sec-capacity > .container {
  position: relative;
  z-index: 1;
}

.capacity-block {
  margin-bottom: 60px;
}

.capacity-subtitle {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--primary-color);
  border-bottom: 2px solid rgba(12, 78, 53, 0.08);
  padding-bottom: 10px;
}

/* 1. Production Stats Cards */
.stat-card {
  position: relative;
  height: 180px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.stat-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition-smooth);
}

.stat-card:hover .stat-bg {
  transform: scale(1.06);
}

.stat-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6,61,42,0.92) 15%, rgba(11,93,63,0.45) 100%);
}

.stat-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  color: var(--white);
  z-index: 2;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary-color);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* 2. Village Cards */
.village-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(12, 78, 53, 0.03);
  display: flex;
  transition: var(--transition-smooth);
}

.village-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.village-img-wrap {
  width: 40%;
  height: 150px;
  overflow: hidden;
}

.village-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.village-info {
  width: 60%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.village-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.village-desc {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 0;
}

/* 3. Flowchart & OEM Grid */
.process-flow-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step-item {
  background-color: var(--white);
  border-radius: var(--border-radius-pill);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(12, 78, 53, 0.02);
  transition: var(--transition-smooth);
}

.flow-step-item:hover {
  transform: translateX(5px);
  border-color: rgba(12, 78, 53, 0.08);
}

.flow-step-idx {
  width: 26px;
  height: 26px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-right: 15px;
}

.flow-step-item:hover .flow-step-idx {
  background-color: var(--secondary-color);
}

.flow-step-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
}

.flow-arrow {
  text-align: center;
  color: var(--secondary-color);
  font-size: 12px;
  padding: 6px 0;
}

/* OEM Card V2 - Matching Catalog Demo */
.oem-solution-card-v2 {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 20px 20px;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(11,93,63,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.oem-header-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  border-radius: var(--border-radius-pill);
  padding: 8px 24px;
  margin-bottom: 15px;
  display: inline-block;
  align-self: center;
  box-shadow: 0 4px 15px rgba(12, 78, 53, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.oem-header-box span {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.oem-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  width: 100%;
  gap: 10px;
}

.oem-icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #FAF8F5;
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid rgba(12, 78, 53, 0.03);
  box-shadow: 0 2px 6px rgba(12, 78, 53, 0.01);
  width: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.oem-icon-list li:hover {
  transform: translateX(5px);
  background-color: var(--white);
  border-color: var(--secondary-color);
  box-shadow: 0 5px 15px rgba(216, 108, 39, 0.06);
}

.oem-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #F5EFE0;
  border: 1.5px solid rgba(11,93,63,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.oem-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.oem-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.oem-item-sub {
  font-size: 10.5px;
  font-weight: 500;
  color: #777;
  line-height: 1.3;
}

.btn-oem-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--border-radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1.5px solid var(--primary-color);
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  box-shadow: 0 4px 10px rgba(11, 93, 63, 0.15);
}

.btn-oem-cta:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(216, 108, 39, 0.25);
  transform: translateY(-1px);
}

.oem-icon-list li:hover .oem-icon-circle {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* Right collage */
.capacity-collage-container {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-premium);
}

.capacity-collage-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 992px) {
  .capacity-collage-column {
    position: relative;
  }
  .capacity-collage-column .capacity-collage-container {
    position: absolute;
    top: 0;
    left: 12px;
    right: 12px;
    bottom: 0;
    width: calc(100% - 24px);
    height: 100%;
  }
}

.capacity-bottom-quote,
.news-bottom-banner {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-left: none !important;
  padding: 0 !important;
  max-width: 800px;
  position: relative;
  text-align: center;
  margin: 35px auto !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.capacity-bottom-quote::before,
.news-bottom-banner::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 55px;
  line-height: 1;
  color: var(--secondary-color);
  opacity: 0.8;
  height: 25px;
  display: block;
}

.capacity-bottom-quote span,
.news-bottom-banner span {
  display: block;
  font-size: 13.5px;
  font-weight: 750;
  letter-spacing: 1.2px;
  color: var(--primary-dark);
  text-transform: uppercase;
  line-height: 1.6;
  padding: 0 15px;
}

.capacity-bottom-quote::after,
.news-bottom-banner::after {
  content: "";
  display: block;
  width: 60px;
  height: 2.5px;
  background-color: var(--secondary-color);
  margin-top: 12px;
}

/* --- SECTION 6: DANH MỤC SẢN PHẨM --- */
#sec-products {
  background: linear-gradient(180deg, var(--white) 0%, #F8F3E8 50%, var(--white) 100%);
  position: relative;
}

#sec-products::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 250px;
  background-image: url('../images/cap-dsc00842.png');
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse at bottom right, rgba(0,0,0,0.6), transparent 70%);
  mask-image: radial-gradient(ellipse at bottom right, rgba(0,0,0,0.6), transparent 70%);
}

#sec-products > .container {
  position: relative;
  z-index: 1;
}

/* Legacy classes removed for safety and clean rulesets */

/* ===== NEW PRODUCT HERO CARD ===== */
.product-hero-card {
  background: linear-gradient(135deg, var(--bg-color) 0%, #EDE8D8 100%);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(11,93,63,0.05);
}

.product-hero-img {
  position: relative;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  min-height: 380px;
}

.product-hero-img img {
  max-width: 85%;
  max-height: 340px;
  object-fit: contain;
}

.product-badge-star {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--secondary-color), #D4873A);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--border-radius-pill);
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-hero-info {
  padding: 35px 40px;
}

.product-sku {
  font-size: 11px;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.product-hero-name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.product-hero-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.spec-chip {
  background-color: var(--white);
  border: 1px solid rgba(11,93,63,0.08);
  border-radius: var(--border-radius-pill);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
}

.spec-chip i {
  color: var(--secondary-color);
  font-size: 11px;
}

.product-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-product-primary {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--border-radius-pill);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
}

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

.btn-product-order {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--border-radius-pill);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
}

.btn-product-order:hover {
  background-color: var(--secondary-hover);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== NEW PRODUCT GRID CARD V2 ===== */
.product-card-v2 {
  display: flex !important;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  background-color: var(--white);
  border-radius: 12px;
  padding: 14px;
  border: 1.5px solid rgba(11, 93, 63, 0.06);
  box-shadow: 0 4px 12px rgba(11, 93, 63, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(11, 93, 63, 0.08);
  border-color: rgba(11, 93, 63, 0.15);
}

.product-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(11, 93, 63, 0.25); /* Brand light green border */
  border-radius: 8px;
  overflow: hidden;
  background-color: #FAF8F5;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.product-card-v2:hover .product-card-image-wrap img {
  transform: scale(1.06);
}

.product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--secondary-color); /* Clay orange badge */
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-card-body-v3 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-cat {
  font-size: 12.5px;
  font-style: italic;
  color: #8C8C8C;
  margin-top: 12px;
  margin-bottom: 4px;
  display: block;
}

.product-card-name-v3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark) !important;
  margin-bottom: 12px;
  line-height: 1.4;
  height: 42px; /* Fixed height for 2 lines overflow */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.product-card-v2:hover .product-card-name-v3 {
  color: var(--primary-color) !important;
}

.product-card-footer-v3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  border-top: 1px solid rgba(11, 93, 63, 0.05);
  padding-top: 12px;
}

.product-card-price-v3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

.product-card-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-card-plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--secondary-color); /* Clay orange */
  color: var(--white);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-card-plus:hover {
  background-color: var(--secondary-hover);
  transform: scale(1.08);
}

.btn-card-buy {
  background-color: var(--secondary-color); /* Clay orange */
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-pill);
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-card-buy:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-1px);
}

/* ===== USP BADGE BAR ===== */
.product-usp-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--border-radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: var(--transition-smooth);
}

.usp-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium);
}

.usp-icon {
  font-size: 14px;
}

/* ===== FEATURED HORIZONTAL CARDS ===== */
.featured-card-h {
  display: flex;
  text-decoration: none;
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(11,93,63,0.04);
  transition: var(--transition-smooth);
  height: 100%;
}

.featured-card-h:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(11,93,63,0.1);
}

.featured-card-h-img {
  position: relative;
  width: 45%;
  flex-shrink: 0;
  background-color: #FAFAF7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 220px;
}

.featured-card-h-img img {
  max-width: 80%;
  max-height: 180px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.featured-card-h:hover .featured-card-h-img img {
  transform: scale(1.06);
}

.featured-card-h-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-card-h-specs {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.featured-card-h-specs span {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-color);
  background-color: rgba(11,93,63,0.05);
  padding: 4px 10px;
  border-radius: var(--border-radius-pill);
}

.featured-card-h-specs span i {
  color: var(--secondary-color);
}

/* ===== VIEW MORE BUTTON ===== */
.btn-view-more {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.btn-view-more:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium);
}

/* ===== SHOP & BLOG PAGE SHARED STYLES ===== */
.page-header-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 60%, var(--primary-light) 100%);
  padding: 105px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background: var(--bg-color);
  border-radius: 100% 100% 0 0;
}

.page-header-banner h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}

.page-header-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin-bottom: 0;
}

.page-header-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  font-size: 13px;
}

.page-header-breadcrumb li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.page-header-breadcrumb li a:hover {
  color: var(--white);
}

.page-header-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255,255,255,0.4);
}

.page-header-breadcrumb li.active {
  color: var(--white);
  font-weight: 600;
}

/* Filter Tabs (Demo Flat Underline Style) */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 2px solid rgba(11, 93, 63, 0.08);
  padding-bottom: 8px;
  margin-bottom: 30px;
}

.filter-tab {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 6px 0 !important;
  font-size: 13.5px;
  font-weight: 700;
  color: #555555 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 2.5px solid transparent !important;
  box-shadow: none !important;
}

.filter-tab:hover {
  color: var(--primary-color) !important;
}

.filter-tab.active {
  color: var(--primary-color) !important;
  border-bottom-color: var(--primary-color) !important;
}

/* ===== SHOP CONTROL BAR (DEMO STYLE) ===== */
.shop-control-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #777777;
  padding: 10px 0;
  border-top: 1px dotted rgba(11, 93, 63, 0.1);
  border-bottom: 1px dotted rgba(11, 93, 63, 0.1);
  flex-wrap: wrap;
  gap: 15px;
}

.shop-show-counts span {
  cursor: pointer;
  padding: 2px 6px;
  transition: all 0.2s ease;
}

.shop-show-counts span:hover,
.shop-show-counts span.active {
  color: var(--primary-color);
  font-weight: 700;
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-sort-select {
  border: 1px solid rgba(11, 93, 63, 0.2);
  border-radius: 20px;
  padding: 4px 18px 4px 12px;
  background-color: #FAF8F5;
  color: var(--text-dark);
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.shop-sort-select:focus {
  border-color: var(--primary-color);
  background-color: var(--white);
}

/* ===== DEMO PAGINATION ===== */
.demo-pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.demo-pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.demo-pagination li {
  width: 36px;
  height: 36px;
  border: 1.5px solid #3d1a16;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 700;
  color: #3d1a16;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: var(--white);
}

.demo-pagination li:hover,
.demo-pagination li.active {
  background-color: #3d1a16;
  color: var(--white);
}

.demo-pagination li.disabled {
  border-color: rgba(61, 26, 22, 0.3);
  color: rgba(61, 26, 22, 0.3);
  cursor: not-allowed;
}

.demo-pagination li.disabled:hover {
  background-color: var(--white);
  color: rgba(61, 26, 22, 0.3);
}

/* ===== BLOG CARD ===== */
.blog-card {
  display: block;
  text-decoration: none;
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(11,93,63,0.04);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 20px;
}

.blog-card-date {
  font-size: 11px;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}

.blog-card-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
}

.blog-card:hover .blog-card-cta {
  color: var(--secondary-color);
}

/* ===== BLOG DETAIL ===== */
.blog-detail-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-detail-cover {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  margin-bottom: 30px;
}

.blog-detail-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-dark);
}

.blog-detail-content h2, .blog-detail-content h3 {
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-detail-content img {
  width: 100%;
  border-radius: var(--border-radius-md);
  margin: 20px 0;
}

.blog-sidebar-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary-color);
}

.sidebar-post {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.sidebar-post:hover {
  transform: translateX(4px);
}

.sidebar-post-img {
  width: 70px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-post-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
}

.sidebar-post-date {
  font-size: 11px;
  color: var(--text-light);
}

/* ===== PRODUCT DETAIL PAGE V3 ===== */
.pd-breadcrumb-section {
  background-color: var(--bg-color);
}

.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.pd-breadcrumb li a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-fast);
}

.pd-breadcrumb li a:hover {
  color: var(--primary-color);
}

.pd-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: #ccc;
}

.pd-breadcrumb li.active {
  color: var(--primary-color);
  font-weight: 600;
}

.pd-top-section {
  border-bottom: 1px solid rgba(11, 93, 63, 0.05);
}

.pd-gallery {
  position: sticky;
  top: 100px;
}

.pd-main-image-wrap {
  position: relative;
  border: 1px solid rgba(11, 93, 63, 0.25) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background-color: var(--white) !important;
  aspect-ratio: 1 / 1 !important;
  display: block;
}

.pd-main-image {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.pd-main-image img {
  max-width: 90% !important;
  max-height: 90% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

.pd-gallery-nav {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(11, 93, 63, 0.15) !important;
  color: var(--primary-dark) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  cursor: pointer !important;
  z-index: 10 !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08) !important;
  padding: 0 !important;
  outline: none !important;
  -webkit-appearance: none;
  appearance: none;
}

.pd-gallery-nav:hover {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color) !important;
}

.pd-gallery-nav.pd-prev {
  left: 15px !important;
}

.pd-gallery-nav.pd-next {
  right: 15px !important;
}

.pd-thumbnails {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  margin-top: 15px !important;
  justify-content: center !important;
}

.pd-thumb {
  width: 70px !important;
  height: 70px !important;
  flex: none !important;
  border: 1.5px solid rgba(11, 93, 63, 0.1) !important;
  border-radius: 4px !important;
  padding: 4px !important;
  background-color: var(--white) !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.pd-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.pd-thumb.active,
.pd-thumb:hover {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 2px rgba(11, 93, 63, 0.15) !important;
}

/* Info */
.pd-info {
  padding-left: 15px;
}

.pd-title-v3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 800;
  color: var(--primary-dark) !important;
  margin-bottom: 10px;
}

.pd-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13.5px;
  color: #666666;
  margin-bottom: 20px;
}

.pd-meta-divider {
  color: #dddddd;
}

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

.pd-price-wrap {
  border-top: 1px dotted rgba(11, 93, 63, 0.1);
  border-bottom: 1px dotted rgba(11, 93, 63, 0.1);
  padding: 15px 0;
}

.pd-price-v3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
}

.pd-desc-v3 {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555555;
  margin-top: 15px;
  margin-bottom: 25px;
}

/* Qty Box */
.pd-qty-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  margin-bottom: 20px !important;
}

.pd-qty-label {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #333333 !important;
}

.pd-qty-selector {
  display: inline-flex !important;
  align-items: center !important;
  border: 1px solid rgba(11, 93, 63, 0.35) !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  height: 38px !important;
  background-color: var(--white) !important;
}

.qty-btn {
  width: 38px !important;
  height: 100% !important;
  border: none !important;
  background-color: #FAF8F5 !important;
  color: #333333 !important;
  font-size: 18px !important;
  font-weight: 750 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  -webkit-appearance: none;
  appearance: none;
}

.qty-btn:hover {
  background-color: #efede8 !important;
}

.qty-input {
  width: 50px !important;
  height: 100% !important;
  border: none !important;
  border-left: 1px solid rgba(11, 93, 63, 0.35) !important;
  border-right: 1px solid rgba(11, 93, 63, 0.35) !important;
  text-align: center !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #333333 !important;
  outline: none !important;
  background-color: var(--white) !important;
}

/* Action Buttons */
.pd-btns-group {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.btn-pd-action {
  height: 48px !important;
  border-radius: 4px !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 !important;
  min-width: 160px !important;
  border: none;
  margin: 0 !important;
  box-sizing: border-box !important;
  -webkit-appearance: none;
  appearance: none;
}

.btn-add-cart {
  background-color: var(--white) !important;
  color: var(--secondary-color) !important;
  border: 2px solid var(--secondary-color) !important;
}

.btn-add-cart:hover {
  background-color: rgba(200, 101, 42, 0.05) !important;
  box-shadow: 0 4px 10px rgba(200, 101, 42, 0.08) !important;
}

.btn-buy-now {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  border: none !important;
}

.btn-buy-now:hover {
  background-color: var(--secondary-hover) !important;
  box-shadow: 0 4px 15px rgba(200, 101, 42, 0.2) !important;
}

/* Specs Table Inside Info */
.pd-specs-table-v3 {
  border: 1.5px solid rgba(11, 93, 63, 0.06);
  border-radius: 6px;
  overflow: hidden;
}

.pd-specs-table-v3 .pd-spec-row {
  display: flex;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(11, 93, 63, 0.05);
  font-size: 13.5px;
}

.pd-specs-table-v3 .pd-spec-row:last-child {
  border-bottom: none;
}

.pd-specs-table-v3 .pd-spec-row:nth-child(odd) {
  background-color: #FAF8F5;
}

.pd-specs-table-v3 .pd-spec-label {
  font-weight: 700;
  color: var(--primary-dark);
  min-width: 140px;
}

.pd-specs-table-v3 .pd-spec-val {
  color: #555555;
  font-weight: 550;
}

/* Tabs Section */
.pd-tabs-section {
  border-bottom: 2px solid rgba(11, 93, 63, 0.08);
  background-color: var(--white);
  padding: 12px 0 !important;
}

.pd-tabs-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 30px;
}

.pd-tabs-nav li {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 700;
  color: #777777;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.5px;
}

.pd-tabs-nav li:hover {
  color: var(--primary-color);
}

.pd-tabs-nav li.active {
  color: var(--primary-color);
}

.pd-tabs-nav li.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-color);
}

/* Content Area */
.pd-toc-container {
  border: 1.5px solid rgba(11, 93, 63, 0.08);
  border-radius: 6px;
  background-color: #FAF8F5;
  overflow: hidden;
}

.pd-toc-header {
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  transition: background-color 0.2s ease;
  user-select: none;
}

.pd-toc-header:hover {
  background-color: #efede8;
}

.pd-toc-body {
  padding: 15px 18px;
  border-top: 1px solid rgba(11, 93, 63, 0.05);
}

.pd-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-toc-list li a {
  font-size: 13.5px;
  color: #555555;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pd-toc-list li a:hover {
  color: var(--primary-color);
  padding-left: 4px;
}

.pd-richtext h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-top: 25px;
  margin-bottom: 12px;
  border-left: 3px solid var(--primary-color);
  padding-left: 10px;
}

.pd-richtext p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #444444;
  margin-bottom: 16px;
}

.pd-richtext ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.pd-richtext ul li {
  font-size: 14px;
  color: #444444;
  margin-bottom: 8px;
  line-height: 1.6;
}

.bg-light-beige {
  background-color: #FAF8F5 !important;
}

/* Sidebar Widgets */
.pd-sidebar-card {
  padding: 24px;
  background-color: var(--white);
  border: 1.5px solid rgba(11, 93, 63, 0.08);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(11, 93, 63, 0.02);
}

.sidebar-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
  border-bottom: 1px dotted rgba(11, 93, 63, 0.15);
  padding-bottom: 8px;
}

.sidebar-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 15px;
}

.sidebar-input {
  border: 1px solid rgba(11, 93, 63, 0.15);
  border-radius: 4px;
  font-size: 13.5px;
  height: 38px;
  background-color: #FAF8F5;
  color: #444444;
}

.sidebar-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2.5px rgba(11, 93, 63, 0.08);
  background-color: var(--white);
}

.btn-coop-submit {
  width: 100%;
  height: 38px;
  font-size: 13px;
  font-weight: 700;
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-coop-submit:hover {
  background-color: var(--secondary-hover);
}

/* Sidebar News */
.sidebar-news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar-news-item {
  display: flex;
  gap: 12px;
  text-decoration: none !important;
  color: inherit;
}

.news-img-wrap {
  width: 80px;
  height: 60px;
  background-color: #FAF8F5;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item-body h6 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary-dark);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item-body span {
  font-size: 11px;
  color: #888888;
}

.sidebar-news-item:hover .news-item-body h6 {
  color: var(--primary-color);
}

/* highlight boxes */
.highlight-item-box {
  padding: 15px;
}

.highlight-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(11, 93, 63, 0.06);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.highlight-item-box h5 {
  font-size: 13.5px;
  font-weight: 750;
  color: var(--primary-dark);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.highlight-item-box p {
  font-size: 12.5px;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 0;
}

/* related products section */
.pd-related-title-v3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-dark);
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.pd-related-title-v3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}


/* --- SECTION 7: HOẠT ĐỘNG THỰC TẾ --- */
#sec-news {
  background: linear-gradient(180deg, var(--bg-color) 0%, #F0EBD8 50%, var(--bg-color) 100%);
  position: relative;
}

#sec-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background-image: url('../images/news-dsc00816.png');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
}

#sec-news > .container {
  position: relative;
  z-index: 1;
}

.news-horizontal-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(12, 78, 53, 0.03);
  display: flex;
  height: 100%;
  transition: var(--transition-smooth);
}

.news-horizontal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.news-img {
  width: 40%;
  position: relative;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.news-horizontal-card:hover .news-img img {
  transform: scale(1.06);
}

.news-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--border-radius-pill);
  letter-spacing: 0.5px;
}

.news-info {
  width: 60%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
  line-height: 1.4;
  text-transform: uppercase;
}

.news-source {
  font-size: 10px;
  color: var(--text-light);
}

.news-excerpt {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0;
}

.news-qr-box {
  border-top: 1px solid rgba(12, 78, 53, 0.05);
  padding-top: 12px;
}

.qr-code {
  border: 1px solid rgba(12, 78, 53, 0.1);
  border-radius: 4px;
  padding: 3px;
  background-color: var(--white);
  box-shadow: var(--shadow-light);
}

.qr-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* Styling for .news-bottom-banner is grouped with .capacity-bottom-quote above */

/* Cooperation steps grid */
.cooperation-steps-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.coop-step-box {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  padding: 20px 10px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(11,93,63,0.03);
  border-top: 3px solid transparent;
  transition: var(--transition-smooth);
  position: relative;
}

.coop-step-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-top-color: var(--secondary-color);
}

.coop-idx {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(12, 78, 53, 0.15);
}

.coop-icon {
  font-size: 24px;
  color: var(--primary-color);
  margin: 10px 0 15px 0;
  transition: var(--transition-smooth);
}

.coop-step-box:hover .coop-icon {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.coop-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.3;
}

/* Partners logo row */
.partners-logo-container {
  background: linear-gradient(135deg, var(--white), #FAF6F0);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(12, 78, 53, 0.03);
  border: 1px solid rgba(12, 78, 53, 0.08);
}

.partners-logo-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 25px;
}

.partner-logo-card {
  flex: 1 1 18%;
  min-width: 195px;
  max-width: 240px;
  background-color: var(--white);
  padding: 24px 12px;
  border-radius: 12px;
  border: 1px solid rgba(12, 78, 53, 0.05);
  box-shadow: 0 4px 12px rgba(12, 78, 53, 0.01);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: 0 10px 24px rgba(216, 108, 39, 0.08);
}

.partner-logo-img-wrap {
  height: 52px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.partner-logo-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(10%) contrast(95%);
  transition: var(--transition-smooth);
}

.partner-logo-card:hover .partner-logo-img-wrap img {
  filter: none;
  transform: scale(1.05);
}

.partner-logo-name {
  font-family: var(--font-primary);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.4;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  opacity: 0.85;
}

.partner-logo-card:hover .partner-logo-name {
  color: var(--secondary-color);
  opacity: 1;
}

#sec-capacity {
  padding-bottom: 35px;
}

/* --- SECTION 8: LIÊN HỆ & FOOTER --- */
#sec-contact {
  background: linear-gradient(180deg, var(--white) 0%, #F8F3E8 100%);
  padding-top: 35px;
  padding-bottom: 95px;
  position: relative;
}

#sec-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/cs-layer2.png');
  background-size: cover;
  background-position: center center;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

#sec-contact > .container {
  position: relative;
  z-index: 1;
}

.contact-card-box {
  padding-right: 30px;
}

.contact-main-heading {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.4;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-brand-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: 0.5px;
  margin-bottom: 35px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(12, 78, 53, 0.05);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 18px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-info-item:hover .contact-info-icon {
  background-color: var(--primary-color);
  color: var(--white);
}

.contact-info-text h5 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.contact-info-text p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Offset collage side */
.footer-collage-container {
  position: relative;
  width: 100%;
  height: 450px;
  margin-top: 50px;
}

.collage-item {
  position: absolute;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  border: 6px solid var(--white);
  transition: var(--transition-smooth);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-item.large-photo {
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  z-index: 1;
  box-shadow: var(--shadow-premium);
  animation: floatSlow1 7s ease-in-out infinite;
}

.collage-item.small-photo {
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55%;
  z-index: 2;
  box-shadow: var(--shadow-hover);
  animation: floatSlow3 6s ease-in-out infinite;
}

.collage-item:hover {
  z-index: 3;
  transform: scale(1.05) !important;
  animation-play-state: paused;
}

/* Footer Bottom Bar */
footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--white);
  padding: 28px 0;
  border-top: 4px solid var(--secondary-color);
}

.footer-slogan {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS
   ========================================================================== */
@media (max-width: 991px) {
  section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  /* Navigation */
  header {
    background-color: var(--bg-color) !important;
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(12, 78, 53, 0.05);
  }
  
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium);
    margin-top: 15px;
    border: 1px solid rgba(12, 78, 53, 0.05);
  }
  
  .nav-link {
    padding: 12px 20px !important;
    width: 100%;
  }
  
  .nav-link.active::after {
    display: none;
  }
  
  /* Hero catalog cover */
  #sec-hero {
    padding-top: 120px;
    min-height: auto;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-title {
    font-size: 34px;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .catalog-cover-wrapper {
    margin-top: 40px;
  }
  
  /* About Value Chain arrows vertical on mobile */
  .card-arrow-right {
    right: 50%;
    bottom: -15px;
    top: auto;
    transform: translateX(50%) rotate(90deg);
  }
  
  /* Challenge & Solution */
  .cs-col {
    padding: 35px 20px;
  }
  
  .cs-vertical-pillar {
    height: auto;
    padding: 30px 20px;
  }
  
  .pillar-steps-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .pillar-line {
    display: none;
  }
  
  /* Năng lực */
  .capacity-collage-container {
    height: 300px;
  }
  
  /* Cooperation process steps */
  .cooperation-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Contact page */
  .contact-card-box {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .cooperation-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* About */
  .village-card {
    flex-direction: column;
  }
  
  .village-img-wrap {
    width: 100%;
    height: 150px;
  }
  
  .village-info {
    width: 100%;
    padding: 20px;
  }
  
  /* News horizontal cards turn vertical */
  .news-horizontal-card {
    flex-direction: column;
  }
  
  .news-img {
    width: 100%;
    height: 180px;
  }
  
  .news-info {
    width: 100%;
    padding: 20px;
  }
  
  /* Ecosystem tablet aspect ratio */
  .ecosystem-banner {
    padding: 30px 20px;
  }
  
  .why-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .why-badge {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   ADDITIONS FOR CONTACT READABILITY, RICH FOOTER & AI ERA CHATBOT
   ========================================================================== */

/* Active link indicator enhancements */
.nav-link {
  position: relative;
}
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}
.nav-link:hover::before {
  width: 25px;
}

/* Scrolled header glassmorphic glow border */
header.scrolled {
  border-bottom: 2px solid rgba(11,93,63,0.12) !important;
  background-color: rgba(250, 245, 235, 0.94) !important;
}

/* === CONTACT CARD CONTRAST REFACTOR === */
.contact-info-card p {
  color: rgba(255, 255, 255, 0.9) !important;
}
.contact-info-card h5 {
  color: var(--white) !important;
  font-weight: 700 !important;
  opacity: 1 !important;
}
.contact-info-card h2 {
  color: var(--white) !important;
}
.contact-info-card span {
  color: #FFAE63 !important; /* Standout highlight color instead of low visibility text */
}
.contact-info-card .contact-icon-box {
  background-color: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: var(--white) !important;
}

/* === RICH FOOTER COMPONENT === */
.rich-footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #032b1d 100%);
  color: var(--white);
  border-top: 4px solid var(--secondary-color);
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
.rich-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/cs-layer2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.02;
  pointer-events: none;
  z-index: 1;
}
.rich-footer .container {
  position: relative;
  z-index: 2;
}
.rich-footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 20px;
}
.rich-footer-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}
.rich-footer-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.rich-footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--secondary-color);
}
.rich-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rich-footer-links li a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  text-decoration: none;
}
.rich-footer-links li a:hover {
  color: var(--secondary-light);
  transform: translateX(4px);
}
.rich-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rich-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.rich-footer-icon {
  font-size: 15px;
  color: var(--secondary-light);
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.rich-footer-text h6 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
  letter-spacing: 0.5px;
}
.rich-footer-text p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  line-height: 1.5;
}
.rich-footer-socials {
  display: flex;
  gap: 10px;
}
.rich-footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.rich-footer-social-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(200, 101, 42, 0.3);
}
.rich-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  margin-top: 50px;
}
.rich-footer-slogan {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 8px;
}
.rich-footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* === AI CHATBOT WIDGET STYLING === */
.ai-chatbot-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: var(--font-sans);
}
.ai-chat-btn, .ai-chat-drawer {
  display: none !important;
}

/* Quick Contact floating group */
.quick-contact-group {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.contact-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none !important;
  position: relative;
}
.contact-item:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  color: var(--white) !important;
}
.contact-item.zalo-btn {
  background-color: #0068ff;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.contact-item.messenger-btn {
  background: linear-gradient(135deg, #006aff, #a100ff);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.contact-item.phone-btn {
  background-color: var(--secondary-color);
  border: 1.5px solid rgba(255,255,255,0.2);
  animation: phonePulse 1.8s infinite;
}
@keyframes phonePulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 101, 42, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(200, 101, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 101, 42, 0); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(11, 93, 63, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(11, 93, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(11, 93, 63, 0); }
}

.ai-chat-drawer {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 360px;
  height: 480px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(11, 93, 63, 0.12);
  box-shadow: var(--shadow-dramatic);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- LEAFLINK B2B UPDATED AESTHETICS --- */
.stat-card-clean {
  position: relative;
  height: 180px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(11,93,63,0.12);
  background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(12, 78, 53, 0.9) 100%);
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--white);
  z-index: 1;
}

.stat-card-clean:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  border-color: var(--secondary-color);
}

.stat-icon-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.stat-icon-wrap i {
  font-size: 28px;
  color: var(--secondary-color);
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.stat-card-clean:hover .stat-icon-wrap i {
  transform: scale(1.1) rotate(5deg);
  color: var(--white);
}

.stat-number-clean {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.stat-title-clean {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #dbebd3;
  letter-spacing: 0.5px;
}

.news-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--secondary-color);
  text-decoration: none !important;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: var(--transition-smooth);
  margin-top: 10px;
}

.news-link-btn:hover {
  color: var(--secondary-hover);
  border-bottom-color: var(--secondary-hover);
  transform: translateX(3px);
}

.product-category-block {
  background-color: var(--white);
  border: 1px solid rgba(12, 78, 53, 0.08);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(12, 78, 53, 0.02);
  transition: all 0.4s ease;
}

.product-category-block:hover {
  border-color: rgba(12, 78, 53, 0.15);
  box-shadow: 0 15px 40px rgba(12, 78, 53, 0.05);
}

.product-category-title {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 25px;
  margin-top: 10px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(12, 78, 53, 0.08);
  width: 100%;
  transition: border-color 0.3s ease;
}

.product-category-title i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(224, 126, 47, 0.1);
  color: var(--secondary-color);
  border-radius: 8px;
  font-size: 16px;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.product-category-block:hover .product-category-title {
  border-bottom-color: var(--secondary-color);
}

.product-category-block:hover .product-category-title i {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: scale(1.05) rotate(-5deg);
}


.ai-chat-drawer.open {
  display: flex !important;
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ai-chat-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--secondary-color);
  z-index: 10;
}
.ai-chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 14px;
  border: 1.5px solid var(--secondary-color);
}
.ai-chat-title-group h6 {
  font-size: 13.5px;
  font-weight: 800;
  margin: 0;
  color: var(--white);
}
.ai-chat-status {
  font-size: 9.5px;
  color: #c7ebd9;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ai-chat-status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2ec4b6;
}
.ai-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 4px;
}
.ai-close-btn:hover {
  color: var(--white);
  transform: scale(1.1);
}

.ai-chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background-color: rgba(250, 245, 235, 0.4);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ai-message {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
}
.ai-message.bot {
  background-color: var(--white);
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  box-shadow: 0 2px 6px rgba(11, 93, 63, 0.03);
  border: 1px solid rgba(11, 93, 63, 0.05);
}
.ai-message.user {
  background-color: var(--primary-color);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  box-shadow: 0 2px 6px rgba(11, 93, 63, 0.06);
}

.ai-suggested-questions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 5px;
}
.ai-suggest-btn {
  background-color: rgba(11, 93, 63, 0.05);
  border: 1px solid rgba(11, 93, 63, 0.12);
  color: var(--primary-color);
  padding: 7px 12px;
  border-radius: var(--border-radius-pill);
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-fast);
}
.ai-suggest-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateX(3px);
}

.ai-chat-footer {
  padding: 12px 16px;
  background-color: var(--white);
  border-top: 1px solid rgba(11, 93, 63, 0.08);
}
.ai-chat-form {
  display: flex;
  gap: 8px;
}
.ai-chat-input {
  flex: 1;
  border: 1px solid rgba(11, 93, 63, 0.15);
  border-radius: var(--border-radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  outline: none;
  background-color: #FAF8F5;
  color: var(--text-dark);
}
.ai-chat-input:focus {
  border-color: var(--primary-color);
  background-color: var(--white);
}
.ai-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: var(--transition-fast);
}
.ai-send-btn:hover {
  background-color: var(--secondary-color);
}

.typing-indicator {
  display: flex;
  gap: 3px;
  padding: 8px 12px;
  align-self: flex-start;
  background-color: var(--white);
  border-radius: 12px;
  border-bottom-left-radius: 2px;
  box-shadow: 0 2px 6px rgba(11, 93, 63, 0.03);
}
.typing-indicator span {
  width: 5px;
  height: 5px;
  background-color: var(--text-light);
  border-radius: 50%;
  animation: typing-dots 1.4s infinite ease-in-out both;
}
.typing-indicator span:nth-child(2) { animation-delay: .2s; }
.typing-indicator span:nth-child(3) { animation-delay: .4s; }

@keyframes typing-dots {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}

@media (max-width: 576px) {
  .ai-chat-drawer {
    width: calc(100% - 30px);
    right: 15px;
    left: 15px;
    height: 420px;
    bottom: 85px;
  }
}

/* B2B Enhancement Styles */
.stat-card-clean {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-lg);
  padding: 30px 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card-clean:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  background-color: var(--secondary-color);
}

.stat-card-clean .stat-icon-floating {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 32px;
  opacity: 0.15;
  color: var(--white);
  transition: var(--transition-smooth);
}

.stat-card-clean:hover .stat-icon-floating {
  transform: scale(1.1) rotate(10deg);
  opacity: 0.3;
}

.stat-card-clean .stat-number-clean {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-card-clean .stat-title-clean {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.4;
}

.news-link-btn {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

.news-link-btn:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* product-category-title override removed for cleaner design */

.product-card-cta-simple {
  font-size: 11px;
  font-weight: 700;
  color: var(--white) !important;
  background-color: var(--primary-color);
  padding: 5px 12px;
  border-radius: var(--border-radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(12, 78, 53, 0.15);
}

.product-card-v2:hover .product-card-cta-simple {
  background-color: var(--secondary-color);
  color: var(--white) !important;
  box-shadow: 0 4px 8px rgba(216, 108, 39, 0.25);
  transform: translateY(-1px);
}

/* Overlay for Why LeafLink Section Cards */
.why-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.45) 100%);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.why-solution-card:hover .why-card-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.35) 100%);
}

/* ==========================================================================
   Product Details Grid & Layout Styles
   ========================================================================== */
.pd-gallery {
  position: sticky;
  top: 100px;
}
.pd-main-image-wrap {
  position: relative;
  border: 1px solid rgba(11, 93, 63, 0.25) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background-color: var(--white) !important;
  aspect-ratio: 1 / 1 !important;
  display: block;
}
.pd-main-image {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.pd-main-image img {
  max-width: 90% !important;
  max-height: 90% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}
.pd-gallery-nav {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(11, 93, 63, 0.15) !important;
  color: var(--primary-dark) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  cursor: pointer !important;
  z-index: 10 !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08) !important;
  padding: 0 !important;
  outline: none !important;
  -webkit-appearance: none;
  appearance: none;
}
.pd-gallery-nav:hover {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color) !important;
}
.pd-gallery-nav.pd-prev {
  left: 15px !important;
}
.pd-gallery-nav.pd-next {
  right: 15px !important;
}
.pd-thumbnails {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  margin-top: 15px !important;
  justify-content: center !important;
}
.pd-thumb {
  width: 70px !important;
  height: 70px !important;
  flex: none !important;
  border: 1.5px solid rgba(11, 93, 63, 0.1) !important;
  border-radius: 4px !important;
  padding: 4px !important;
  background-color: var(--white) !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
.pd-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.pd-thumb.active,
.pd-thumb:hover {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 2px rgba(11, 93, 63, 0.15) !important;
}

/* Qty Box */
.pd-qty-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  margin-bottom: 20px !important;
}
.pd-qty-label {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #333333 !important;
}
.pd-qty-selector {
  display: inline-flex !important;
  align-items: center !important;
  border: 1px solid rgba(11, 93, 63, 0.35) !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  height: 38px !important;
  background-color: var(--white) !important;
}
.qty-btn {
  width: 38px !important;
  height: 100% !important;
  border: none !important;
  background-color: #FAF8F5 !important;
  color: #333333 !important;
  font-size: 18px !important;
  font-weight: 750 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  -webkit-appearance: none;
  appearance: none;
}
.qty-btn:hover {
  background-color: #efede8 !important;
}
.qty-input {
  width: 50px !important;
  height: 100% !important;
  border: none !important;
  border-left: 1px solid rgba(11, 93, 63, 0.35) !important;
  border-right: 1px solid rgba(11, 93, 63, 0.35) !important;
  text-align: center !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #333333 !important;
  outline: none !important;
  background-color: var(--white) !important;
}

/* Action Buttons */
.pd-btns-group {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}
.btn-pd-action {
  height: 48px !important;
  border-radius: 4px !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 !important;
  min-width: 160px !important;
  border: none !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.btn-add-cart {
  background-color: var(--white) !important;
  color: var(--secondary-color) !important;
  border: 2px solid var(--secondary-color) !important;
}
.btn-add-cart:hover {
  background-color: rgba(200, 101, 42, 0.05) !important;
  box-shadow: 0 4px 10px rgba(200, 101, 42, 0.08) !important;
}
.btn-buy-now {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  border: none !important;
}
.btn-buy-now:hover {
  background-color: var(--secondary-hover) !important;
  box-shadow: 0 4px 15px rgba(200, 101, 42, 0.2) !important;
}

/* ==========================================================================
   Pagination Styles for Archives & Blog Grid
   ========================================================================== */
.demo-pagination-wrapper,
.blog-pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 40px auto 20px auto !important;
  gap: 10px !important;
  width: 100% !important;
}

/* Ensure raw list inside type='list' works in flex mode */
.demo-pagination-wrapper ul.page-numbers {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 10px !important;
}

.demo-pagination-wrapper ul.page-numbers li {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Base style for circle items */
.demo-pagination-wrapper .page-numbers,
.blog-pagination .page-numbers {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background-color: var(--white) !important;
  border: 1px solid rgba(11, 93, 63, 0.15) !important;
  color: var(--primary-color) !important;
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

/* Current Item State */
.demo-pagination-wrapper .page-numbers.current,
.blog-pagination .page-numbers.current {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 4px 15px rgba(11, 93, 63, 0.22) !important;
  cursor: default !important;
}

/* Hover state for links */
.demo-pagination-wrapper a.page-numbers:hover,
.blog-pagination a.page-numbers:hover {
  background-color: var(--primary-light) !important;
  color: var(--white) !important;
  border-color: var(--primary-light) !important;
  box-shadow: 0 4px 12px rgba(26, 125, 90, 0.25) !important;
  transform: translateY(-2px) !important;
}

/* Ellipsis state */
.demo-pagination-wrapper .page-numbers.dots,
.blog-pagination .page-numbers.dots {
  background-color: transparent !important;
  border-color: transparent !important;
  color: var(--text-light) !important;
  cursor: default !important;
}

/* Custom spacing for icons */
.demo-pagination-wrapper .page-numbers i,
.blog-pagination .page-numbers i {
  font-size: 13px !important;
}

/* ==========================================================================
   Contact Form 7 Custom Styling
   ========================================================================== */
.contact-form-container .wpcf7-form-control.form-control,
.contact-form-container .wpcf7-form-control.form-select,
.contact-form-container .wpcf7-form-control.wpcf7-textarea {
  border-radius: 8px !important;
  border: 1.5px solid #E6EBF0 !important;
  padding: 11px 16px !important;
  font-size: 14px !important;
  background-color: var(--white) !important;
  color: var(--text-dark) !important;
  width: 100% !important;
}

.contact-form-container .wpcf7-form-control.form-control:focus,
.contact-form-container .wpcf7-form-control.form-select:focus,
.contact-form-container .wpcf7-form-control.wpcf7-textarea:focus {
  border-color: var(--primary-light) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(11, 93, 63, 0.1) !important;
}

.contact-form-container .wpcf7-submit.btn-contact {
  font-size: 13.5px !important;
  padding: 12px 36px !important;
  border-radius: 4px 18px 4px 18px !important;
  border: none !important;
  width: 100% !important;
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  display: block;
}

.contact-form-container .wpcf7-submit.btn-contact:hover {
  background-color: var(--secondary-hover) !important;
  box-shadow: 0 4px 15px rgba(200, 101, 42, 0.2) !important;
}

.contact-form-container .wpcf7-not-valid-tip {
  color: #dc3545 !important;
  font-size: 12px !important;
  margin-top: 5px !important;
  font-weight: 600 !important;
}

.contact-form-container .wpcf7-response-output {
  margin: 20px 0 0 0 !important;
  padding: 12px 15px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: 1px solid transparent !important;
}

/* Success Output Style */
.contact-form-container .wpcf7-mail-sent-ok {
  background-color: #d1e7dd !important;
  border-color: #badbcc !important;
  color: #0f5132 !important;
}

/* Error/Validation Output Style */
.contact-form-container .wpcf7-validation-errors,
.contact-form-container .wpcf7-acceptance-missing {
  background-color: #f8d7da !important;
  border-color: #f5c2c7 !important;
  color: #842029 !important;
}



