/* ==========================================================================
   Fresh Import Ltd - Modern Design System & Stylesheet
   Built with Bootstrap 5.3 & Contemporary Web Design Aesthetics
   ========================================================================== */

:root {
  --font-primary: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Color Palette */
  --color-primary: #0d6838;
  --color-primary-dark: #084826;
  --color-primary-light: #16a34a;
  --color-primary-subtle: #ecfdf5;
  
  --color-accent: #f59e0b;
  --color-accent-dark: #d97706;
  --color-accent-light: #fef3c7;

  --color-dark: #0f172a;
  --color-dark-surface: #1e293b;
  --color-dark-card: #182234;
  
  --color-text-main: #334155;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-border: #e2e8f0;
  --color-bg-light: #f8fafc;
  --color-white: #ffffff;

  /* Shadows */
  --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.05);
  --shadow-glow: 0 0 30px rgba(22, 163, 74, 0.25);
  --shadow-accent-glow: 0 0 25px rgba(245, 158, 11, 0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display-heading {
  font-family: var(--font-display);
  color: var(--color-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

/* ==========================================================================
   Utility Classes & Badges
   ========================================================================== */
.badge-farm {
  background-color: rgba(22, 163, 74, 0.12);
  color: #15803d;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.825rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.badge-farm-gold {
  background-color: rgba(245, 158, 11, 0.12);
  color: #b45309;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.825rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-light);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Glassmorphism */
.glass-panel {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-md);
}

.glass-panel-dark {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #15803d 0%, var(--color-primary-dark) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.45);
}

.btn-accent-custom {
  background: linear-gradient(135deg, #fbbf24 0%, var(--color-accent) 100%);
  color: #78350f;
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-accent-custom:hover {
  background: linear-gradient(135deg, #f59e0b 0%, var(--color-accent-dark) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.btn-outline-custom {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  transition: all var(--transition-normal);
}

/* Top bar */
.top-notice-bar {
  background: #0b1120;
  color: var(--color-text-light);
  font-size: 0.825rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-notice-bar a {
  color: #cbd5e1;
}

.top-notice-bar a:hover {
  color: var(--color-accent);
}

/* Main Navbar */
.navbar-custom {
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 0;
  transition: all var(--transition-normal);
}

.site-header.scrolled .navbar-custom {
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 0.55rem 0;
}

/* Floating Brand Logo */
.navbar-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 90px;
  height: 44px;
  padding: 0;
  margin: 0;
  z-index: 1050;
}

.navbar-brand-img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-36%);
  max-height: 92px;
  width: 92px;
  height: auto;
  filter: drop-shadow(0 0 1.5px rgba(255, 255, 255, 0.9)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.55)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  transition: transform var(--transition-normal), max-height var(--transition-normal), filter var(--transition-normal);
  pointer-events: auto;
}

.navbar-brand:hover .navbar-brand-img {
  transform: translateY(-40%) scale(1.06);
  filter: drop-shadow(0 0 2.5px rgba(255, 255, 255, 1)) drop-shadow(0 12px 28px rgba(0, 0, 0, 0.65)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}

.site-header.scrolled .navbar-brand {
  width: 74px;
  height: 40px;
}

.site-header.scrolled .navbar-brand-img {
  max-height: 74px;
  width: 74px;
  transform: translateY(-38%);
  filter: drop-shadow(0 0 1.2px rgba(255, 255, 255, 0.85)) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
}

.site-header.scrolled .navbar-brand:hover .navbar-brand-img {
  transform: translateY(-42%) scale(1.05);
}

.navbar-custom .nav-link {
  color: #e2e8f0;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem !important;
  border-radius: 8px;
  transition: all var(--transition-fast);
  position: relative;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: #34d399;
}

.navbar-custom .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--color-primary-light);
  border-radius: 2px;
}

.nav-phone-badge {
  background: rgba(22, 163, 74, 0.18);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 0.95rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all var(--transition-fast);
}

.nav-phone-badge:hover {
  background: #16a34a;
  color: #fff;
  transform: translateY(-1px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-dark);
  overflow: hidden;
  padding-top: 100px;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-carousel .carousel-item {
  height: 100vh;
}

.hero-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  animation: kenburns 20s infinite alternate ease-in-out;
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 17, 32, 0.88) 0%,
    rgba(15, 23, 42, 0.72) 50%,
    rgba(13, 104, 56, 0.6) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  color: #ffffff;
  padding: 4rem 0;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #34d399;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: #fff;
}

.hero-title .text-gradient {
  background: linear-gradient(120deg, #4ade80, #facc15);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #e2e8f0;
  max-width: 620px;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-stats-row {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 1.4rem;
  border-radius: 16px;
  transition: transform var(--transition-fast);
}

.hero-stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin: 0;
  font-weight: 500;
}

/* ==========================================================================
   Featured Products (Direct Imports Showcase)
   ========================================================================== */
.featured-produce-section {
  position: relative;
  margin-top: -60px;
  z-index: 10;
}

.produce-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-bounce);
  height: 290px;
}

.produce-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px -10px rgba(0, 0, 0, 0.25);
}

.produce-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.produce-card:hover .produce-card-bg {
  transform: scale(1.08);
}

.produce-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.4) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  color: #fff;
}

.produce-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.produce-card-desc {
  font-size: 0.875rem;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Services & Sourcing Section
   ========================================================================== */
.service-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(22, 163, 74, 0.3);
}

.service-box:hover::after {
  opacity: 1;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.12) 0%, rgba(22, 163, 74, 0.03) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-primary-light);
  margin-bottom: 1.4rem;
  border: 1px solid rgba(22, 163, 74, 0.15);
  transition: all var(--transition-fast);
}

.service-box:hover .service-icon-wrap {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.05);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.925rem;
  color: var(--color-text-muted);
  flex-grow: 1;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Farm Procurement Video Showcase
   ========================================================================== */
.video-showcase-section {
  background: #0f172a;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.video-showcase-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.main-video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.main-video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

.video-playlist-card {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.25rem;
  height: 100%;
}

.video-playlist-scroll {
  max-height: 450px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.video-playlist-scroll::-webkit-scrollbar {
  width: 6px;
}
.video-playlist-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.video-item-btn {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #cbd5e1;
  transition: all var(--transition-fast);
  margin-bottom: 0.4rem;
  cursor: pointer;
}

.video-item-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.video-item-btn.active {
  background: rgba(22, 163, 74, 0.25);
  border-color: rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

.video-thumb-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.video-item-btn.active .video-thumb-icon {
  background: #16a34a;
  color: #fff;
}

/* ==========================================================================
   About Fresh Import Ltd
   ========================================================================== */
.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.04);
}

.about-float-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(14px);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  max-width: 250px;
}

.about-feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.12);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Counters Section
   ========================================================================== */
.counter-section {
  background: linear-gradient(135deg, #0d6838 0%, #064e26 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.counter-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition-normal);
}

.counter-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

.counter-icon {
  font-size: 2.5rem;
  color: #facc15;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.counter-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.counter-label {
  font-size: 1rem;
  font-weight: 500;
  color: #d1fae5;
  text-transform: capitalize;
}

/* ==========================================================================
   Filterable Produce Gallery
   ========================================================================== */
.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-tab-btn {
  background: #ffffff;
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab-btn:hover,
.filter-tab-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: all var(--transition-normal);
}

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

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

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

.gallery-card:hover .gallery-hover-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  backdrop-filter: blur(8px);
}

/* Lightbox Modal */
.lightbox-modal .modal-content {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.lightbox-img {
  max-height: 75vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 12px;
}

/* ==========================================================================
   Market Stall & Wholesale Partners
   ========================================================================== */
.stall-showcase-box {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.stall-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.partner-logo-item {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.partner-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.partner-logo-item img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(80%);
  opacity: 0.85;
  transition: all var(--transition-fast);
}

.partner-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   Contact & Location
   ========================================================================== */
.contact-info-card {
  background: #0f172a;
  color: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.contact-detail-row {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.form-control-custom {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--color-dark);
  transition: all var(--transition-fast);
}

.form-control-custom:focus {
  background: #ffffff;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
  outline: none;
}

#formSuccessAlert,
#formErrorAlert {
  animation: fadeInAlert 0.35s ease-out;
  border-radius: 12px;
  font-size: 0.95rem;
}

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

/* ==========================================================================
   Branch Locations & Depot Tabs
   ========================================================================== */
.branch-locations-tabs-container {
  position: relative;
}

.branch-nav-tabs {
  border-bottom: none;
}

.branch-tab-pill {
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-fast);
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.branch-tab-pill:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  transform: translateY(-2px);
  color: var(--color-dark);
}

.branch-tab-pill.active {
  background: linear-gradient(135deg, #0d6838 0%, #15803d 100%) !important;
  border-color: #0d6838 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(13, 104, 56, 0.28) !important;
}

.branch-pill-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #0d6838;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.branch-tab-pill.active .branch-pill-num {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.branch-pill-text {
  min-width: 0;
}

.branch-pill-name {
  font-size: 0.925rem;
  line-height: 1.25;
}

.branch-pill-sub {
  font-size: 0.75rem;
  opacity: 0.75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.branch-tab-pill.active .branch-pill-sub {
  opacity: 0.92;
  color: rgba(255, 255, 255, 0.9);
}

.branch-card-body {
  border: 1px solid var(--color-border);
  background: #ffffff;
  transition: all var(--transition-fast);
}

.branch-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .branch-nav-tabs {
    flex-direction: column;
  }
}

.map-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #090d16;
  color: #94a3b8;
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-title {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #94a3b8;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: #4ade80;
  transform: translateX(3px);
}

.footer-bottom-bar {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
}

/* ==========================================================================
   Floating Quick Action Badges
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1020;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-float {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-bounce);
}

.btn-float:hover {
  transform: scale(1.12);
  color: #fff;
}

.btn-float-whatsapp {
  background: #25d366;
}

.btn-float-phone {
  background: var(--color-primary-light);
}

.btn-float-top {
  background: #1e293b;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.btn-float-top.show {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 991.98px) {
  .site-header {
    background: rgba(15, 23, 42, 0.98);
  }
  .navbar-custom {
    padding: 0.6rem 0;
  }
  .navbar-brand {
    width: 78px;
    height: 40px;
  }
  .navbar-brand-img {
    max-height: 80px;
    width: 80px;
    transform: translateY(-38%);
  }
  .site-header.scrolled .navbar-brand {
    width: 66px;
    height: 36px;
  }
  .site-header.scrolled .navbar-brand-img {
    max-height: 64px;
    width: 64px;
    transform: translateY(-40%);
  }
  .hero-section {
    padding-top: 85px;
    min-height: auto;
  }
  .hero-carousel .carousel-item {
    height: 680px;
  }
  .featured-produce-section {
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    width: 68px;
    height: 38px;
  }
  .navbar-brand-img {
    max-height: 70px;
    width: 70px;
    transform: translateY(-38%);
  }
  .site-header.scrolled .navbar-brand {
    width: 56px;
    height: 34px;
  }
  .site-header.scrolled .navbar-brand-img {
    max-height: 56px;
    width: 56px;
    transform: translateY(-40%);
  }
  .hero-carousel .carousel-item {
    height: 620px;
  }
  .produce-card {
    height: 240px;
  }
  .hero-stat-card {
    padding: 0.8rem 1rem;
  }
  .counter-card {
    padding: 1.5rem 1rem;
  }
  .contact-info-card {
    padding: 1.5rem;
  }
}

@media (max-width: 380px) {
  .navbar-brand-img {
    max-height: 48px;
  }
  .site-header.scrolled .navbar-brand-img {
    max-height: 40px;
  }
}

/* Footer Brand Logo Enhancements */
.site-footer img[src*="logo_2.png"] {
  max-height: 68px !important;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
  transition: transform var(--transition-fast);
}

.site-footer img[src*="logo_2.png"]:hover {
  transform: scale(1.04);
}

@media (max-width: 575.98px) {
  .site-footer img[src*="logo_2.png"] {
    max-height: 56px !important;
  }
}

