/* ===== AKSHAYA FOODS - GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@400;700&display=swap');

:root {
  /* Brand Colors - Akshaya Foods Teal */
  --primary: #2A7B88;
  --primary-dark: #1E5F6A;
  --primary-light: #3A9BAA;
  --secondary: #4CAF50;
  --secondary-dark: #388E3C;
  --secondary-light: #66BB6A;
  --accent: #D4A843;
  --accent-light: #E8C96A;
  --gold: #C8A951;
  --teal: #2A7B88;
  --teal-dark: #1B5761;
  --teal-light: #4AABB8;

  /* Neutrals */
  --bg-cream: #F5FAFA;
  --bg-warm: #EDF6F6;
  --bg-white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-body: #4A4A4A;
  --text-muted: #7A7A7A;
  --text-light: #B0B0B0;
  --border: #D0E4E4;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #1B5761 0%, #2A7B88 50%, #3A9BAA 100%);
  --gradient-warm: linear-gradient(180deg, #F5FAFA 0%, #FFFFFF 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  --gradient-green: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
  --gradient-teal: linear-gradient(135deg, #1B5761 0%, #2A7B88 40%, #3A9BAA 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 4px 30px rgba(42, 123, 136, 0.25);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-script: 'Dancing Script', cursive;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*,
*::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-body);
  background: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 221, 208, 0.5);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.nav-logo .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-logo .logo-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: 50px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(42, 123, 136, 0.06);
}

.nav-cta {
  background: var(--gradient-hero) !important;
  color: white !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(42, 123, 136, 0.35) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ===== HERO CAROUSEL SECTION ===== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  margin-top: 80px;
}

/* --- Individual Slide --- */
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: center;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* --- Slide Backgrounds --- */
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slide 1: Teal gradient like iD Fresh */
.slide-1 .slide-bg-gradient {
  background: linear-gradient(135deg, #1B5761 0%, #2A7B88 40%, rgba(58, 155, 170, 0.92) 100%);
}

/* Slide 2: Warm golden */
.slide-2 .slide-bg-gradient {
  background: linear-gradient(135deg, #1a3a1a 0%, rgba(42, 100, 50, 0.95) 50%, rgba(76, 175, 80, 0.9) 100%);
}

/* Slide 3: Deep teal to dark */
.slide-3 .slide-bg-gradient {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 40%, #2A7B88 100%);
}

/* Slide 4: Rich warm brand */
.slide-4 .slide-bg-gradient {
  background: linear-gradient(135deg, #1B5761 0%, #2A7B88 30%, #D4A843 100%);
}

/* --- Slide Content --- */
.slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  height: 100%;
}

.slide-text {
  color: white;
}

.slide-text .slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideUp 0.6s ease-out;
}

.slide-text h1 {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.slide-text h1 .highlight {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

.slide-text h1 .script-line {
  font-family: var(--font-script);
  font-size: 2.2rem;
  display: block;
  margin-top: 8px;
  color: var(--accent-light);
  font-weight: 400;
}

.slide-text p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.slide-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -30px) scale(1.05);
  }
}

/* --- Slide Image Area --- */
.slide-image-area {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  padding: 60px 0;
}

.slide-image-area img {
  max-height: 420px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
  transition: transform 0.6s ease;
}

.carousel-slide.active .slide-image-area img {
  animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- Feature Badges Row (iD Fresh style) --- */
.slide-features {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.slide-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slide-feature .sf-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.slide-feature .sf-text {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  line-height: 1.3;
}

/* --- Carousel Navigation Arrows --- */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow.prev {
  left: 24px;
}

.carousel-arrow.next {
  right: 24px;
}

/* --- Carousel Dots --- */
.carousel-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
}

.carousel-dot.active {
  width: 36px;
  border-radius: 10px;
  background: white;
  border-color: white;
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.6);
}

/* --- Carousel Progress Bar --- */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--accent);
  z-index: 10;
  transition: width 0.3s linear;
  border-radius: 0 2px 2px 0;
}

/* --- Logo Watermark on Carousel --- */
.carousel-logo-watermark {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 5;
  opacity: 0.15;
}

.carousel-logo-watermark img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

/* --- Slide with product showcase (like iD Fresh) --- */
.slide-product-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
  padding: 40px 0;
}

.product-pedestal {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.product-pedestal img {
  width: 100%;
  border-radius: 20px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
}

.product-pedestal::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  right: 10%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

/* -- Full-width slide variant -- */
.slide-content.full-center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.slide-content.full-center .slide-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide-content.full-center .slide-text p {
  margin-left: auto;
  margin-right: auto;
}

.slide-content.full-center .slide-features {
  justify-content: center;
}

.slide-content.full-center .slide-btns {
  justify-content: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-hero);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(42, 123, 136, 0.4);
}

.btn-outline {
  border: 2px solid var(--border);
  color: var(--text-dark);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: white;
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  border: 2px solid white;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: transparent;
  color: white;
}

.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-white-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn .icon-emoji {
  font-size: 1.2rem;
  line-height: 1;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-header .label::before,
.section-header .label::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gradient-hero);
  border-radius: 2px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ===== PRODUCT CARDS ===== */
.products-section {
  padding: var(--section-padding);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-card .card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.product-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .card-img img {
  transform: scale(1.08);
}

.product-card .card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient-hero);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.product-card .card-body {
  padding: 24px;
}

.product-card .card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-card .card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.card-features span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--secondary);
  background: rgba(45, 106, 79, 0.06);
  padding: 5px 12px;
  border-radius: 50px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.card-link:hover {
  gap: 12px;
}

/* ===== FEATURES / WHY US ===== */
.features-section {
  padding: var(--section-padding);
  background: var(--gradient-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.05;
  top: -200px;
  right: -200px;
}

.features-section .section-header .label {
  color: var(--accent);
}

.features-section .section-header .label::before,
.features-section .section-header .label::after {
  background: var(--accent);
}

.features-section .section-header h2 {
  color: white;
}

.features-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-card .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(42, 123, 136, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: white;
}

.feature-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ===== RECIPES SECTION ===== */
.recipes-section {
  padding: var(--section-padding);
  background: var(--bg-warm);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.recipe-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.recipe-card .recipe-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.recipe-card .recipe-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.recipe-card:hover .recipe-img img {
  transform: scale(1.05);
}

.recipe-card .recipe-body {
  padding: 24px;
}

.recipe-card .recipe-body .recipe-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.recipe-card .recipe-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.recipe-card .recipe-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.recipe-meta {
  display: flex;
  gap: 20px;
  color: var(--text-light);
  font-size: 0.82rem;
}

.recipe-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== ABOUT / STORY SECTION ===== */
.story-section {
  padding: var(--section-padding);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  position: relative;
}

.story-image img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.story-image .accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: var(--gradient-hero);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.15;
}

.story-text .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.story-text h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.story-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== CTA BANNER ===== */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -200px;
  left: -100px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -150px;
  right: -50px;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: white;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gradient-dark);
  color: white;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-brand .logo-text span {
  color: var(--primary-light);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.footer-contact li .icon {
  font-size: 18px;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== CONTACT PAGE ===== */
.page-hero {
  padding: 140px 0 80px;
  background: var(--gradient-dark);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.06;
  top: -250px;
  right: -100px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-section {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-cards {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.contact-info-card .ci-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 69, 26, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
  background: var(--bg-cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(42, 123, 136, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===== ABOUT PAGE SPECIFICS ===== */
.about-values {
  padding: var(--section-padding);
  background: var(--bg-warm);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 69, 26, 0.1);
}

.value-card .v-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(212, 69, 26, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: var(--section-padding);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step .step-num {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 2;
  border: 6px solid var(--bg-cream);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== PRODUCTS PAGE ===== */
.products-page-section {
  padding: var(--section-padding);
}

.product-category {
  margin-bottom: 72px;
}

.product-category:last-child {
  margin-bottom: 0;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.category-header .cat-icon {
  font-size: 32px;
}

.category-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-dark);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-spring);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .slide-text h1 {
    font-size: 2.8rem;
  }

  .slide-content {
    gap: 40px;
    padding: 0 30px;
  }

  .slide-features {
    gap: 24px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    z-index: 3000;
    /* Keep logo and toggle above everything */
  }

  .navbar.menu-open {
    background: transparent !important;
    backdrop-filter: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }

  .navbar.menu-open .nav-logo {
    opacity: 0.5;
    /* Fade logo slightly to emphasize sidebar */
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 120px 24px 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2000;
    overflow-y: auto;
    text-align: left;
  }

  .nav-links.open {
    transform: translateX(-300px);
  }

  .nav-links::before {
    content: 'NAVIGATION';
    position: absolute;
    top: 50px;
    left: 40px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--primary);
    opacity: 0.4;
  }

  .nav-links li {
    width: 100%;
    margin-bottom: 8px;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    background: transparent;
    transition: all 0.3s ease;
    margin-left: 0;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--bg-cream);
    color: var(--primary);
    padding-left: 24px;
  }

  .nav-links .nav-cta {
    margin-top: 20px;
    justify-content: center;
    background: var(--gradient-hero) !important;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-toggle {
    display: flex;
    z-index: 3100;
    /* Highest priority within the navbar */
    position: relative;
  }

  /* ---- Carousel Mobile ---- */
  .hero-carousel {
    height: auto;
    min-height: auto;
    margin-top: 70px;
  }

  .carousel-slide {
    position: relative;
    min-height: auto;
  }

  .carousel-slide:not(.active) {
    display: none;
  }

  .slide-content {
    grid-template-columns: 1fr;
    padding: 50px 20px 70px;
    gap: 24px;
    min-height: auto;
  }

  .slide-text {
    text-align: center;
  }

  .slide-text .slide-tag {
    font-size: 0.72rem;
    padding: 6px 16px;
  }

  .slide-text h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .slide-text h1 .script-line {
    font-size: 1.4rem;
    margin-top: 6px;
  }

  .slide-text p {
    font-size: 0.92rem;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .slide-btns {
    justify-content: center;
    gap: 12px;
  }

  .slide-btns .btn {
    padding: 12px 24px;
    font-size: 0.88rem;
  }

  .slide-features {
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }

  .slide-feature {
    gap: 8px;
  }

  .slide-feature .sf-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .slide-feature .sf-text {
    font-size: 0.68rem;
    letter-spacing: 0.5px;
  }

  /* Hide arrows on mobile */
  .carousel-arrow {
    display: none !important;
  }

  .carousel-dots {
    bottom: 16px;
  }

  .carousel-logo-watermark {
    display: none;
  }

  .slide-image-area {
    padding: 10px 20px 0;
  }

  .slide-image-area img {
    max-height: 220px;
    border-radius: 16px;
  }

  /* Full-center variant on mobile */
  .slide-content.full-center {
    padding: 50px 20px 70px;
  }

  /* ---- General Mobile ---- */
  .nav-container {
    height: 70px;
  }

  .nav-logo .logo-icon {
    width: 40px;
    height: 40px;
  }

  .nav-logo .logo-text {
    font-size: 1.3rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .product-card .card-img {
    height: 180px;
  }

  .product-card .card-body {
    padding: 16px;
  }

  .product-card .card-body h3 {
    font-size: 1.1rem;
  }

  .product-card .card-body p {
    font-size: 0.82rem;
    margin-bottom: 10px;
  }

  .card-features {
    gap: 6px;
  }

  .card-features span {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-image img {
    height: 300px;
  }

  .story-text h2 {
    font-size: 1.8rem;
  }

  .story-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-item h3 {
    font-size: 1.6rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .recipes-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    bottom: 20px;
    right: 16px;
  }

  :root {
    --section-padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .slide-text h1 {
    font-size: 1.6rem;
  }

  .slide-text h1 .script-line {
    font-size: 1.2rem;
  }

  .slide-btns {
    flex-direction: column;
    align-items: center;
  }

  .slide-btns .btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .slide-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .slide-image-area img {
    max-height: 180px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .story-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-item {
    text-align: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}