/* KK Internationals - Premium Agricultural Exporter CSS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1F4D3B;
  /* Deep Forest Green */
  --secondary: #5C3A21;
  /* Rich Brown */
  --accent: #C8A44D;
  /* Antique Gold */
  --accent-hover: #E8C770;
  /* Light Gold */
  --bg-light: #F8F6F2;
  /* Off White */
  --bg-subtle: #EAE6DD;
  /* Subtle Warm Gray */
  --text-main: #222222;
  /* Charcoal */
  --text-muted: rgba(34, 34, 34, 0.75);
  --dark-bg: #1A1A1A;
  /* Footer Dark */

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 4px rgba(31, 77, 59, 0.06);
  --shadow-md: 0 6px 12px rgba(31, 77, 59, 0.12);
  --shadow-lg: 0 12px 24px rgba(31, 77, 59, 0.16);
  --shadow-xl: 0 20px 35px rgba(31, 77, 59, 0.22);
}

/* Base resets & typography */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-light);
  font-size: 16px;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
.font-serif {
  font-family: var(--font-serif);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

@media (min-width: 1024px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* Section padding */
.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/* Badges & Section Headers */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  background-color: rgba(200, 164, 77, 0.2);
  border: 1px solid rgba(200, 164, 77, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-badge span {
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-badge-dark {
  background-color: rgba(200, 164, 77, 0.2);
  border-color: rgba(200, 164, 77, 0.3);
}

.section-badge-dark span {
  color: var(--accent);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.5rem;
  }
}

.section-title-light {
  color: var(--bg-light);
}

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

.section-subtitle-light {
  color: rgba(248, 246, 242, 0.75);
}

/* ─────────────────────────────────────────────────────────────
   LOADING SCREEN
   ───────────────────────────────────────────────────────────── */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  opacity: 1;
  transition: opacity 0.5s ease;
}

#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  text-align: center;
  animation: scaleIn 0.6s ease-out forwards;
}

.loading-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.loading-bar {
  height: 4px;
  width: 12rem;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: var(--radius-full);
  animation: pulseBar 1.2s infinite ease-in-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulseBar {

  0%,
  100% {
    transform: scaleX(0.4);
    opacity: 0.5;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* ─────────────────────────────────────────────────────────────
   NAVBAR
   ───────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo img {
  height: 3rem;
  width: 3rem;
  object-fit: contain;
  border-radius: 50%;
}

.navbar-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--accent);
  display: none;
}

@media (min-width: 640px) {
  .navbar-logo-text {
    display: block;
  }
}

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

@media (min-width: 1024px) {
  .nav-links-desktop {
    display: flex;
  }
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bg-light);
  letter-spacing: 0.025em;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.nav-link.active::after {
  transform: scaleX(1);
}

.mobile-toggle-btn {
  display: flex;
  background: none;
  border: none;
  color: var(--bg-light);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.mobile-toggle-btn:hover {
  color: var(--accent);
}

@media (min-width: 1024px) {
  .mobile-toggle-btn {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 20rem;
  background-color: var(--primary);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  padding: 6rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(42, 95, 74, 0.6);
  transition: color 0.2s ease;
}

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

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ─────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 77, 59, 0.92) 0%, rgba(31, 77, 59, 0.45) 50%, rgba(31, 77, 59, 0.2) 100%);
}

.hero-glow-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(200, 164, 77, 0.08);
  filter: blur(40px);
  animation: floatAnim 6s infinite ease-in-out;
}

.circle-1 {
  top: 5rem;
  right: 2.5rem;
  width: 8rem;
  height: 8rem;
}

.circle-2 {
  bottom: 10rem;
  left: 5rem;
  width: 12rem;
  height: 12rem;
  animation-delay: 2s;
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  padding-top: 5rem;
}

.hero-headline {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--bg-light);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .hero-headline {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: 4.5rem;
  }
}

.hero-subhead {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--bg-light);
  line-height: 1.6;
  max-width: 48rem;
  margin: 0 auto 2% auto;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .hero-subhead {
    font-size: 1.35rem;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.btn-primary {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  background-color: var(--accent);
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(200, 164, 77, 0.25);
}

@media (min-width: 640px) {
  .btn-primary {
    width: auto;
  }
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 164, 77, 0.35);
}

.btn-outline {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  background: transparent;
  color: var(--bg-light);
  font-weight: 600;
  font-size: 1.125rem;
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .btn-outline {
    width: auto;
  }
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--text-main);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  color: var(--accent);
  z-index: 10;
  animation: bounceAnim 2s infinite ease-in-out;
}

.scroll-indicator span {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

@keyframes bounceAnim {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, 8px);
  }

  60% {
    transform: translate(-50%, 4px);
  }
}

/* ─────────────────────────────────────────────────────────────
   ABOUT SECTION
   ───────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-img-container {
  position: relative;
}

.about-img-wrapper {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  position: relative;
}

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

.about-img-accent {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(200, 164, 77, 0.12);
  border-radius: var(--radius-sm);
  z-index: -1;
}

@media (min-width: 768px) {
  .about-img-accent {
    display: block;
  }
}

.about-content-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3.5rem;
  }
}

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

/* ─────────────────────────────────────────────────────────────
   PRODUCTS SECTION
   ───────────────────────────────────────────────────────────── */
.products-section {
  background: linear-gradient(to bottom, var(--bg-light), var(--bg-subtle));
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(200, 164, 77, 0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(200, 164, 77, 0.5);
}

.product-card-img-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

.product-badge-goa {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.75rem;
  background-color: var(--primary);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid var(--accent);
}

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.product-card-tagline {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.product-card-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-card-details {
  margin-top: auto;
  width: 100%;
  padding: 0.65rem 1rem;
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.product-card:hover .btn-card-details {
  background-color: var(--primary);
  color: var(--bg-light);
}

/* ─────────────────────────────────────────────────────────────
   PRODUCT MODAL
   ───────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--bg-light);
  width: 100%;
  max-width: 52rem;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2xl);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.85);
  border: none;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.2s ease;
}

.modal-close-btn:hover {
  background-color: #FFFFFF;
}

.modal-header-img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.modal-body {
  padding: 2rem;
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.modal-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.25rem;
}

.modal-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.modal-specs-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(200, 164, 77, 0.3);
}

.modal-specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.modal-specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.modal-specs-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────
   MODAL SUB-PRODUCTS SECTION (Dehydrated Vegetables)
   ───────────────────────────────────────────────────────────── */
.modal-sub-section {
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(200, 164, 77, 0.2);
}

.modal-sub-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}

.modal-sub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 560px) {
  .modal-sub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.modal-sub-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(200, 164, 77, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-subtle);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.modal-sub-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.modal-sub-img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
}

.modal-sub-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.3rem;
}

.modal-sub-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  font-family: var(--font-serif);
}

.modal-sub-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
}

.modal-sub-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
}


/* ─────────────────────────────────────────────────────────────
   WHY CHOOSE US
   ───────────────────────────────────────────────────────────── */
.why-us-section {
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 164, 77, 0.2);
  border-radius: var(--radius-sm);
  transition: all 0.4s ease;
  position: relative;
}

.why-card:hover {
  border-color: rgba(200, 164, 77, 0.6);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(200, 164, 77, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
}

.why-card:hover .why-icon-box {
  background-color: var(--accent);
  color: var(--text-main);
}

.why-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bg-light);
  margin-bottom: 0.75rem;
}

.why-desc {
  font-size: 0.95rem;
  color: rgba(248, 246, 242, 0.75);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────
   EXPORT PROCESS
   ───────────────────────────────────────────────────────────── */
.process-desktop-timeline {
  display: none;
  position: relative;
  margin-top: 4rem;
}

@media (min-width: 1024px) {
  .process-desktop-timeline {
    display: block;
  }
}

.timeline-connecting-line {
  position: absolute;
  top: 3rem;
  left: 3.75rem;
  right: 3.75rem;
  height: 2px;
  background: var(--accent);
  z-index: 1;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-circle-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.step-circle {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.timeline-step:hover .step-circle {
  transform: scale(1.1);
}

.step-number-badge {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid var(--accent);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Mobile Timeline */
.process-mobile-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .process-mobile-timeline {
    display: none;
  }
}

.mobile-step-item {
  display: flex;
  gap: 1.5rem;
}

.mobile-step-circle-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-step-circle {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.mobile-step-number {
  position: absolute;
  bottom: -0.25rem;
  right: -0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid var(--accent);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-step-line {
  width: 2px;
  flex-grow: 1;
  background-color: rgba(200, 164, 77, 0.3);
  margin-top: 0.5rem;
}

.mobile-step-content {
  padding-top: 0.5rem;
}

/* ─────────────────────────────────────────────────────────────
   GOA SPECIALITY SECTION
   ───────────────────────────────────────────────────────────── */
.goa-section {
  background-color: var(--primary);
  color: var(--bg-light);
}

.goa-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .goa-strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.goa-card {
  background-color: rgba(248, 246, 242, 0.05);
  border: 1px solid rgba(200, 164, 77, 0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.goa-card:hover {
  border-color: rgba(200, 164, 77, 0.6);
}

.goa-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.goa-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.goa-card-body {
  padding: 1rem;
}

.goa-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.goa-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-light);
  margin-bottom: 0.35rem;
}

.goa-card-desc {
  font-size: 0.8rem;
  color: rgba(248, 246, 242, 0.65);
  line-height: 1.5;
}

.goa-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .goa-split-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.goa-cert-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background-color: var(--bg-light);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--accent);
}

.goa-cert-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.goa-cert-code {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.goa-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.goa-highlight-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(200, 164, 77, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.goa-address-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background-color: rgba(248, 246, 242, 0.05);
  border: 1px solid rgba(200, 164, 77, 0.2);
  border-radius: var(--radius-sm);
}

/* ─────────────────────────────────────────────────────────────
   GALLERY SECTION & LIGHTBOX
   ───────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

@media (min-width: 768px) {
  .gallery-item.row-span-2 {
    grid-row: span 2;
    aspect-ratio: auto;
    height: 100%;
  }
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

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

.gallery-caption {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close-btn,
.lightbox-prev-btn,
.lightbox-next-btn {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 10;
}

.lightbox-close-btn:hover,
.lightbox-prev-btn:hover,
.lightbox-next-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.lightbox-close-btn {
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox-prev-btn {
  left: 1.5rem;
}

.lightbox-next-btn {
  right: 1.5rem;
}

.lightbox-image-container {
  position: relative;
  max-width: 60rem;
  max-height: 80vh;
  text-align: center;
}

.lightbox-image-container img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-info {
  margin-top: 1rem;
  color: #FFFFFF;
}

.lightbox-caption-text {
  font-size: 1.15rem;
  font-weight: 500;
}

.lightbox-count-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

/* ─────────────────────────────────────────────────────────────
   CONTACT SECTION
   ───────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

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

.contact-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(200, 164, 77, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon-box {
  background-color: var(--accent);
  color: var(--text-main);
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.contact-info-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-map-frame {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(200, 164, 77, 0.2);
  box-shadow: var(--shadow-md);
}

.contact-form-card {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200, 164, 77, 0.15);
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 2.5rem;
  }
}

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

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(200, 164, 77, 0.3);
  border-radius: var(--radius-sm);
  background-color: #FFFFFF;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 164, 77, 0.2);
}

/* ─────────────────────────────────────────────────────────────
   TOAST NOTIFICATION
   ───────────────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background-color: var(--primary);
  color: var(--bg-light);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.footer {
  background-color: var(--dark-bg);
  color: var(--bg-light);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 3rem;
  width: 3rem;
  object-fit: contain;
  border-radius: 50%;
}

.footer-logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(248, 246, 242, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-light);
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  background-color: var(--accent);
  color: var(--text-main);
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: rgba(248, 246, 242, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(248, 246, 242, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-text {
  font-size: 0.875rem;
  color: rgba(248, 246, 242, 0.6);
}

.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--text-main);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
  transition: all 0.3s ease;
}

.back-to-top-btn.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.back-to-top-btn:hover {
  background-color: var(--accent-hover);
  transform: scale(1.1);
}

/* ─────────────────────────────────────────────────────────────
   SEE ALL PRODUCTS BUTTON & MODAL
   ───────────────────────────────────────────────────────────── */

/* Centered CTA wrapper below the Pan-India grid */
.see-all-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  padding-bottom: 0.5rem;
}

/* Wide modal container modifier */
.modal-container--wide {
  max-width: 90rem;
  width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* children handle scrolling */
}

/* See All modal header — sticky at top of modal */
.see-all-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(200, 164, 77, 0.25);
  background-color: var(--bg-light);
  position: sticky;
  top: 0;
  z-index: 5;
  flex-shrink: 0;
}

.see-all-modal-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  font-family: var(--font-serif);
}

.see-all-modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Reposition close button for the wider header */
.see-all-close-btn {
  position: static !important;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* Scrollable body */
.see-all-modal-body {
  overflow-y: auto;
  padding: 2rem;
  flex: 1;
}

/* Grid inside the See All modal — 4 columns on large screens */
.see-all-grid {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 600px) {
  .see-all-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .see-all-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .see-all-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ─────────────────────────────────────────────────────────────
   DEHYDRATED VEGETABLES — CATEGORY BLOCK
   ───────────────────────────────────────────────────────────── */

/* Spans the full width of the Pan-India grid */
.product-category-block {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(31, 77, 59, 0.04) 0%, rgba(200, 164, 77, 0.06) 100%);
  border: 1px solid rgba(200, 164, 77, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Header strip with icon + title + tagline */
.product-category-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(90deg, var(--primary) 0%, #2a6b52 100%);
  color: #fff;
}

.product-category-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  background: rgba(200, 164, 77, 0.25);
  border: 1px solid rgba(200, 164, 77, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.product-category-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.product-category-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-serif);
  margin: 0;
}

.product-category-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Sub-products grid inside the category block */
.product-subcategory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .product-subcategory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .product-subcategory-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Sub-product card slight variant */
.subcategory-card {
  border: 1px solid rgba(200, 164, 77, 0.2);
}

/* Sub-Product badge (amber/warm, distinct from Goa badge) */
.product-badge-sub {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(92, 58, 33, 0.9);
  color: #F8C569;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid rgba(248, 197, 105, 0.5);
}

/* Category badge pill (used in header and See All modal) */
.product-badge-category {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background-color: rgba(200, 164, 77, 0.2);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid rgba(200, 164, 77, 0.4);
  margin-bottom: 0.35rem;
  width: fit-content;
}

/* See All modal — inline category divider label */
.see-all-category-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(90deg, rgba(31, 77, 59, 0.07) 0%, transparent 100%);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
}

.see-all-category-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  font-family: var(--font-serif);
}

.see-all-category-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}