/* ==========================================================================
   ROW FRUITS - DESIGN SYSTEM & STYLESHEET
   Brand Theme: Orange (#FF6B00 / #F95700) + White (#FFFFFF)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & TOKENS
   -------------------------------------------------------------------------- */
:root {
  --primary-orange: #FF6B00;
  --primary-orange-dark: #E05300;
  --primary-orange-light: #FF8833;
  --orange-accent-glow: rgba(255, 107, 0, 0.15);
  --orange-accent-soft: rgba(255, 107, 0, 0.08);
  --orange-gradient: linear-gradient(135deg, #FF6B00 0%, #F94A00 100%);
  --orange-gradient-soft: linear-gradient(135deg, #FFF3EB 0%, #FFE5D4 100%);
  
  --dark-heading: #121519;
  --dark-body: #333A42;
  --muted-text: #667085;
  --light-bg: #F8F9FB;
  --card-bg: #FFFFFF;
  --border-light: #EAECF0;
  --border-orange: rgba(255, 107, 0, 0.3);
  
  --font-heading: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.08);
  --shadow-orange: 0 10px 25px rgba(255, 107, 0, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-body);
  background-color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--dark-body);
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   3. PRELOADER (2 Seconds Duration, Orange Background, White Logo)
   -------------------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--orange-gradient);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-logo {
  width: 220px;
  max-width: 80vw;
  height: auto;
  animation: preloaderPulse 1.8s ease-in-out infinite alternate;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes preloaderPulse {
  0% { transform: scale(0.95); opacity: 0.85; }
  100% { transform: scale(1.05); opacity: 1; }
}

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

/* --------------------------------------------------------------------------
   4. NAVIGATION HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 105px;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--dark-heading);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.25rem;
  font-weight: 500;
  color: var(--dark-heading);
}

.dropdown-item:hover {
  background: var(--orange-accent-soft);
  color: var(--primary-orange);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--dark-heading);
  font-size: 1.5rem;
}

/* Mobile Drawer Overlay */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #FFFFFF;
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-close {
  background: var(--light-bg);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-heading);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-heading);
}

.mobile-nav-link.active, .mobile-nav-link:hover {
  color: var(--primary-orange);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   5. BUTTONS & BADGES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange-gradient);
  color: #FFFFFF;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 107, 0, 0.35);
  background: linear-gradient(135deg, #FF7B1A 0%, #FF5500 100%);
}

.btn-outline-orange {
  background: transparent;
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
}

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

.btn-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon-circle {
  transform: translateX(4px);
}

/* Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-orange);
  background: var(--orange-accent-soft);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.badge-yellow-tag {
  background: #FFD028;
  color: #121519;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 85vh;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)), url('../images/hero_orchard.png') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  color: #FFFFFF;
  overflow: hidden;
}

.hero-content {
  max-width: 750px;
}

.hero-title {
  color: #FFFFFF;
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-controls {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
}

.hero-arrows {
  display: flex;
  gap: 0.5rem;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all var(--transition-fast);
}

.arrow-btn:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
}

/* --------------------------------------------------------------------------
   7. STATS & CORE FEATURES SECTION
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 6rem 0;
}

.section-padding-sm {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--muted-text);
  font-size: 1.1rem;
  max-width: 650px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 4rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark-heading);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted-text);
  font-size: 0.95rem;
  font-weight: 500;
}

.features-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-number-card {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: 1px solid transparent;
}

.feature-number-card:hover {
  transform: translateY(-5px);
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
  border-color: var(--border-orange);
}

.card-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
}

.feature-number-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.feature-number-card p {
  color: var(--muted-text);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   8. SPOTLIGHT & CARDS SECTION
   -------------------------------------------------------------------------- */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.spotlight-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.spotlight-image-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.spotlight-image-box:hover img {
  transform: scale(1.04);
}

.since-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--orange-gradient);
  color: #FFFFFF;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-orange);
}

.spotlight-content h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.spotlight-content p {
  color: var(--muted-text);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   9. GLOBAL PARTNER 3 CARDS
   -------------------------------------------------------------------------- */
.cards-trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.partner-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

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

.partner-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--orange-accent-soft);
  color: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.partner-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.partner-card p {
  color: var(--muted-text);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   10. PARTNER CTA BANNER CARD
   -------------------------------------------------------------------------- */
.cta-banner-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url('../images/cold_storage_warehouse.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 3rem;
  margin-top: 4rem;
}

.cta-floating-box {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
}

.cta-floating-box h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.cta-floating-box p {
  color: var(--muted-text);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   11. MARQUEE TICKER BAR
   -------------------------------------------------------------------------- */
.marquee-bar {
  background: var(--orange-gradient);
  color: #FFFFFF;
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-item::after {
  content: '★';
  margin-left: 2rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

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

/* --------------------------------------------------------------------------
   12. FRUIT SELECTION GRID & TABS
   -------------------------------------------------------------------------- */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-heading);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--primary-orange);
  color: #FFFFFF;
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-orange);
}

.fruit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.fruit-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  height: 320px;
}

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

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

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

.fruit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #FFFFFF;
}

.fruit-origin-badge {
  align-self: flex-start;
  background: var(--primary-orange);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.fruit-card h4 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.fruit-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   13. VENTURES / BRAND CARDS
   -------------------------------------------------------------------------- */
.ventures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.venture-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.venture-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1.5rem;
}

.venture-card p {
  color: var(--muted-text);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   14. WORLD MAP & COUNTRY GRID
   -------------------------------------------------------------------------- */
.world-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.map-visual {
  position: relative;
  background: var(--orange-accent-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 107, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-svg {
  width: 100%;
  height: auto;
  opacity: 0.85;
}

.country-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.country-pill {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-heading);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.country-pill:hover {
  background: var(--primary-orange);
  color: #FFFFFF;
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   15. BOTTOM WORLD FRUIT BANNER (All 3 Pages)
   -------------------------------------------------------------------------- */
.bottom-fruit-banner {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)), url('../images/fruit_banner.png') center/cover no-repeat;
  padding: 5rem 0;
  color: #FFFFFF;
}

.banner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.banner-content h2 {
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.banner-flags {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.flag-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.banner-sourced-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-left: 0.5rem;
}

/* --------------------------------------------------------------------------
   16. PAGE HEADER BANNER (Company & Contact Pages)
   -------------------------------------------------------------------------- */
.page-banner {
  background: var(--orange-gradient);
  color: #FFFFFF;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.page-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-banner h1 {
  color: #FFFFFF;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-banner-graphic {
  width: 140px;
  height: auto;
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   17. COMPANY PAGE SPECIFIC STYLES
   -------------------------------------------------------------------------- */
.orange-full-section {
  background: var(--orange-gradient);
  color: #FFFFFF;
  padding: 6rem 0;
}

.orange-full-section h2, .orange-full-section h3 {
  color: #FFFFFF;
}

.orange-full-section p {
  color: rgba(255, 255, 255, 0.9);
}

.checklist-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.checklist-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.team-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-fast);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-orange);
}

.team-img-wrap {
  height: 280px;
  overflow: hidden;
}

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

.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
}

.team-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-info p {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   18. CONTACT PAGE SPECIFIC STYLES
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.contact-info-card:hover {
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.contact-info-card p {
  color: var(--muted-text);
  font-size: 0.95rem;
}

.contact-form-container {
  background: var(--orange-gradient);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: #FFFFFF;
  box-shadow: var(--shadow-orange);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #FFFFFF;
  color: var(--dark-heading);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.phone-input-group {
  display: flex;
  gap: 0.5rem;
}

.country-select {
  width: 110px;
  flex-shrink: 0;
}

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

.btn-submit-yellow {
  background: #FFD028;
  color: #121519;
  font-weight: 700;
  padding: 1rem 2.2rem;
  font-size: 1rem;
  width: 100%;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-fast);
}

.btn-submit-yellow:hover {
  background: #FFE066;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------------------------------
   19. FOOTER (All 3 Pages)
   -------------------------------------------------------------------------- */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  height: 85px;
  width: auto;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--dark-heading);
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-heading);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--primary-orange);
  color: #FFFFFF;
  border-color: var(--primary-orange);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark-heading);
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-text);
  font-size: 0.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .features-trio, .cards-trio-grid { grid-template-columns: 1fr; }
  .spotlight-grid, .world-map-grid, .contact-layout, .ventures-grid { grid-template-columns: 1fr; }
  .fruit-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-controls { position: static; margin-top: 2rem; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.75rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .fruit-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .banner-flex { flex-direction: column; align-items: flex-start; }
  .footer-top, .footer-nav, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-form-container { padding: 1.75rem; }
}
