/* ==========================================================================
   LUXACO - Exporter of Fresh Fruits & Vegetables
   Design System & Main Stylesheet
   ========================================================================== */

/* --- CSS Variables & Design System --- */
:root {
  --primary-dark: #0a2540;
  --primary-blue: #0d2b5c;
  --primary-accent: #2563eb;
  --primary-light: #3b82f6;
  --green-accent: #10b981;
  --green-dark: #059669;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-blue-tint: #f0f6ff;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(13, 43, 92, 0.08), 0 8px 10px -6px rgba(13, 43, 92, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(13, 43, 92, 0.15);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base & Reset --- */
*, *::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(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* --- Layout Utility --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2-cols { grid-template-columns: repeat(2, 1fr); }
.grid-3-cols { grid-template-columns: repeat(3, 1fr); }
.grid-4-cols { grid-template-columns: repeat(4, 1fr); }

.section {
  padding: 96px 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-accent);
  text-transform: uppercase;
  background-color: var(--bg-blue-tint);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 48px auto;
}

.text-center {
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-accent);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-white {
  background-color: #ffffff;
  color: var(--primary-blue);
}

.btn-white:hover {
  background-color: var(--bg-blue-tint);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-light {
  background-color: #ffffff;
  color: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  background-color: var(--bg-blue-tint);
  color: var(--primary-accent);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  width: 100%;
}

.btn-whatsapp:hover {
  background-color: #1eb956;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.3);
}

.btn-card {
  width: 100%;
  background-color: var(--bg-blue-tint);
  color: var(--primary-accent);
  padding: 10px 16px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

.btn-card:hover {
  background-color: var(--primary-accent);
  color: #ffffff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* --- Badges --- */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-citrus { background-color: #fef3c7; color: #d97706; }
.badge-berry { background-color: #fce7f3; color: #db2777; }
.badge-veg { background-color: #d1fae5; color: #059669; }
.badge-frozen { background-color: #e0f2fe; color: #0284c7; }
.badge-light { background-color: rgba(255,255,255,0.2); color: #ffffff; }

/* --- Top Announcement Bar --- */
.top-bar {
  background-color: var(--primary-dark);
  color: #94a3b8;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 24px;
}

.top-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-info i {
  color: var(--primary-accent);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.whatsapp-top-link {
  color: #25d366;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.whatsapp-top-link:hover {
  color: #ffffff;
}

.lang-selector span {
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-weight: 500;
  display: inline-block;
  user-select: none;
}

.lang-selector span:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.lang-selector span.active {
  color: #ffffff;
  background: var(--primary-accent);
  font-weight: 700;
}

/* --- Header & Navbar --- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-dark, #059669);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .brand-logo-img {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 1.2px;
}

.nav-menu ul {
  display: flex;
  gap: 32px;
}

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

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  background: url('assets/hero_bg.jpg') no-repeat center center / cover;
  padding: 90px 0 120px 0;
  display: flex;
  flex-direction: column;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.88) 0%, rgba(13, 43, 92, 0.72) 100%);
}

.hero-container {
  position: relative;
  z-index: 10;
  margin-bottom: 50px;
}

.hero-card {
  max-width: 760px;
  background: rgba(10, 37, 64, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.25);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.4);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Stats Ribbon Overlay */
.stats-ribbon-wrapper {
  position: relative;
  z-index: 20;
  margin-top: 0;
  margin-bottom: -110px;
}

.stats-ribbon {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-color);
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--bg-blue-tint);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.stat-info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.stat-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background-color: var(--border-color);
}

/* --- About Us Section --- */
.about-section {
  padding-top: 140px;
}

.about-grid {
  align-items: center;
  gap: 60px;
}

.about-image-wrapper {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-color);
}

.floating-badge i {
  font-size: 2.2rem;
  color: var(--green-accent);
}

.floating-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary-dark);
}

.floating-badge span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-content .section-title {
  text-align: left;
}

.about-content .section-description {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background-color: var(--bg-blue-tint);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Products Section --- */
.products-section {
  background-color: var(--bg-light);
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
}

.filter-btn.active {
  background-color: var(--primary-accent);
  color: #ffffff;
  border-color: var(--primary-accent);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.product-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.product-img-wrapper .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-details h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
  flex-grow: 1;
}

.product-specs {
  border-top: 1px dashed var(--border-color);
  padding-top: 12px;
  margin-bottom: 16px;
  font-size: 0.8rem;
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.product-specs li span {
  color: var(--text-muted);
}

/* --- Why Choose Us Section --- */
.why-grid {
  gap: 32px;
  margin-bottom: 48px;
}

.why-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-blue-tint);
  color: var(--primary-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

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

.why-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}

.why-banner-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.why-banner-text p {
  color: #cbd5e1;
  font-size: 1rem;
}

/* --- Export Process Section --- */
.process-section {
  background-color: var(--bg-blue-tint);
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition);
}

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

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.15);
  position: absolute;
  top: 20px;
  right: 24px;
}

.step-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

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

/* --- Catalogue Banner Section --- */
.catalogue-banner-section {
  padding: 60px 0;
}

.catalogue-banner-card {
  background: linear-gradient(135deg, var(--primary-accent), var(--primary-blue));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.catalogue-img-box img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transform: rotate(-3deg);
  transition: var(--transition);
}

.catalogue-banner-card:hover .catalogue-img-box img {
  transform: rotate(0deg) scale(1.04);
}

.catalogue-banner-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin: 16px 0;
}

.catalogue-banner-content p {
  font-size: 1.05rem;
  color: #e0f2fe;
  margin-bottom: 28px;
  max-width: 650px;
}

/* --- Contact Us Section --- */
.contact-grid {
  gap: 40px;
}

.contact-info-card {
  background-color: var(--primary-dark);
  color: #ffffff;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-info-card > p {
  color: #94a3b8;
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--green-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.contact-detail-item p {
  font-size: 0.88rem;
  color: #cbd5e1;
}

.whatsapp-card-cta {
  margin-top: 36px;
}

.contact-form-card {
  background-color: #ffffff;
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--bg-light);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-accent);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-status {
  margin-top: 16px;
  font-weight: 600;
  text-align: center;
}

.form-status.success {
  color: var(--green-dark);
  background-color: #d1fae5;
  padding: 12px;
  border-radius: var(--radius-sm);
}

/* --- Footer --- */
.main-footer {
  background-color: #061727;
  color: #94a3b8;
  padding: 80px 0 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  margin-bottom: 60px;
}

.footer-logo .brand-name {
  color: #ffffff;
}

.brand-col p {
  margin: 16px 0 24px 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-accent);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.9rem;

}

.footer-col ul a:hover {
  color: var(--primary-accent);
  padding-left: 4px;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.cert-pill {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* --- Modal Popup --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 37, 64, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background-color: #ffffff;
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.95);
  transition: var(--transition);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--primary-accent);
  color: #ffffff;
}

.modal-header {
  padding: 24px 32px 16px 32px;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-top: 6px;
}

.modal-body {
  padding: 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  max-height: 75vh;
  overflow-y: auto;
}

.modal-img-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.modal-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.specs-table {
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.88rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row strong {
  color: var(--primary-dark);
}

.spec-row span {
  color: var(--text-dark);
  font-weight: 600;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.8rem; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-4-cols { grid-template-columns: repeat(2, 1fr); }
  .process-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .catalogue-banner-card { grid-template-columns: 1fr; text-align: center; }
  .catalogue-img-box { margin: 0 auto; width: 220px; }
  .catalogue-banner-content p { margin: 0 auto 28px auto; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .navbar { height: 70px; }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #ffffff;
    padding: 32px;
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-btn {
    display: none;
  }

  .hero-card { padding: 32px 24px; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }

  .stats-ribbon {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .stat-divider { display: none; }

  .grid-2-cols, .grid-3-cols, .products-grid {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    position: static;
    margin-top: 16px;
  }

  .why-banner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .process-steps-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   Real Produce & Packing Facility Gallery Section
   ========================================================================== */
.gallery-section {
  background: linear-gradient(180deg, #f8fafc 0%, #edf4fc 100%);
  padding: 96px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.gallery-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid #e2e8f0;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px -10px rgba(15, 23, 42, 0.2);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-color: #0f172a;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.gallery-tag {
  align-self: flex-start;
  background: rgba(16, 185, 129, 0.95);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.gallery-tag-video {
  background: rgba(217, 119, 6, 0.95);
}

.gallery-info {
  color: #ffffff;
}

.gallery-info h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}

.gallery-info p {
  font-size: 0.88rem;
  color: #cbd5e1;
}

.gallery-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  z-index: 5;
}

.gallery-card:hover .gallery-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: #10b981;
  color: #ffffff;
}

/* --- Video & Photo Lightbox Modals --- */
.video-modal-card,
.photo-modal-card {
  max-width: 820px;
  width: 90%;
}

.video-modal-body,
.photo-modal-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-container-box {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  background: var(--bg-blue-tint);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin: 16px 0;
  font-size: 0.9rem;
}

.vspec-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.photo-lightbox-box {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #0f172a;
}


/* ==========================================================================
   NEW FEATURES: Language Selector, Seasonal Calendar & Reefer Estimator
   ========================================================================== */

/* --- Language Selector Enhancements --- */
.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.lang-btn {
  cursor: pointer;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lang-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

.lang-btn.active {
  color: #ffffff;
  background: #2563eb;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4);
}

/* --- RTL Support --- */
body.rtl-mode {
  direction: rtl;
  text-align: right;
}

body.rtl-mode .top-info span {
  margin-left: 15px;
  margin-right: 0;
}

body.rtl-mode .top-info i {
  margin-left: 5px;
  margin-right: 0;
}

body.rtl-mode .btn i {
  margin-right: 6px;
  margin-left: 0;
}

/* --- Seasonality Section --- */
.seasonality-section {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.seasonality-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-peak { color: #10b981; font-size: 1.2rem; }
.badge-med { color: #f59e0b; font-size: 1.2rem; }
.badge-off { color: #94a3b8; font-size: 1.2rem; }

.seasonality-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.seasonality-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 750px;
}

.seasonality-table th {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 14px 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.seasonality-table th:first-child {
  text-align: left;
  padding-left: 20px;
}

.seasonality-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  font-size: 1rem;
}

.seasonality-table td:first-child {
  text-align: left;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.seasonality-table tr:hover {
  background-color: #f1f5f9;
}

.seasonality-table td.peak {
  color: #10b981;
  font-weight: bold;
  background: #ecfdf5;
}

.seasonality-table td.med {
  color: #d97706;
  font-weight: bold;
  background: #fffbeb;
}

.seasonality-table td.off {
  color: #cbd5e1;
}

/* --- Reefer Estimator Section --- */
.estimator-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d2b5c 0%, #0a2540 100%);
  color: #ffffff;
}

.estimator-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.estimator-card .section-title {
  color: #ffffff;
}

.estimator-card .section-tag {
  color: #34d399;
  background: rgba(52, 211, 153, 0.15);
}

.estimator-card .section-subtitle {
  color: #94a3b8;
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
  align-items: center;
}

@media (max-width: 900px) {
  .estimator-grid {
    grid-template-columns: 1fr;
  }
}

.estimator-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.6);
  color: #ffffff;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.form-help {
  display: block;
  font-size: 0.82rem;
  color: #94a3b8;
  margin-top: 6px;
}

.estimator-results {
  background: rgba(15, 23, 42, 0.8);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.estimator-results h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: #f59e0b;
  text-align: center;
}

.result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.metric-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #10b981;
}

.metric-label {
  display: block;
  font-size: 0.82rem;
  color: #cbd5e1;
  margin-top: 4px;
}

.estimator-cta {
  margin-top: 10px;
}



/* --- Fix Modal Overlay & Popup Animations --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 37, 64, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 750px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  padding: 30px;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-close:hover {
  background: #ef4444;
  color: #ffffff;
}

.modal-header {
  margin-bottom: 16px;
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-top: 8px;
  color: var(--primary-dark);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-citrus { background: #fef3c7; color: #b45309; }
.badge-veg { background: #d1fae5; color: #047857; }

.modal-cta-btn {
  margin-top: 20px;
}


/* --- Fix Header Layout & Prevent Multi-line Nav Wrapping --- */
.main-header .container.navbar {
  max-width: 1400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 6px 2px;
  white-space: nowrap;
}

.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.15);
  padding: 3px 8px;
  border-radius: 20px;
}

.lang-btn {
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e2e8f0;
  transition: all 0.2s ease;
  user-select: none;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.lang-btn.active {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 2px 5px rgba(37, 99, 235, 0.4);
}

/* --- Fix Navigation Get In Touch Button --- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-btn {
  white-space: nowrap !important;
  word-break: keep-all !important;
  padding: 8px 20px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  height: 42px !important;
  max-height: 42px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
  border-radius: 10px !important;
  background: #2563eb !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3) !important;
  transition: all 0.25s ease !important;
  margin: 0 !important;
}

.nav-btn:hover {
  background: #1d4ed8 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4) !important;
}

.nav-btn span {
  white-space: nowrap !important;
  word-break: keep-all !important;
  display: inline-block !important;
}
