/* =============================================================
   TABLE OF CONTENTS
   1.  CSS Custom Properties
   2.  Reset / Base
   3.  Typography utilities
   4.  Layout utilities
   5.  Top Bar
   6.  Site Header / Navbar
   7.  Hero / About-style section
   8.  Offering / Process section
   9.  Clients marquee
   10. Stats bar
   11. Counter section
   12. Farm Journey cards
   13. Featured slider
   14. Feature image cards
   15. Content card
   16. Page banner
   17. About content section
   18. Why Choose Us
   19. Product page
   20. Team sections  (v1 + v2)
   21. Footer
   22. Reveal / fade-in utilities
   23. Media queries  (consolidated)
============================================================= */


/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================
   FIXES:
   - Removed --color-primary-dark and --color-primary-light
     (both were identical to --color-primary: #1C2C6B)
   - Removed --color-accent-light
     (identical to --color-accent: #58891e)
   All references below use --color-primary / --color-accent.
============================================================= */
:root {
  --color-primary:        #1C2C6B;
  --color-accent:         #58891e;
  --color-accent-orange:  #e67e22;
  --color-text:           #1a1a1a;
  --color-text-muted:     #5c5c5c;
  --color-bg:             #f8f9fa;
  --color-white:          #ffffff;
  --color-border:         rgba(28, 44, 107, 0.2);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-soft:   0 4px 24px rgba(28, 44, 107, 0.10);
  --shadow-medium: 0 8px 32px rgba(28, 44, 107, 0.12);
  --shadow-lift:   0 16px 48px rgba(28, 44, 107, 0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition-fast:   0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slower: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ============================================================
   2. RESET / BASE
============================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast), transform var(--transition-smooth);
}


/* ============================================================
   3. TYPOGRAPHY UTILITIES
============================================================= */
.section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-bottom: 0;
}


/* ============================================================
   4. LAYOUT UTILITIES
============================================================= */
.section   { padding: clamp(4rem, 10vw, 4rem) 0; }
.container { max-width: 1140px; }


/* ============================================================
   5. TOP BAR
============================================================= */
.top-bar {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0;
  font-size: 0.8125rem;
}

.top-bar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: var(--color-accent);
  color: var(--color-white);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar-address-link,
.top-bar-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.top-bar-address-link:hover,
.top-bar-email:hover {
  opacity: 0.85;
}

.top-bar-icon,
.top-bar-location-icon,
.top-bar-email-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #000;
}

.top-bar-location-icon svg,
.top-bar-email-icon svg { fill: currentColor; }

.top-bar-quality {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
}

.top-bar-social-octagon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #fff;
  color: #1c2c6b;
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-smooth), transform var(--transition-fast);
}

.top-bar-social-octagon:hover {
  background: var(--color-accent);
  color: #000;
  transform: translateY(-2px);
}

.top-bar-social-octagon svg,
.top-bar-social-octagon i {
  width: 14px;
  height: 14px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ============================================================
   6. SITE HEADER / NAVBAR
============================================================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.14);
}

.site-header-stadium {
  position: fixed;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1140px;
  margin: 0.75rem auto 0;
  z-index: 1035;
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  background: #3e3d3d94;
  backdrop-filter: blur(8px);
}

.container-header {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Brand */
.navbar-brand-tagline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.brand-main {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.navbar-logo {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.brand-land {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-text);
}

/* Nav links */
.navbar-light .nav-link {
  color: var(--color-white);
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.navbar-light .nav-link:hover {
  color: var(--color-accent);
  background: rgba(28, 44, 107, 0.08);
}

.nav-link-active {
  color: #ffffff !important;
  font-weight: 600;
}

.nav-link-active .nav-arrow { color: #ffffff; }

.nav-arrow { font-size: 0.6rem; opacity: 0.8; }

/* Dropdown */
.site-header .dropdown-menu {
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  padding: 0;
  overflow: hidden;
  margin-top: 0.5rem;
  min-width: 200px;
  background-color: #ffffff;
  top: 31px;
}

#servicesDropdown:hover { color: var(--color-accent); }

.site-header .nav-item.dropdown:hover .dropdown-menu,
.site-header .nav-item.dropdown.show  .dropdown-menu {
  display: block !important;
}

.dropdown-item.active,
.dropdown-item:active { background-color: #58891e; }

.site-header .nav-item.dropdown .dropdown-menu .dropdown-item {
  opacity: 0;
  transform: translateY(-8px);
  animation: none;
}

.site-header .nav-item.dropdown:hover .dropdown-menu .dropdown-item,
.site-header .nav-item.dropdown.show  .dropdown-menu .dropdown-item {
  animation: dropdownItemIn 0.35s ease forwards;
}

.site-header .nav-item.dropdown:hover .dropdown-menu .dropdown-item:nth-child(1),
.site-header .nav-item.dropdown.show  .dropdown-menu .dropdown-item:nth-child(1) { animation-delay: 0.05s; }

.site-header .nav-item.dropdown:hover .dropdown-menu .dropdown-item:nth-child(2),
.site-header .nav-item.dropdown.show  .dropdown-menu .dropdown-item:nth-child(2) { animation-delay: 0.15s; }

.site-header .nav-item.dropdown:hover .dropdown-menu .dropdown-item:nth-child(3),
.site-header .nav-item.dropdown.show  .dropdown-menu .dropdown-item:nth-child(3) { animation-delay: 0.25s; }

@keyframes dropdownItemIn { to { opacity: 1; transform: translateY(0); } }

.site-header .dropdown-item {
  font-weight: 600;
  padding: 0.5rem 1rem;
  color: #0f0f0f;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.site-header .nav-link.dropdown-toggle::after {
  margin-left: 0.35rem;
  vertical-align: 0.2em;
}

/* Misc nav elements */
.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--color-border);
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-smooth), color var(--transition-smooth);
}

.nav-icon-btn:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

/* Book-tour button */
.btn-book-tour {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #ffc107;
  color: #000;
  padding: 0 0.5rem 0 0;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background var(--transition-smooth), transform var(--transition-fast);
  border: none;
}

.btn-book-tour:hover {
  background: var(--color-accent);
  color: #000;
  transform: translateY(-1px);
}

.btn-book-tour-circle {
  /* FIX: was 40x40 — scaled down to match reduced button height */
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-right: 0.35rem;
}

.btn-book-tour-text { padding-right: 1rem; }

@keyframes arrowSlide {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(-8px); }
}

.contact-arrow { animation: arrowSlide 2s ease-in-out infinite; }

.navbar-toggler {
  background: #58891e;
  border: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(28, 44, 107, 0.3);
}

/* Contact (glass) button */
.contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #58891e;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 3rem;
  /* FIX: was 0.8rem 2.2rem — oversized for navbar context */
  padding: 0.5rem 1.25rem 0.5rem 0.4rem;
  color: white;
  font-weight: 600;
  /* FIX: was 1.4rem — now matches nav-link font size */
  font-size: 0.9375rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.contact-btn:hover {
  transform: scale(1.02);
  background: #ffc107;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 22px rgba(0, 20, 40, 0.3);
}

.arrow-entity {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s;
}

.contact-btn:hover .arrow-entity { transform: translateX(5px); }

.contact-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    95deg,
    rgba(255,255,255,0)   15%,
    rgba(255,255,255,0.5) 30%,
    rgba(255,255,255,0.9) 45%,
    rgba(255,255,255,0.5) 60%,
    rgba(255,255,255,0)   75%
  );
  transform: rotate(25deg) translateX(-100%) translateY(-20%);
  pointer-events: none;
  animation: glassShine 3s infinite ease-in-out;
}

@keyframes glassShine {
  0%       { opacity: 0; transform: rotate(25deg) translateX(-150%) translateY(-30%); }
  8%       { opacity: 0.3; }
  16%      { opacity: 0.9; transform: rotate(25deg) translateX(-30%) translateY(-10%); }
  24%      { opacity: 0.25; transform: rotate(25deg) translateX(30%) translateY(5%); }
  32%, 100%{ opacity: 0; transform: rotate(25deg) translateX(100%) translateY(20%); }
}

@media (prefers-reduced-motion: reduce) {
  .contact-btn::after { animation: none; }
}


/* ============================================================
   7. HERO / ABOUT-STYLE SECTION
============================================================= */
.hero-about-style {
  background: #F9F8F6;
}

.hero-about-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  max-width: 480px;
  height: 70%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cpath fill='%23718e5915' d='M60 10 Q90 30 85 60 Q80 95 60 110 Q40 95 35 60 Q30 30 60 10z'/%3E%3Cpath fill='%23718e5912' d='M95 45 Q110 55 108 75 Q105 95 95 105 Q82 98 80 75 Q78 55 95 45z'/%3E%3Cpath fill='%23718e5912' d='M25 50 Q38 58 36 78 Q34 98 25 108 Q12 100 10 78 Q8 58 25 50z'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  background-repeat: repeat;
  pointer-events: none;
}

.hero-about-content  { position: relative; z-index: 1; }

.hero-about-label {
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: #58891e;
  margin-bottom: 0.75rem;
}

.hero-about-leaf {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.hero-about-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
  overflow: hidden;
}

.hero-about-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.hero-about-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}

.hero-about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #4a4a4a;
}

.hero-about-check {
  color: #1C2C6B;
  font-weight: 700;
  font-size: 1rem;
}

/* Feature cards */
.hero-about-feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  border: 1px solid rgba(14, 107, 148, 0.08);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-about-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14, 107, 148, 0.12);
  border-color: rgba(244, 180, 0, 0.3);
}

.hero-about-feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-about-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(14, 107, 148, 0.15));
  transition: transform var(--transition-smooth);
}

.hero-about-feature-card:hover .hero-about-feature-icon img { transform: scale(1.1); }

.hero-about-feature-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}

.hero-about-feature-title.text-left { text-align: left; }

.small-description {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-align: left;
  padding-left: 5px;
}

/* Stats row */
.hero-about-stats-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.hero-about-stat-circle {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-about-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #c8d9b1;
  background: #F9F8F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-about-percent {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: #2e4325;
}

.hero-about-stat-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.4;
}

/* CTA */
.hero-about-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.btn-hero-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #58891e;
  color: #000000;
  padding: 0.65rem 1.35rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.25s ease;
}

.btn-hero-more:hover {
  background: #1C2C6B;
  color: #fff;
  transform: translateY(-1px);
}

.btn-hero-arrow { font-size: 1rem; }

.hero-about-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #4a4a4a;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.hero-about-phone:hover { opacity: 0.9; }

.hero-about-phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #dce7bf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.hero-about-phone strong { color: #2e4325; }

/* Load animations */
.hero-about-style .hero-about-img-wrap {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

.hero-about-style .hero-about-label  { opacity: 0; transform: translateY(20px); transition: opacity .55s cubic-bezier(0.22,1,0.36,1) .10s, transform .55s cubic-bezier(0.22,1,0.36,1) .10s; }
.hero-about-style .hero-about-desc   { opacity: 0; transform: translateY(20px); transition: opacity .55s cubic-bezier(0.22,1,0.36,1) .25s, transform .55s cubic-bezier(0.22,1,0.36,1) .25s; }
.hero-about-style .hero-about-checklist { opacity: 0; transform: translateY(20px); transition: opacity .55s cubic-bezier(0.22,1,0.36,1) .40s, transform .55s cubic-bezier(0.22,1,0.36,1) .40s; }
.hero-about-style .hero-about-stats-row { opacity: 0; transform: translateY(20px); transition: opacity .55s cubic-bezier(0.22,1,0.36,1) .55s, transform .55s cubic-bezier(0.22,1,0.36,1) .55s; }
.hero-about-style .hero-about-cta    { opacity: 0; transform: translateY(20px); transition: opacity .55s cubic-bezier(0.22,1,0.36,1) .70s, transform .55s cubic-bezier(0.22,1,0.36,1) .70s; }

.hero-about-style .hero-about-feature-card { opacity: 0; transform: translateY(20px); transition: opacity .55s cubic-bezier(0.22,1,0.36,1) .40s, transform .55s cubic-bezier(0.22,1,0.36,1) .40s; }
.hero-about-style .hero-about-feature-card:nth-child(1) { transition-delay: 0.4s; }
.hero-about-style .hero-about-feature-card:nth-child(2) { transition-delay: 0.5s; }
.hero-about-style .hero-about-feature-card:nth-child(3) { transition-delay: 0.6s; }
.hero-about-style .hero-about-feature-card:nth-child(4) { transition-delay: 0.7s; }

.hero-about-style.hero-about-visible .hero-about-img-wrap,
.hero-about-style.hero-about-visible .hero-about-label,
.hero-about-style.hero-about-visible .hero-about-desc,
.hero-about-style.hero-about-visible .hero-about-checklist,
.hero-about-style.hero-about-visible .hero-about-feature-card,
.hero-about-style.hero-about-visible .hero-about-stats-row,
.hero-about-style.hero-about-visible .hero-about-cta {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Headline letter animation */
.hero-about-word   { display: inline-block; white-space: normal; }
.hero-about-letter { display: inline-block; opacity: 0; transform: translateX(18px); }

.hero-about-style.hero-about-visible .hero-about-letter {
  animation: heroAboutLetterIn 0.42s cubic-bezier(0.22,1,0.36,1) forwards;
}

@keyframes heroAboutLetterIn { to { opacity: 1; transform: translateX(0); } }

/* Hero image combo */
.hero-image-combo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
}

.hero-main-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(28,44,107,0.08);
  transition: transform var(--transition-slower), box-shadow var(--transition-slower);
}

.hero-image-combo:hover .hero-main-img {
  transform: scale(1.03);
  box-shadow: 0 20px 56px rgba(0,0,0,0.15), 0 8px 24px rgba(28,44,107,0.12);
}

.hero-image-combo::after {
  content: '';
  position: absolute;
  top: -50%; left: -80%;
  width: 60%; height: 200%;
  background: linear-gradient(105deg,
    transparent 0%, transparent 35%,
    rgba(255,255,255,0.15) 45%,
    rgba(255,255,255,0.5)  50%,
    rgba(255,255,255,0.15) 55%,
    transparent 65%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}

.hero-image-combo:hover::after { left: 120%; }

.hero-overlap-img {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  width: 180px; height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  border: 4px solid var(--color-white);
  z-index: 3;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hero-overlap-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-combo:hover .hero-overlap-img { transform: scale(1.05); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }

/* Overlay cards */
.hero-overlay-card { position: absolute; z-index: 2; transition: transform var(--transition-smooth); }
.hero-image-combo:hover .hero-overlay-rect   { transform: scale(1.02); }
.hero-image-combo:hover .hero-overlay-circle { transform: translateY(-50%) scale(1.02); }

.hero-overlay-circle {
  top: 50%; right: 1.5rem;
  transform: translateY(-50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1rem;
  border: 3px solid rgba(244,180,0,0.3);
}

.hero-overlay-label   { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text); margin-bottom: 0.25rem; }
.hero-overlay-chevrons{ font-size: 0.6rem; color: var(--color-accent); letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.hero-overlay-number  { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--color-text); }
.hero-overlay-plus    { font-size: 1rem; font-weight: 700; color: var(--color-text); }

.hero-overlay-rect {
  bottom: 1.5rem; right: 1.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: var(--shadow-lift);
}

.hero-overlay-big  { font-size: 1.75rem; font-weight: 800; }
.hero-overlay-rect .hero-overlay-plus { font-size: 1.25rem; color: var(--color-white); }
.hero-overlay-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; }
.hero-overlay-icon { font-size: 1.25rem; }
.hero-overlay-meta span:last-child { font-size: 0.75rem; opacity: 0.95; }

/* About Us tag */
.hero-about-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(14,107,148,0.25);
}

.hero-about-tag-icon { color: var(--color-accent); font-size: 0.5rem; }

/* Headline animated */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  transition: color 0.4s ease, transform 0.35s ease;
}

.hero-headline-animated::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}

.hero-headline-animated:hover { color: var(--color-primary); transform: translateX(6px); }
.hero-headline-animated:hover::after { width: 100%; }

.hero-subtext { font-size: 1rem; color: var(--color-text-muted); margin-bottom: 1.25rem; line-height: 1.65; }

.hero-bullets { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; }
.hero-bullets li { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; color: var(--color-text); font-weight: 500; }
.hero-bullets .bullet-icon { font-size: 1.125rem; }

/* Stats grid */
.hero-about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

.hero-stat-item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(28,44,107,0.08);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-stat-item:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(28,44,107,0.12); }
.hero-stat-icon  { font-size: 1.25rem; flex-shrink: 0; }
.hero-stat-num   { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: var(--color-primary); }
.hero-stat-plus  { font-size: 0.875rem; font-weight: 600; color: var(--color-primary); }
.hero-stat-label { font-size: 0.75rem; color: var(--color-text-muted); line-height: 1.3; }

/* Hero CTA / buttons */
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.btn-hero-read-more {
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  padding: 0.65rem 1.25rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(244,180,0,0.35);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
}

.btn-hero-read-more:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(244,180,0,0.4);
}

.btn-cta { padding: 0.75rem 1.5rem; font-weight: 600; font-size: 1rem; border-radius: 999px; transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth), color var(--transition-smooth); }

.btn-hero-primary { background: var(--color-accent); color: var(--color-primary); border: none; box-shadow: 0 4px 16px rgba(244,180,0,0.35); }
.btn-hero-primary:hover { background: var(--color-accent); color: var(--color-primary); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(244,180,0,0.4); }

.btn-hero-phone { background: var(--color-primary); color: var(--color-white); border: none; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-hero-phone:hover { background: var(--color-primary); color: var(--color-white); transform: translateY(-2px); }
.phone-icon { font-size: 1rem; }


/* ============================================================
   8. OFFERING / PROCESS SECTION
============================================================= */
.offering-section {
  padding: 60px 20px;
  background: #F4F6F9;
  text-align: center;
}

.offering-section--process {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.offering-header { text-align: center; }

.offering-header-img {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 0.5rem;
}

.offering-header-img[src=""],
.offering-header-img:not([src]) {
  min-height: 80px;
  background: linear-gradient(135deg, rgba(45,106,79,0.15) 0%, rgba(244,180,0,0.15) 100%);
  border-radius: var(--radius-md);
}

.offering-header-sub {
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  margin: -33px 0 20px;
  letter-spacing: 0.02em;
  padding-bottom: 20px;
}

/* Process flow */
.offering-process {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.offering-step {
  flex: 1 1 0;
  min-width: 180px;
  max-width: 260px;
  text-align: center;
  padding: 0 0.75rem;
}

.offering-step-icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-md);
  background-color: rgba(45,106,79,0.08);
  color: #58891e;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #58891e;
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.offering-step-icon--greenhouse {
  border: 2px dashed rgba(45,106,79,0.5);
  background-color: rgba(45,106,79,0.06);
}

.offering-step:hover .offering-step-icon {
  transform: scale(1.1);
  background-color: #58891e;
  color: #1a1a1a;
  border-color: #58891e;
  box-shadow: 0 8px 24px rgba(244,180,0,0.35);
}

.offering-step-title { font-size: 1.25rem; font-family: var(--font-body); font-weight: 700; color: #1a1a1a; margin: 0 0 0.5rem; }
.offering-step-desc  { font-size: 0.9375rem; color: #5c5c5c; line-height: 1.6; margin: 0; }

.offering-step-connector {
  flex: 0 0 75px;
  width: 80px;
  align-self: center;
  margin-top: -2.5rem;
  display: flex; align-items: center; justify-content: center;
  color: #2d6a4f;
  position: relative;
}

.offering-connector-svg { width: 100%; height: 40px; display: block; }
.offering-connector-line,
.offering-connector-arrow { color: #2d6a4f; }

/* Legacy cards */
.offering-section .hero-about-label { font-size: 14px; font-weight: 500; color: #58891e; margin-bottom: 10px; letter-spacing: 1px; }
.offering-section .section-desc { text-align: center; margin: 10px auto 30px; max-width: 650px; color: #666; font-size: 16px; }

.offering-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1140px;
  margin: auto;
  padding-top: 30px;
}

.offering-card {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  position: relative;
}

.offering-card:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(0,0,0,0.12); }

.card-image { height: 240px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }
.offering-card:hover .card-image img { transform: scale(1.08); }

.card-content {
  position: relative;
  background: #ffffff;
  margin-top: -100px;
  padding: 50px 30px 20px;
  border-radius: 40% 40% 30px 30px;
  text-align: center;
}

.icon-box {
  position: absolute;
  top: -35px; left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  width: 70px; height: 70px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 10px 25px rgba(0,0,0,0.15);
  border: 3px solid #f5f5f5;
}

.icon-box-img { transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.offering-card:hover .icon-box img { transform: rotate(15deg); }
.icon-box img { width: 32px; }

.offering-title { font-size: 25px; font-family: var(--font-heading); font-weight: 700; color: #1C2C6B; margin-bottom: 15px; }
.offering-desc  { font-size: 15px; color: #666; line-height: 1.7; margin: 0; }


/* ============================================================
   9. CLIENTS MARQUEE
============================================================= */
.clients-section {
  padding: 50px 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
}

.clients-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #58891e;
  margin-bottom: 0.5rem;
  text-align: center;
}

.clients-label-icon { width: 50px; height: auto; }
.clients-section .section-title { margin-bottom: 0.5rem; }
.clients-section .section-desc  { margin-bottom: 2.5rem; }

.clients-marquee-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
}

.clients-marquee-wrap::before,
.clients-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}

.clients-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--color-bg) 0%, transparent 100%); }
.clients-marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--color-bg) 0%, transparent 100%); }

.clients-marquee-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  width: max-content;
  animation: clients-marquee 45s linear infinite;
  will-change: transform;
}

.clients-marquee-wrap:hover .clients-marquee-track { animation-play-state: paused; }

@keyframes clients-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-flag-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  flex-shrink: 0; width: 140px;
  padding: 1.5rem 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(14,107,148,0.08), 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(14,107,148,0.1);
  text-decoration: none;
  color: var(--color-text);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1), border-color 0.4s cubic-bezier(0.4,0,0.2,1), background 0.4s cubic-bezier(0.4,0,0.2,1);
  opacity: 0;
  transform: translateY(20px);
  animation: clientCardFadeIn 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}

.client-flag-card:nth-child(1)  { animation-delay: 0.05s; }
.client-flag-card:nth-child(2)  { animation-delay: 0.10s; }
.client-flag-card:nth-child(3)  { animation-delay: 0.15s; }
.client-flag-card:nth-child(4)  { animation-delay: 0.20s; }
.client-flag-card:nth-child(5)  { animation-delay: 0.25s; }
.client-flag-card:nth-child(6)  { animation-delay: 0.30s; }
.client-flag-card:nth-child(7)  { animation-delay: 0.35s; }
.client-flag-card:nth-child(8)  { animation-delay: 0.40s; }
.client-flag-card:nth-child(9)  { animation-delay: 0.45s; }
.client-flag-card:nth-child(10) { animation-delay: 0.50s; }

@keyframes clientCardFadeIn { to { opacity: 1; transform: translateY(0); } }

.client-flag-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,44,107,0.03) 0%, rgba(244,180,0,0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 0; pointer-events: none;
}

.client-flag-card::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,44,107,0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1), height 0.5s cubic-bezier(0.4,0,0.2,1);
  z-index: 0; pointer-events: none;
}

.client-flag-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 20px 48px rgba(14,107,148,0.2), 0 8px 24px rgba(244,180,0,0.15), 0 0 0 1px rgba(244,180,0,0.2);
  border-color: rgba(244,180,0,0.4);
  background: rgba(255,255,255,0.98);
  color: #1C2C6B;
}

.client-flag-card:hover::before { opacity: 1; }
.client-flag-card:hover::after  { width: 200px; height: 200px; }

.client-flag-icon {
  display: flex; align-items: center; justify-content: center;
  width: 80px; height: 53px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 1px 4px rgba(14,107,148,0.1);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1), filter 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative; z-index: 1;
  background: var(--color-white);
  border: 2px solid rgba(255,255,255,0.8);
}

.client-flag-card:hover .client-flag-icon {
  transform: scale(1.12) rotate(2deg);
  box-shadow: 0 8px 24px rgba(14,107,148,0.25), 0 4px 12px rgba(244,180,0,0.2);
  filter: brightness(1.05) saturate(1.1);
}

.client-flag-icon img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.client-flag-card:hover .client-flag-icon img { transform: scale(1.05); }

.client-flag-name {
  font-size: 0.9375rem; font-weight: 600; text-align: center; line-height: 1.2;
  transition: color 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative; z-index: 1;
}

.client-flag-card:hover .client-flag-name { color: #1C2C6B; transform: translateY(-2px); }


/* ============================================================
   10. STATS BAR
============================================================= */
.stats-bar { background: var(--color-primary); padding: 2.5rem 0; color: var(--color-white); }
.stats-bar-item { padding: 0.5rem; }
.stats-bar-number { display: block; font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--color-accent); }
.stats-bar-label  { font-size: 0.875rem; color: rgba(255,255,255,0.85); }


/* ============================================================
   11. COUNTER SECTION
============================================================= */
.counter-section {
  position: relative;
  padding: 50px 20px;
  overflow: hidden;
  background: #1C2C6B;
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
  color: white;
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.counter-section::before,
.counter-section::after {
  content: "";
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 12s infinite alternate ease-in-out;
}

.counter-section::before { background: #58891e; top: -100px; left: -100px; }
.counter-section::after  { background: #ffffff; bottom: -100px; right: -100px; animation-delay: 4s; }

@keyframes float {
  from { transform: translateY(0) translateX(0); }
  to   { transform: translateY(60px) translateX(30px); }
}

.counter-container {
  position: relative; z-index: 2;
  max-width: 1140px; margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px;
}

.counter-box {
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 15px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.4s ease;
}

.counter-box:hover { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.25); }

.counter-number { font-size: clamp(40px, 6vw, 60px); font-weight: 700; color: #fff; margin-bottom: 10px; }
.counter-label  { font-size: 16px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; }

.fade-in { opacity: 0; transform: translateY(40px); transition: 1s ease; }
.fade-in.show { opacity: 1; transform: translateY(0); }


/* ============================================================
   12. FARM JOURNEY CARDS
============================================================= */
.farm-journey-section {
  padding: clamp(4rem, 8vw, 4rem) 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.farm-journey-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(28,44,107,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none; z-index: 0;
}

.farm-journey-section::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,180,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none; z-index: 0;
}

.farm-journey-section .container { position: relative; z-index: 1; }

.farm-journey-card {
  position: relative;
  height: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(28,44,107,0.1);
  border: 1px solid rgba(255,255,255,0.8);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1), border-color 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  min-height: 400px;
  cursor: pointer;
}

.farm-journey-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,44,107,0.05) 0%, rgba(244,180,0,0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 1; pointer-events: none;
}

.farm-journey-card:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15), 0 2px 12px rgba(70,70,70,0.2), 0 0 0 1px rgba(37,37,37,0.1);
  border-color: rgba(59,59,59,0.4);
}

.farm-journey-card:hover::after { opacity: 1; }

.farm-journey-card-image {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #1C2C6B 0%, #58891e 100%);
  transition: height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.farm-journey-card-image::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  z-index: 2; pointer-events: none;
}

.farm-journey-card:hover      .farm-journey-card-image { height: 60%; }
.farm-journey-card:not(:hover).farm-journey-card-image { height: 100%; }
.farm-journey-card:hover .farm-journey-card-image::after { transform: translateX(100%) translateY(100%) rotate(45deg); }

.farm-journey-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), filter 0.4s cubic-bezier(0.4,0,0.2,1);
  filter: brightness(0.85) contrast(1.1);
}

.farm-journey-card:hover .farm-journey-img { transform: scale(1.15) translateY(-5%); filter: brightness(1) contrast(1.2); }

.farm-journey-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), background 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}

.farm-journey-card:hover .farm-journey-card-overlay {
  opacity: 0.3;
  background: linear-gradient(180deg, rgba(28,44,107,0.2) 0%, rgba(244,180,0,0.15) 100%);
}

.farm-journey-card-initial {
  position: absolute;
  bottom: 2rem; left: 0; right: 0;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 0 1.75rem;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.farm-journey-card:hover .farm-journey-card-initial { opacity: 0; transform: translateY(10px); pointer-events: none; }

.farm-journey-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem 2.25rem;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 3;
  display: flex; flex-direction: column;
  min-height: 50%;
  border-radius: 40% 40% 0 0;
}

.farm-journey-card:hover .farm-journey-card-content { transform: translateY(0); }

.farm-journey-card-icon-initial {
  width: 70px; height: 70px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 4px 12px rgba(28,44,107,0.15), inset 0 1px 0 rgba(255,255,255,0.8);
  border: 2px solid rgba(255,255,255,0.5);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  animation: iconFloat 3s ease-in-out infinite;
}

.farm-journey-card:hover .farm-journey-card-icon-initial { transform: scale(0.9); opacity: 0.7; }

.farm-journey-card-icon-initial img {
  width: 40px; height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
  transition: transform 0.5s ease;
  border-radius: 10px;
}

.farm-journey-card:hover .farm-journey-card-icon-initial img { transform: scale(1.1); }

@keyframes iconFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.farm-journey-card-title-initial {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.65rem);
  font-weight: 700; color: #ffffff; text-align: center; line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4), 0 4px 20px rgba(0,0,0,0.3);
  margin: 0;
}

.farm-journey-card-icon {
  width: 80px; height: 80px;
  margin: -70px auto 1.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(28,44,107,0.25), 0 4px 12px rgba(244,180,0,0.2), inset 0 1px 0 rgba(255,255,255,0.8);
  border: 3px solid rgba(255,255,255,0.9);
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1), border-color 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative; z-index: 4;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
}

.farm-journey-card:hover .farm-journey-card-icon {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 16px 40px rgba(28,44,107,0.35), 0 8px 20px rgba(244,180,0,0.25), inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(28,44,107,0.5);
}

.farm-journey-card-icon::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1C2C6B, #58891e);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: -1;
}

.farm-journey-card:hover .farm-journey-card-icon::before { opacity: 0.3; }

.farm-journey-icon-img {
  width: 48px; height: 48px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
  border-radius: 10px;
}

.farm-journey-card:hover .farm-journey-icon-img { transform: scale(1.15) rotate(8deg); }

.farm-journey-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  font-weight: 700; color: #1a1a1a;
  margin: 0 0 0.5rem; text-align: center; line-height: 1.3;
  transition: color 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  opacity: 0; transform: translateY(15px);
}

.farm-journey-card:hover .farm-journey-card-title { opacity: 1; transform: translateY(0); color: #1C2C6B; }

.farm-journey-card-subtitle {
  font-size: 0.875rem; font-weight: 600; color: #58891e;
  text-align: center; margin: 0 0 1rem; letter-spacing: 0.5px; text-transform: uppercase;
  transition: color 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  opacity: 0; transform: translateY(15px);
}

.farm-journey-card:hover .farm-journey-card-subtitle { opacity: 1; transform: translateY(0); color: #1C2C6B; }

.farm-journey-card-description {
  font-size: 0.9375rem; line-height: 1.7; color: #4a4a4a;
  text-align: center; margin: 0; flex: 1;
  transition: color 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  opacity: 0; transform: translateY(15px);
}

.farm-journey-card:hover .farm-journey-card-description { opacity: 1; transform: translateY(0); color: #1a1a1a; }

.farm-journey-card.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1); }
.farm-journey-card.reveal.visible { opacity: 1; transform: translateY(0); }
.farm-journey-card.reveal.visible:nth-child(1) { transition-delay: 0.1s; }
.farm-journey-card.reveal.visible:nth-child(2) { transition-delay: 0.2s; }
.farm-journey-card.reveal.visible:nth-child(3) { transition-delay: 0.3s; }


/* ============================================================
   13. FEATURED SLIDER
============================================================= */
.featured-slider-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  padding: 3rem 0;
  background: #f8f9fa;
}

.featured-slider-wrapper { position: relative; width: 100%; height: 100%; overflow: hidden; }

.featured-slider-track {
  display: flex;
  width: 100%;
  /* FIX: was fixed 600px; use min/clamp for fluid height */
  height: clamp(400px, 60vh, 600px);
  position: relative;
}

.featured-slide {
  position: relative;
  height: 100%;
  width: 17.5%;
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1), opacity 0.6s ease, transform 0.4s ease;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0.7;
  z-index: 1;
}

.featured-slide-active { width: 65%; opacity: 1; z-index: 3; }
.featured-slide:not(.featured-slide-active):hover { opacity: 0.9; transform: scale(1.02); }

.featured-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.featured-slide-active .featured-slide-bg         { transform: scale(1); }
.featured-slide:not(.featured-slide-active) .featured-slide-bg { transform: scale(1.1); }

.featured-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.featured-slide-active .featured-slide-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.6) 100%);
}

.featured-slide-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; align-items: center;
  padding: 2rem 0;
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.featured-slide-active .featured-slide-content { opacity: 1; transform: translateX(0); }

.featured-slide:not(.featured-slide-active) .featured-slide-content {
  opacity: 1; transform: translateX(0);
  justify-content: center; padding: 1.5rem;
}

.featured-slide:not(.featured-slide-active) .featured-slide-content .container,
.featured-slide:not(.featured-slide-active) .featured-slide-content .row {
  width: 100%; max-width: 100%; padding: 0;
}

.featured-slide:not(.featured-slide-active) .featured-slide-content .row {
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 1.25rem; margin: 0;
}

.featured-slide:not(.featured-slide-active) .featured-slide-content .col-lg-4,
.featured-slide:not(.featured-slide-active) .featured-slide-content .col-lg-8 {
  flex: 0 0 100%; max-width: 100%; width: 100%;
}

.featured-slide:not(.featured-slide-active) .featured-slide-description,
.featured-slide:not(.featured-slide-active) .featured-slide-cta,
.featured-slide:not(.featured-slide-active) .featured-slide-subtitle { display: none; }

.featured-slide-image-wrapper {
  position: relative;
  width: 100%; max-width: 400px;
  margin: 0 auto;
  animation: floatImage 6s ease-in-out infinite;
}

.featured-slide:not(.featured-slide-active) .featured-slide-image-wrapper {
  max-width: 200px; width: 100%; margin: 0 auto 1.25rem;
  animation: none; order: -1;
}

.featured-slide:not(.featured-slide-active) .featured-slide-image {
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4));
  width: 100%; height: auto; border-radius: 12px;
}

.featured-slide-image { width: 100%; height: auto; display: block; filter: drop-shadow(0 12px 40px rgba(0,0,0,0.3)); border-radius: 8px; }

.featured-slide-text { color: var(--color-white); padding: 1rem; }

.featured-slide:not(.featured-slide-active) .featured-slide-text { padding: 0; text-align: center; width: 100%; }

.featured-slide-subtitle {
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  color: #ffffff; margin: 0 0 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  display: inline-block; padding: 0.4rem 1rem;
  background: rgba(244,180,0,0.2); backdrop-filter: blur(10px);
  border: 1px solid rgba(244,180,0,0.4); border-radius: 999px;
  box-shadow: 0 2px 8px rgba(244,180,0,0.2);
}

.featured-slide-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2; color: var(--color-white); margin: 0 0 1.25rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3), 0 4px 20px rgba(0,0,0,0.2);
  position: relative; padding-left: 1rem;
}

.featured-slide-headline::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--color-accent); border-radius: 2px;
  box-shadow: 0 0 10px rgba(244,180,0,0.5);
}

.featured-slide:not(.featured-slide-active) .featured-slide-headline {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 0; padding-left: 0; text-align: center; font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.3);
}

.featured-slide:not(.featured-slide-active) .featured-slide-headline::before { display: none; }

.featured-slide-description {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,0.9); line-height: 1.7; margin: 0 0 1.75rem;
  font-weight: 400; text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.featured-slide-cta {
  display: inline-flex; align-items: center; gap: 0;
  background: var(--color-primary); color: var(--color-white);
  padding: 0 0.5rem 0 0; border-radius: 999px;
  font-weight: 600; font-size: clamp(0.85rem, 1.2vw, 1rem);
  text-decoration: none; border: none;
  transition: background var(--transition-smooth), transform var(--transition-fast), box-shadow var(--transition-smooth);
}

.featured-slide-cta:hover {
  background: var(--color-primary); color: var(--color-white);
  transform: translateY(-1px); box-shadow: 0 8px 24px rgba(14,107,148,0.5);
}

.featured-slide-cta .btn-book-tour-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-right: 0.25rem;
  transition: background var(--transition-smooth);
}

.featured-slide-cta .contact-arrow { animation: arrowSlide 2s ease-in-out infinite; color: var(--color-white); }
.featured-slide-cta .btn-book-tour-text { padding-right: 1rem; color: var(--color-white); transition: color var(--transition-fast); }


/* ============================================================
   14. FEATURE IMAGE CARDS
============================================================= */
.feature-cards-section { padding: 90px 20px; background-color: #F9F8F6; }
.feature-cards-inner   { max-width: 1200px; margin: 0 auto; }

.feature-cards-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }

.feature-cards-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.875rem; font-weight: 600; color: #58891e; margin-bottom: 0.5rem;
}

.feature-cards-label-icon { width: 50px; height: 50px; object-fit: contain; }

.feature-cards-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  font-weight: 600; color: #111827; margin-bottom: 0.75rem;
}

.feature-cards-subtitle { font-size: 0.98rem; color: var(--color-text-muted); margin: 0; }

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.feature-card {
  position: relative; height: 100%;
  border-radius: 18px; overflow: visible;
  transition: all 0.4s ease;
  will-change: transform, box-shadow;
}

.feature-card-image { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 18px 40px rgba(15,23,42,0.18); }
.feature-card-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform 0.5s ease; }

.feature-card-panel {
  position: absolute; left: 24px; right: 24px; bottom: -20px;
  padding: 26px 24px 22px;
  border-radius: 14px; background-color: #ffffff;
  box-shadow: 0 16px 40px rgba(15,23,42,0.16);
  transition: all 0.4s ease;
  display: flex; flex-direction: column; gap: 10px;
}

.feature-card-panel-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }

.feature-card-badge {
  display: inline-flex; align-items: center;
  padding: 4px 12px; font-size: 0.72rem; font-weight: 600; border-radius: 999px;
  background-color: rgba(28,44,107,0.06); color: #1C2C6B; letter-spacing: 0.06em; text-transform: uppercase;
}

.feature-card-icon-circle {
  width: 36px; height: 36px; border-radius: 999px;
  background-color: rgba(244,180,0,0.12); color: #1C2C6B;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.4s ease, background-color 0.4s ease, color 0.4s ease;
}

.feature-card-title  { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; margin: 10px 0 4px; color: #111827; }
.feature-card-desc   { font-size: 0.92rem; line-height: 1.6; color: var(--color-text-muted); margin: 0 0 18px; }
.feature-card-bottom { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 0.85rem; }
.feature-card-meta   { color: #6B7280; font-weight: 500; }
.feature-card-link   { display: inline-flex; align-items: center; gap: 4px; font-size: 0.85rem; font-weight: 600; color: #111827; }
.feature-card-link span { transition: transform 0.3s ease; }
.feature-card:hover .feature-card-link span { transform: translateX(4px); }

.feature-card::before {
  content: "";
  position: absolute; inset: 0; border-radius: 24px;
  background: radial-gradient(circle at top, rgba(15,23,42,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}

.feature-card:hover { transform: translateY(-10px); }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover .feature-card-image img { transform: scale(1.05); }

.feature-card:hover .feature-card-panel { background-color: var(--color-primary); color: #F9FAFB; box-shadow: 0 22px 50px rgba(15,23,42,0.35); }
.feature-card:hover .feature-card-badge { background-color: rgba(255,255,255,0.18); color: #F9FAFB; }
.feature-card:hover .feature-card-meta,
.feature-card:hover .feature-card-title,
.feature-card:hover .feature-card-desc,
.feature-card:hover .feature-card-link { color: #F9FAFB; }
.feature-card:hover .feature-card-icon-circle { background-color: rgba(255,255,255,0.22); color: #111827; transform: rotate(12deg) scale(1.08); }

.feature-card--highlight { transform: scale(1.02); }
.feature-card--highlight .feature-card-panel { background-color: var(--color-primary); color: #F9FAFB; box-shadow: 0 24px 60px rgba(15,23,42,0.35); }
.feature-card--highlight .feature-card-title,
.feature-card--highlight .feature-card-desc,
.feature-card--highlight .feature-card-meta,
.feature-card--highlight .feature-card-link,
.feature-card--highlight .feature-card-badge { color: #F9FAFB; }
.feature-card--highlight .feature-card-badge { background-color: rgba(255,255,255,0.18); }
.feature-card--highlight .feature-card-icon-circle { background-color: rgba(255,255,255,0.22); color: #111827; }


/* ============================================================
   15. CONTENT CARD
============================================================= */
.content-card-section { padding: 80px 20px; background-color: var(--color-white); }

.content-card { background: #F4F6F9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }

.content-card__image-wrap { height: 100%; min-height: 280px; }

.content-card__image {
  width: 100%; height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.content-card__body { padding: clamp(1.5rem, 4vw, 2.5rem); display: flex; flex-direction: column; justify-content: center; }
.content-card__image--right { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }

.content-card__label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 500;
  color: var(--color-accent); margin-bottom: 0.5rem;
}

.content-card__label-icon { width: 50px; height: 50px; object-fit: contain; }
.content-card__title { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: var(--color-text); margin-bottom: 1rem; line-height: 1.25; }
.content-card__desc  { font-size: 1rem; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.content-card__feature { margin-bottom: 1.25rem; }
.content-card__feature:last-child { margin-bottom: 0; }
.content-card__feature-heading { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.5rem; }

.content-card__feature-row { display: flex; align-items: flex-start; gap: 0.75rem; }

.content-card__feature-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background-color: #d4edda; color: #1e7e34;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1rem;
}

.content-card__feature-text { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.6; margin: 0; }


/* ============================================================
   16. PAGE BANNER
   FIX: Merged .page-banner and .page-banner-about.
        Use .page-banner--about modifier for the about page.
        Removed duplicate .btn-book-tou block.
============================================================= */
.page-banner {
  position: relative;
  background-color: #1A201A;
  background-image:
    linear-gradient(rgba(26,32,26,0.82), rgba(26,32,26,0.78)),
    var(--banner-img, url("../images/F2family.webp"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 1.3rem 50px;
  text-align: center;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}

.page-banner--about {
  background-image:
  linear-gradient(rgba(26,32,26,0.82), rgba(26,32,26,0.78)),
    url("../images/Sunriaagro-group.jpeg");
    
  background-position: right center;
  padding: 7rem 1.5rem;
}

.page-banner__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: 1.25rem;
  padding-top: 28px;
  letter-spacing: 0.02em;
}

.btn-book-tou {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-white);
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 400;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color var(--transition-fast);
}

.btn-book-tou:hover { background-color: #58891e; color: var(--color-white); }

.page-banner__sep { margin: 0 0.5rem; opacity: 0.9; }


/* ============================================================
   17. ABOUT CONTENT SECTION
============================================================= */
.about-content {
  position: relative;
  background-color: #f8f8f8;
  overflow: hidden;
  padding-top: clamp(3.5rem, 8vw, 1.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 1.5rem);
}

.about-content::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 52%; max-width: 580px; height: 100%;
  background-image: radial-gradient(circle at 1px 1px, #dde0dd 1.2px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.65; pointer-events: none;
}

.about-content__left { position: relative; z-index: 1; text-align: left; padding-right: 2rem; }
.about-content__label { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #2d6a4f; margin-bottom: 0.75rem; }
.about-content__heading { font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.25; color: #333333; margin-bottom: 1.25rem; }
.about-content__desc { font-size: 1rem; color: var(--color-text-muted); line-height: 1.65; margin-bottom: 1.5rem; max-width: 52ch; }
.about-content__feature { display: flex; gap: 1.25rem; margin-bottom: 1.75rem; text-align: left; }

.about-content__feature-icon {
  flex-shrink: 0; width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background-color: rgba(102,176,50,0.2);
  border: 1px solid rgba(102,176,50,0.35);
  color: #2d6a4f; font-size: 1.5rem;
}

.about-content__feature-title { font-family: var(--font-body); font-size: 1.125rem; font-weight: 700; color: #333333; margin-bottom: 0.35rem; }
.about-content__feature-desc  { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.6; margin: 0; }

/* FIX: removed conflicting "color: var(--color-white)" — final rendered color is black */
.about-content__btn {
  display: inline-flex; align-items: center; justify-content: center;
  background-color: #58891e;
  color: black;
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md); text-decoration: none;
  box-shadow: 0 4px 14px #58891e;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.about-content__btn:hover {
  background-color: #58891e; color: var(--color-white);
  box-shadow: 0 6px 18px #58891e; transform: translateY(-1px);
}

.about-content__right { position: relative; z-index: 1; display: flex; align-items: center; justify-content: flex-end; }
.about-content__right-inner { position: relative; width: 100%; max-width: 100%; }

/* FIX: was width:557px; height:134vh; max-height:464px — replaced with fluid values */
.about-content__img-single {
  width: 100%;
  max-width: 557px;
  height: auto;
  max-height: 464px;
  object-fit: cover;
}


/* ============================================================
   18. WHY CHOOSE US
============================================================= */
.why-choose { background: linear-gradient(180deg, #f8f7f4 0%, #f0eee8 100%); }

.why-choose__header { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }

.why-choose__label { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #2d6a4f; margin-bottom: 0.5rem; }

.why-choose__title { font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 600; line-height: 1.25; color: #2a2a2a; margin: 0; }
.why-choose__title strong { font-weight: 700; color: #58891e; }

.why-choose__col--left  { text-align: left; align-items: flex-start; }
.why-choose__col--right { text-align: right; align-items: flex-end; }

.why-choose__item {
  margin-bottom: 15px;
  max-width: 300px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.why-choose__item:hover { box-shadow: 0 8px 24px rgba(45,106,79,0.1); transform: translateY(-2px); }
.why-choose__col--right .why-choose__item { align-items: flex-end; }

.why-choose__item-head { display: flex; flex-direction: row; align-items: center; gap: 0.75rem; }

.why-choose__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: #2d6a4f; font-size: 1.4rem; flex-shrink: 0;
  background: rgba(45,106,79,0.08); border-radius: 50%;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.why-choose__item:hover .why-choose__icon { background: rgba(45,106,79,0.14); transform: scale(1.05); }

.why-choose__item-title { font-family: var(--font-body); font-size: 1.125rem; font-weight: 700; color: #2a2a2a; margin: 0; }
.why-choose__item-desc  { font-size: 0.9375rem; color: #5c5c5c; line-height: 1.6; margin: 0; }
.why-choose__col--right .why-choose__item-desc { text-align: left; }

.why-choose__center { display: flex; align-items: center; justify-content: center; order: 0; }

.why-choose__graphic {
  position: relative; width: 100%; max-width: 380px;
  min-height: 440px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto; padding: 0 0.25rem;
}

.why-choose__img {
  width: 100%; max-width: 320px; height: auto; max-height: 520px;
  display: block; object-fit: contain; object-position: center bottom;
  filter: drop-shadow(0 12px 28px rgba(45,106,79,0.15));
  transition: transform var(--transition-smooth);
}

.why-choose__graphic:hover .why-choose__img { transform: scale(1.02); }


/* ============================================================
   19. PRODUCT PAGE
============================================================= */
.product-hero {
  position: relative;
  padding: 7.5rem 0 4.5rem;
  background:
    radial-gradient(circle at 10% 20%, rgba(244,180,0,0.22), transparent 60%),
    radial-gradient(circle at 80% 0%, rgba(28,44,107,0.4), transparent 55%),
    linear-gradient(135deg, #ffffff 0%, #f7fafc 40%, #edf2ff 100%);
  overflow: hidden;
}

.product-hero-inner { max-width: 720px; padding-top: 3.25rem; padding-bottom: 1.75rem; }

.product-hero-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 1.1rem; border-radius: 999px;
  background: rgba(244,180,0,0.12); color: var(--color-primary);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
}

.product-hero-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 600; letter-spacing: 0.02em; color: var(--color-primary); margin: 1.1rem 0 0.5rem; }
.product-hero-subtitle { font-size: 1.02rem; color: var(--color-text-muted); max-width: 36rem; margin-bottom: 1.5rem; }

.product-breadcrumb {
  position: relative; display: inline-flex; align-items: center;
  padding: 0.55rem 1.2rem; border-radius: 999px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 12px 30px rgba(15,23,42,0.12);
  backdrop-filter: blur(10px);
}

.product-breadcrumb-list { display: inline-flex; align-items: center; gap: 0.35rem; margin: 0; padding: 0; list-style: none; font-size: 0.9rem; }
.product-breadcrumb-item a { color: var(--color-text-muted); font-weight: 500; }
.product-breadcrumb-item a:hover { color: var(--color-primary); }
.product-breadcrumb-current { color: var(--color-primary); font-weight: 600; }
.product-breadcrumb-separator span { color: rgba(0,0,0,0.3); }

.product-hero-bg-orbit { position: absolute; border-radius: 50%; border: 1px dashed rgba(28,44,107,0.16); pointer-events: none; }
.product-hero-bg-orbit--one { width: 380px; height: 380px; top: -80px; right: -60px; }
.product-hero-bg-orbit--two { width: 260px; height: 260px; bottom: -40px; left: -20px; }

.product-showcase {
  background:
    radial-gradient(circle at top left, rgba(244,180,0,0.14), transparent 55%),
    radial-gradient(circle at bottom right, rgba(28,44,107,0.1), transparent 60%),
    var(--color-bg);
  padding-top: 3.5rem; padding-bottom: 4.5rem;
}

.product-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-lift);
  padding: 2.25rem 1.75rem;
  margin-bottom: 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(28,44,107,0.08);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-fast);
}

.product-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(244,180,0,0.16), transparent 55%);
  opacity: 0; transition: opacity var(--transition-smooth); pointer-events: none;
}

.product-card--highlight { border-color: rgba(244,180,0,0.7); }
.product-card--highlight::before { opacity: 1; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 22px 60px rgba(15,23,42,0.18); border-color: rgba(28,44,107,0.24); }

.product-media { position: relative; }

/* FIX: was height:500px; now uses clamp for fluid height */
.product-media-main {
  width: 100%;
  height: clamp(260px, 45vw, 500px);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.product-main-image {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transform-origin: center;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.product-media-glow {
  position: absolute; inset: auto 10% -25%; height: 40%;
  background: radial-gradient(circle at center, rgba(244,180,0,0.65), transparent 65%);
  opacity: 0.6; filter: blur(12px); pointer-events: none;
}

.product-card:hover .product-main-image { transform: scale(1.04) translateY(-2px); }
.product-main-image.is-switching { opacity: 0; transform: scale(0.98) translateX(-8px); }

.product-media-nav {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0.5rem; z-index: 2; pointer-events: none;
}

.product-media-arrow {
  width: 34px; height: 34px; border-radius: 999px; border: none;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 8px 18px rgba(15,23,42,0.28);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-primary); cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
  pointer-events: auto;
}

.product-media-arrow i { font-size: 1rem; line-height: 1; }
.product-media-arrow:hover { background: var(--color-accent); color: #000; transform: translateY(-1px); box-shadow: 0 12px 24px rgba(244,180,0,0.6); }
.product-media-arrow:active { transform: translateY(0); box-shadow: 0 5px 12px rgba(15,23,42,0.4); }

.product-media-thumbs { display: flex; gap: 0.75rem; margin-top: 1.1rem; flex-wrap: wrap; }

.product-thumb {
  position: relative; border: 0; padding: 0.18rem; border-radius: 999px;
  background: transparent; cursor: pointer;
  box-shadow: 0 0 0 1px rgba(148,163,184,0.4);
  transition: box-shadow var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}

.product-thumb img { width: 64px; height: 64px; border-radius: 999px; object-fit: cover; display: block; }
.product-thumb:hover { transform: translateY(-1px); box-shadow: 0 0 0 2px rgba(28,44,107,0.6); }
.product-thumb.is-active { background: rgba(28,44,107,0.08); box-shadow: 0 0 0 2px rgba(244,180,0,0.9); }

.product-content { position: relative; padding-inline: 0.25rem; }

.product-tag { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0.9rem; border-radius: 999px; background: rgba(244,180,0,0.12); color: var(--color-primary); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.product-tag--secondary { background: rgba(28,44,107,0.08); color: var(--color-primary); }
.product-title       { font-family: var(--font-heading); font-size: clamp(1.6rem, 2.7vw, 1.9rem); margin: 0.9rem 0 0.55rem; color: var(--color-primary); }
.product-short-desc  { font-size: 0.98rem; color: var(--color-text-muted); margin-bottom: 1.4rem; }

.product-spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.35rem 2.1rem; margin-bottom: 1.8rem; }
.product-spec-heading { font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--color-primary); margin-bottom: 0.6rem; }
.product-spec-list { list-style: none; margin: 0; padding: 0; font-size: 0.9rem; color: var(--color-text); }
.product-spec-list li { position: relative; padding-left: 1.25rem; margin-bottom: 0.35rem; }
.product-spec-list li::before { content: ''; position: absolute; left: 0; top: 0.45rem; width: 6px; height: 6px; border-radius: 999px; background: linear-gradient(135deg, var(--color-accent), var(--color-accent-orange)); }

.product-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.product-btn { display: inline-flex; align-items: center; gap: 0.45rem; border-radius: 999px; padding: 0.7rem 1.4rem; font-weight: 600; font-size: 0.95rem; border: 0; box-shadow: none; }
.product-btn-primary { background: linear-gradient(135deg, var(--color-accent), var(--color-accent-orange)); color: #000; box-shadow: 0 16px 35px rgba(244,180,0,0.5); }
.product-btn-primary:hover { color: #000; transform: translateY(-1px); box-shadow: 0 20px 40px rgba(244,180,0,0.6); }
.product-btn-ghost { background: rgba(255,255,255,0.2); border: 1px solid rgba(15,23,42,0.12); color: var(--color-primary); backdrop-filter: blur(10px); }
.product-btn-ghost:hover { background: rgba(255,255,255,0.6); border-color: rgba(15,23,42,0.24); }
.product-btn-icon { font-size: 1rem; display: inline-flex; align-items: center; }

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-main-image { transition: none; }
}


/* ============================================================
   20. TEAM SECTIONS
============================================================= */

/* --- Team v1 --- */
.team-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }

.team-label { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.875rem; font-weight: 600; color: #58891e; margin-bottom: 0.5rem; }
.team-label-icon { width: 20px; height: auto; }
.team-heading { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 800; color: #1a1a1a; line-height: 1.2; margin-bottom: 1rem; font-family: var(--font-heading); }
.team-desc { font-size: 0.9375rem; color: var(--color-text); line-height: 1.6; margin-bottom: 1.5rem; max-width: 90%; }

.team-nav  { display: flex; gap: 0.875rem; align-items: center; }

.team-arrow {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid #1C2C6B; background: #fff; color: #1C2C6B;
  font-size: 1.35rem; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(14,107,148,0.15);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-arrow i { display: block; line-height: 1; }
.team-arrow:hover { background: #1C2C6B; color: #fff; border-color: #1C2C6B; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,107,148,0.3); }
.team-arrow:active { transform: translateY(0); box-shadow: 0 4px 14px rgba(14,107,148,0.2); }
.team-arrow:focus-visible { outline: 2px solid #58891e; outline-offset: 2px; }

.team-slider-wrap  { overflow: hidden; position: relative; width: 100%; }
.team-slider-track { display: flex; gap: 1.25rem; width: 133.333%; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.team-card         { flex: 0 0 calc(25% - 0.94rem); min-width: 0; }

.team-card-img-wrap { position: relative; width: 200px; height: 200px; margin: 0 auto 1rem; }

.team-card-image-container {
  position: relative; width: 100%; height: 100%;
  border-radius: 50%; overflow: hidden;
  padding: 4px; background: #e5e5e5;
  transition: background 0.4s cubic-bezier(0.4,0,0.2,1);
}

.team-card-img-wrap:hover .team-card-image-container { background: linear-gradient(135deg, #58891e 0%, #1C2C6B 100%); }
.team-card-image-container img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 50%; }

.team-card-social-overlay {
  position: absolute; left: -12px; top: 50%;
  transform: translateY(-50%) translateX(0) scale(0);
  transform-origin: left center;
  background: rgba(255,255,255,0.95);
  border-radius: 20px; padding: 5px 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,0.1); white-space: nowrap;
}

.team-card-img-wrap:hover .team-card-social-overlay { opacity: 1; transform: translateY(-50%) scale(1); pointer-events: auto; }

.team-card-share-icon {
  position: absolute; left: -12px; top: 50%;
  transform: translateY(-50%) scale(1);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 3; box-shadow: 0 4px 12px rgba(220,178,38,0.3);
}

.team-card-img-wrap:hover .team-card-share-icon { transform: translateY(-50%) scale(0); opacity: 0; }

.team-social-row { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

.team-social {
  width: 32px; height: 32px; border-radius: 50%;
  background: transparent; color: var(--color-primary); font-size: 17px;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.3s cubic-bezier(0.4,0,0.2,1), color 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.team-social:hover { background: var(--color-primary); color: #fff; }
.team-role { font-size: 0.875rem; color: #666666; margin: 0.25rem 0 0; font-weight: 400; text-align: center; }
.team-name { font-size: 1.125rem; font-weight: 700; color: #1a1a1a; margin: 0 0 0.25rem; text-align: center; }

/* --- Team v2 (Swiper) --- */
.t2-section { padding: 100px 20px; }

.t2-label { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 14px; color: #58891e; margin-bottom: 10px; }
.t2-label-icon { width: 50px; height: auto; vertical-align: middle; }
.t2-heading { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 600; margin-bottom: 15px; color: #1a1a1a; line-height: 1.2; }
.t2-desc { color: #666; line-height: 1.7; margin-bottom: 30px; }

.t2-nav   { display: flex; gap: 0.875rem; align-items: center; }

.t2-arrow {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid #1C2C6B; background: #fff; color: #1C2C6B; font-size: 1.35rem; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(13,110,253,0.2);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.t2-arrow:hover { background: #58891e; color: #fff; border-color: #58891e; transform: translateY(-2px); }

.t2-swiper { overflow: hidden; padding: 15px; }
.t2-swiper .swiper-slide { height: auto; display: flex; justify-content: center; align-items: flex-start; }

.t2-card { text-align: center; position: relative; width: 100%; max-width: 260px; margin: 0 auto; }
.t2-card-img-wrap { position: relative; display: inline-block; }

.t2-card-img-wrap::after {
  content: "";
  position: absolute; top: -6px; left: -6px;
  width: calc(100% + 12px); height: calc(100% + 12px);
  border-radius: 50%; border: 3px solid transparent;
  transition: 0.4s ease; pointer-events: none;
}

.t2-card:hover .t2-card-img-wrap::after { border-color: #58891e; animation: t2-pulseRing 1.6s infinite; }

.t2-card-image-container {
  width: 220px; height: 220px; border-radius: 50%; overflow: hidden; position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08); transition: 0.4s ease;
}

.t2-card-image-container img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }
.t2-card:hover .t2-card-image-container img { transform: scale(1.08); }

@keyframes t2-pulseRing {
  0%,100% { transform: scale(1); opacity: 1; }
  70%      { transform: scale(1.08); opacity: 0.4; }
}

.t2-card-social-overlay {
  position: absolute; inset: 0;
  background: rgb(36 36 36 / 61%); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.7); transition: 0.4s ease;
  backdrop-filter: blur(5px);
}

.t2-card:hover .t2-card-social-overlay { opacity: 1; transform: scale(1); }

.t2-social-row { display: flex; gap: 12px; }

.t2-social {
  width: 42px; height: 42px; border-radius: 50%;
  background: #f0f0f0; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #333; text-decoration: none; transition: 0.3s ease;
}

.t2-social:hover { background: #58891e; color: #fff; transform: translateY(-4px); }

.t2-card-share-icon {
  position: absolute; top: 15px; right: 15px;
  width: 48px; height: 48px; border-radius: 50%;
  background: #1C2C6B; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: 0.4s ease; box-shadow: 0 10px 25px rgba(13,110,253,0.3);
}

.t2-card:hover .t2-card-share-icon { transform: rotate(360deg) scale(1.1); background: #58891e; box-shadow: 0 10px 25px rgba(214,163,0,0.35); }

.t2-name { margin-top: 18px; font-size: 18px; font-weight: 600; color: #1a1a1a; margin-bottom: 0.25rem; }
.t2-role { font-size: 14px; color: #888; margin: 0; }

.t2-nav-bottom { display: flex; justify-content: center; gap: 14px; margin-top: 28px; }

.t2-arrow-bottom {
  width: 52px; height: 52px; border-radius: 14px;
  background: #58891e; color: #1a1a1a; border: none;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.35rem; cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(244,180,0,0.3);
}

.t2-arrow-bottom i { color: inherit; }
.t2-arrow-bottom:hover { background: #58891e; color: #1a1a1a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,180,0,0.4); }
.t2-arrow-bottom:active { transform: translateY(0); }


/* ============================================================
   21. FOOTER
============================================================= */
.site-footer {
  display: block;
  width: 100%;
  background: var(--color-primary);
  color: rgba(255,255,255,0.85);
  /* FIX: was padding-top:0 with no margin reset — preceding section margin bled through */
  padding-top:0;
  margin-top:0;
}

.footer-brand { display: inline-block; }
.footer-logo  { display: block; max-height: 78px; width: auto; height: auto; }
.footer-brand:hover .footer-logo { opacity: 0.9; }

.footer-desc { font-size: 0.9375rem; line-height: 1.6; color: rgba(255,255,255,1); max-width: 100%; margin-bottom: 5px; }

.footer-social-top { display: flex; gap: 0.5rem; margin-top: 1rem; }

.footer-social-top .social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: var(--color-white);
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 600;
  transition: background var(--transition-smooth), transform var(--transition-smooth);
}

.footer-social-top .social-link:hover { background: var(--color-accent); color: var(--color-primary); transform: translateY(-2px); }

.footer-heading { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1rem; }
.text-body-yellow { color: var(--color-accent); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.9375rem; transition: color var(--transition-fast), padding-left var(--transition-fast); }
.footer-links a:hover { color: var(--color-white); padding-left: 4px; }

.footer-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.footer-gallery a { display: block; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; transition: transform var(--transition-fast); }
.footer-gallery a:hover { transform: scale(1.05); }
.footer-gallery img { width: 100%; height: 100%; object-fit: cover; }

.footer-bottom { padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.15); text-align: center; }
.footer-bottom .small { color: rgba(255,255,255,0.65); }


/* ============================================================
   22. REVEAL / FADE-IN UTILITIES
============================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   23. MEDIA QUERIES — CONSOLIDATED
   Breakpoints (consistent):
     xs  < 576px
     sm  576 – 767.98px
     md  768 – 991.98px
     lg  992 – 1199.98px
============================================================= */

/* ---- max-width: 1199.98px ---- */
@media (max-width: 1199.98px) {
  .offering-title { font-size: 22px; }
}

/* ---- max-width: 991.98px ---- */
@media (max-width: 991.98px) {
  .site-header-stadium { top: 40px; width: calc(100% - 1rem); border-radius: var(--radius-lg); }
  .navbar-collapse { padding: 1rem 0; }
  .hero-overlap-img { width: 140px; height: 140px; }

  .offering-process { flex-direction: column; align-items: center; gap: 2rem; }
  .offering-step { max-width: 280px; }
  .offering-step-connector { flex: none; width: 2px; height: 32px; margin: 0; }
  .offering-step-connector .offering-connector-svg { display: none; }
  .offering-step-connector::before {
    content: "";
    position: absolute; left: 50%; top: 0;
    width: 2px; height: 100%;
    border-left: 2px dotted #58891e;
    transform: translateX(-50%);
  }

  .product-hero { padding-top: 6.25rem; }
  .product-hero-inner { padding-top: 2.25rem; }
  .product-card { padding: 1.7rem 1.35rem; }
  .product-spec-grid { grid-template-columns: 1fr; }

  .team-slider-track { width: 200%; }
  .team-card { flex: 0 0 calc(50% - 0.625rem); }

  .feature-cards-section { padding: 70px 16px; }
  .feature-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 25px; row-gap: 40px; }

  .about-content::before { width: 100%; max-width: none; opacity: 0.4; }
  .about-content__left { padding-right: 0; text-align: center; }
  .about-content__feature { text-align: left; }
  .about-content__right { justify-content: center; }

  .why-choose__center { margin-bottom: 0.5rem; order: 1; }
  .why-choose__graphic { min-height: 360px; padding: 1rem; }
  .why-choose__col--left { order: 1; align-items: center; }
  .why-choose__col--left .why-choose__item { align-items: center; }
  .why-choose__col--right { order: 2; align-items: center; text-align: center; }
  .why-choose__col--right .why-choose__item { align-items: center; }
  .why-choose__item { max-width: 100%; padding: 1rem 1.25rem; }

  .counter-container { grid-template-columns: repeat(2, auto); }

  .content-card__image { height: 463px; width: 450px; }

  .hero-about-cta { display: flex; justify-content: center; gap: 3.2rem; }
  .hero-about-stats-row { justify-content: center; margin-left: 8px; }
}

/* ---- max-width: 767.98px ---- */
@media (max-width: 767.98px) {
  body { padding-top: 70px; }

  .top-bar-fixed { padding: 0.4rem 0; font-size: 0.75rem; }
  .top-bar-left  { justify-content: center; width: 100%; text-align: center; }
  .top-bar-right { width: 100%; text-align: center; margin-top: 4px; }
  .top-bar-social-octagon { width: 28px; height: 28px; }
  .site-header { margin-top: 0; }

  .site-header-stadium { margin-top: 32px; border-radius: 0; width: 100%; }

  .contact-btn { font-size: 0.875rem; padding: 0.45rem 1rem 0.45rem 0.35rem; }

  .hero-cta { flex-direction: column; align-items: flex-start; }
  .btn-cta  { width: 100%; max-width: 280px; justify-content: center; }

  .offering-section .section-title { font-size: 32px; }
  .offering-section .section-desc  { margin: 10px auto 0; }

  .page-banner { padding: 4rem 1.3rem; }

  .feature-cards-section { padding: 60px 16px 80px; }
  .feature-cards-grid { grid-template-columns: minmax(0, 1fr); gap: 60px; }
  .feature-card-panel { left: 20px; right: 20px; bottom: -42px; }

  .product-card { margin-bottom: 2rem; }
  .product-actions { flex-direction: column; align-items: stretch; }
  .product-actions .product-btn { justify-content: center; width: 100%; }
  .product-media-arrow { width: 30px; height: 30px; }
  .product-breadcrumb { padding-inline: 0.9rem; max-width: 100%; }
  .product-breadcrumb-list { font-size: 0.84rem; }

  .featured-slider-section { padding: 0; }
  .featured-slide-active { width: 100%; }
  .featured-slide:not(.featured-slide-active) { display: none; }
  .featured-slide-image-wrapper { max-width: 280px; margin-bottom: 1.5rem; }
  .featured-slide-image { max-width: 75%; }

  .content-card__image,
  .content-card__image--right { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

  .t2-heading { font-size: 30px; }
  .t2-card-image-container { width: 180px; height: 180px; }
  .t2-card-share-icon { width: 42px; height: 42px; top: 10px; right: 10px; font-size: 16px; }
  .t2-social { width: 36px; height: 36px; font-size: 1rem; }
}

/* ---- max-width: 767.98px + tablet range for slider --- */
@media (min-width: 768px) and (max-width: 991.98px) {
  .featured-slide { width: 15%; }
  .featured-slide-active { width: 70%; }
  .featured-slide-content { padding: 1.5rem 0; }
  .featured-slide-text { text-align: center; }
  .featured-slide:not(.featured-slide-active) .featured-slide-image-wrapper { max-width: 160px; }
  .featured-slide:not(.featured-slide-active) .featured-slide-headline { font-size: clamp(1.1rem, 2vw, 1.3rem); }
  .featured-slide-image { max-width: 65%; }
}

/* ---- max-width: 575.98px (xs) ---- */
@media (max-width: 575.98px) {
  .hero-about-feature-card { padding: 1rem 0.75rem; }
  .hero-about-feature-icon { width: 56px; height: 56px; }
  .hero-about-feature-title { font-size: 0.8125rem; }
  .hero-about-stats-row { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .hero-overlay-circle { width: 90px; height: 90px; right: 0.75rem; padding: 0.5rem; }
  .hero-overlay-label  { font-size: 0.6rem; }
  .hero-overlay-number { font-size: 1.35rem; }
  .hero-overlay-rect   { bottom: 0.75rem; right: 0.75rem; padding: 0.6rem 0.9rem; }
  .hero-overlay-big    { font-size: 1.35rem; }
  .hero-about-stats    { grid-template-columns: 1fr; }

  .client-flag-card { width: 120px; padding: 1.25rem 1rem; }
  .client-flag-card:hover { transform: translateY(-8px) scale(1.03); }
  .client-flag-icon { width: 64px; height: 43px; }
  .client-flag-card:hover .client-flag-icon { transform: scale(1.1) rotate(1.5deg); }
  .client-flag-icon img { width: 64px; height: 43px; object-fit: cover; }
  .clients-marquee-track { gap: 1rem; animation-duration: 35s; }
  .clients-marquee-wrap::before,
  .clients-marquee-wrap::after { width: 40px; }

  .team-slider-track { width: 400%; }
  .team-card { flex: 0 0 calc(25% - 0.94rem); }
  .team-card-img-wrap { width: 160px; height: 160px; }
  .team-card-share-icon { width: 36px; height: 36px; font-size: 1rem; left: -10px; }
  .team-desc { max-width: 100%; }
}

/* ---- offering grid breakpoints ---- */
@media (min-width: 768px) and (max-width: 849.98px) {
  .offering-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}

@media (min-width: 850px) {
  .offering-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }
}

@media (min-width: 850px) and (max-width: 1023.98px) {
  .offering-grid  { gap: 20px; }
  .offering-title { font-size: 18px !important; }
  .offering-desc  { font-size: 14px; line-height: 1.5; }
  .card-content   { padding: 39px 12px 10px; }
}