/* ============================================
   V KOTE FOODS — Home Page Styles
   ============================================ */

/* =============================================
   NEW PREMIUM HERO — Cinematic Showcase
   ============================================= */
.vk-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #FFFDF8 0%, #FFF9EE 35%, #FFF5E0 60%, #FFFDF8 100%);
  padding: 0;
}

/* ---------- Ambient Background Layers ---------- */
.vk-hero__ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Grain texture */
.vk-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* Ambient blur orbs */
.vk-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  will-change: transform, opacity;
}

.vk-hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.12) 0%, transparent 70%);
  top: -12%;
  right: -8%;
}

.vk-hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.14) 0%, transparent 70%);
  bottom: -8%;
  left: -6%;
}

.vk-hero__orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 90, 43, 0.06) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}

/* Leaf pattern (SVG) */
.vk-hero__leaves {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 10 C45 20 55 25 55 40 C55 55 45 60 40 70 C35 60 25 55 25 40 C25 25 35 20 40 10Z' fill='%232E7D32' fill-opacity='0.5'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

/* Floating particles canvas placeholder — JS generates them */
.vk-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* ---------- Hero Inner Container ---------- */
.vk-hero__inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--navbar-height) + 60px) 24px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ---------- Premium Badge ---------- */
.vk-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: rgba(46, 125, 50, 0.04);
  border: 1px solid rgba(46, 125, 50, 0.1);
  font-family: var(--ff-button);
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  color: var(--clr-primary-dark);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vk-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-primary);
  animation: badgePulse 2.4s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ---------- Main Heading ---------- */
.vk-hero__heading {
  font-family: var(--ff-heading);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--clr-text);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 28px 0;
  max-width: 900px;
}

.vk-hero__heading-line {
  display: block;
  overflow: hidden;
}

.vk-hero__heading-inner {
  display: block;
  will-change: transform;
}

.vk-hero__heading-accent {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #388E3C 40%, var(--clr-accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Subheading / Description ---------- */
.vk-hero__desc {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: var(--fw-regular);
  color: var(--clr-text-light);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 40px auto;
}

/* ---------- Button Group ---------- */
.vk-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.vk-hero__actions .btn-secondary-custom {
  color: var(--clr-primary-dark) !important;
  border: 2px solid rgba(46, 125, 50, 0.25) !important;
}

.vk-hero__actions .btn-secondary-custom span,
.vk-hero__actions .btn-secondary-custom i {
  color: var(--clr-primary-dark) !important;
}

.vk-hero__actions .btn-secondary-custom:hover {
  background: rgba(46, 125, 50, 0.06) !important;
  border-color: var(--clr-primary) !important;
}

/* ---------- Visual Showcase ---------- */
.vk-hero__showcase {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Organic shapes behind image */
.vk-hero__shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.vk-hero__shape--1 {
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  background: radial-gradient(ellipse, rgba(244, 197, 66, 0.08) 0%, transparent 65%);
  animation: blobMorph 12s ease-in-out infinite;
}

.vk-hero__shape--2 {
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  background: radial-gradient(ellipse, rgba(46, 125, 50, 0.05) 0%, transparent 60%);
  animation: blobMorph 15s ease-in-out infinite reverse;
}

/* Image wrapper with premium frame */
.vk-hero__img-frame {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 680px;
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(46, 125, 50, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  border: 6px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  will-change: transform;
}

.vk-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.vk-hero__img-frame:hover .vk-hero__img {
  transform: scale(1.12);
}

/* Warm light overlay on image */
.vk-hero__img-glow {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.15) 0%, transparent 40%, transparent 60%, rgba(255, 253, 248, 0.08) 100%);
}

/* ---------- Floating Glass Cards ---------- */
.vk-hero__float {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  will-change: transform;
  transition: box-shadow 0.3s ease;
}

.vk-hero__float:hover {
  box-shadow: 0 12px 40px rgba(46, 125, 50, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.vk-hero__float-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.vk-hero__float-label {
  font-family: var(--ff-heading);
  font-size: 0.82rem;
  font-weight: var(--fw-bold);
  color: var(--clr-primary-dark);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

/* Card positions — desktop */
.vk-hero__float--1 { top: 8%;  left: -4%; }
.vk-hero__float--2 { top: 14%; right: -5%; }
.vk-hero__float--3 { bottom: 18%; left: -6%; }
.vk-hero__float--4 { bottom: 8%;  right: -3%; }

/* ---------- Trust Ribbon ---------- */
.vk-hero__trust {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 40px 24px 0;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.vk-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-button);
  font-size: 0.78rem;
  font-weight: var(--fw-semibold);
  color: var(--clr-text-muted);
  letter-spacing: 0.3px;
}

.vk-hero__trust-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vk-hero__trust-icon i {
  font-size: 0.6rem;
  color: var(--clr-primary);
}

/* ---------- Scroll Indicator ---------- */
.vk-hero__scroll {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  padding-bottom: 20px;
  text-decoration: none;
  color: var(--clr-primary-dark);
  transition: opacity var(--transition-base);
}

.vk-hero__scroll:hover {
  opacity: 0.65;
  color: var(--clr-primary-dark);
}

.vk-hero__scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(46, 125, 50, 0.3);
  border-radius: 11px;
  position: relative;
}

.vk-hero__scroll-dot {
  width: 3px;
  height: 7px;
  background: var(--clr-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollMouse 2s ease-in-out infinite;
}

@keyframes scrollMouse {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

.vk-hero__scroll-text {
  font-family: var(--ff-button);
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  opacity: 0.5;
}

/* ---------- Organic Wave Divider ---------- */
.vk-hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 8;
  line-height: 0;
  pointer-events: none;
}

.vk-hero__wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Navbar overrides for light hero bg ---------- */
.vk-hero ~ .section,
.vk-hero + .section {
  position: relative;
  z-index: 2;
}

#mainNavbar:not(.scrolled) .navbar-brand {
  color: var(--clr-primary-dark) !important;
}

#mainNavbar:not(.scrolled) .brand-tagline {
  color: var(--clr-text-muted) !important;
}

#mainNavbar:not(.scrolled) .navbar-brand-icon {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
}

#mainNavbar:not(.scrolled) .nav-link {
  color: var(--clr-text) !important;
}

#mainNavbar:not(.scrolled) .nav-link:hover,
#mainNavbar:not(.scrolled) .nav-link.active {
  color: var(--clr-primary) !important;
}

#mainNavbar:not(.scrolled) .navbar-toggler {
  color: var(--clr-text);
  border-color: rgba(0, 0, 0, 0.1);
}

#mainNavbar:not(.scrolled) .navbar-cta {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark)) !important;
  color: white !important;
}

/* =============================================
   HERO RESPONSIVENESS
   ============================================= */

/* Tablet landscape */
@media (max-width: 1024px) {
  .vk-hero__img-frame {
    max-width: 580px;
  }

  .vk-hero__float--1 { left: -2%; }
  .vk-hero__float--2 { right: -2%; }
  .vk-hero__float--3 { left: -3%; }
  .vk-hero__float--4 { right: -1%; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .vk-hero__inner {
    padding-top: calc(var(--navbar-height) + 40px);
  }

  .vk-hero__heading {
    font-size: clamp(2.4rem, 7vw, 3.4rem);
    margin-bottom: 22px;
  }

  .vk-hero__desc {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .vk-hero__img-frame {
    max-width: 90vw;
    border-radius: 20px;
    border-width: 4px;
  }

  /* Style floating cards on tablet to prevent clutter and overflow */
  .vk-hero__float {
    padding: 8px 14px;
    border-radius: 12px;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }

  .vk-hero__float-icon {
    font-size: 1.15rem;
  }

  .vk-hero__float-label {
    font-size: 0.75rem;
  }

  /* Reposition floating cards to fit within tablet portrait screen width */
  .vk-hero__float--1 { top: 6%; left: 2%; }
  .vk-hero__float--2 { top: 12%; right: 2%; }
  .vk-hero__float--3 { bottom: 16%; left: 2%; }
  .vk-hero__float--4 { bottom: 8%; right: 2%; }

  /* Stack buttons on tablet and mobile */
  .vk-hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    gap: 12px;
    margin-bottom: 36px;
  }

  .vk-hero__actions .btn-primary-custom,
  .vk-hero__actions .btn-secondary-custom {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .vk-hero__trust {
    gap: 12px 20px;
    padding-top: 32px;
  }

  .vk-hero__trust-item {
    font-size: 0.72rem;
  }

  .vk-hero__orb--1 { width: 350px; height: 350px; }
  .vk-hero__orb--2 { width: 300px; height: 300px; }
  .vk-hero__orb--3 { display: none; }
}

/* Mobile */
@media (max-width: 576px) {
  .vk-hero {
    min-height: 100svh;
    justify-content: flex-start;
    padding-bottom: 40px;
  }

  .vk-hero__inner {
    padding: calc(var(--navbar-height) + 28px) 16px 0 16px;
  }

  .vk-hero__badge {
    font-size: 0.6rem;
    padding: 8px 16px;
    letter-spacing: 2px;
    margin-bottom: 24px;
  }

  .vk-hero__heading {
    font-size: clamp(2rem, 9vw, 2.8rem);
    letter-spacing: -0.01em;
    margin-bottom: 18px;
  }

  .vk-hero__desc {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 28px;
    padding: 0 4px;
  }

  .vk-hero__actions {
    max-width: 100%;
  }

  .vk-hero__img-frame {
    max-width: 100%;
    border-radius: 16px;
    border-width: 3px;
    aspect-ratio: 4 / 3;
  }

  /* Style floating cards on mobile to be even more compact and prevent overflow */
  .vk-hero__float {
    padding: 6px 10px;
    border-radius: 10px;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .vk-hero__float-icon {
    font-size: 0.95rem;
  }

  .vk-hero__float-label {
    font-size: 0.65rem;
  }

  /* Overlay positions on mobile to fit screen boundaries exactly */
  .vk-hero__float--1 { top: 4%; left: 3%; }
  .vk-hero__float--2 { top: 10%; right: 3%; }
  .vk-hero__float--3 { bottom: 14%; left: 3%; }
  .vk-hero__float--4 { bottom: 6%; right: 3%; }

  .vk-hero__trust {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    padding-top: 28px;
    align-items: center;
  }

  .vk-hero__trust-item {
    white-space: nowrap;
  }

  .vk-hero__scroll {
    margin-top: 32px;
  }

  .vk-hero__leaves { display: none; }
}

/* Small mobile */
@media (max-width: 375px) {
  .vk-hero__heading {
    font-size: 1.9rem;
  }

  .vk-hero__desc {
    font-size: 0.88rem;
  }
}



/* ---------- About Preview ---------- */
.about-preview-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-preview-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-preview-img .experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-preview-img .experience-badge .number {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-extrabold);
  line-height: 1;
  display: block;
}

.about-preview-img .experience-badge .label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  font-family: var(--ff-button);
}

.about-preview-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.about-preview-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: var(--fs-body);
  color: var(--clr-text-light);
}

.about-preview-list li i {
  color: var(--clr-primary);
  font-size: 0.8rem;
  width: 24px;
  height: 24px;
  background: rgba(46, 125, 50, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Featured Products ---------- */
.products-preview .swiper {
  padding: 20px 10px 60px;
}

.products-preview .swiper-pagination-bullet {
  background: var(--clr-primary);
  width: 10px;
  height: 10px;
}

.products-preview .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: var(--radius-pill);
}

/* ---------- Why Choose Us ---------- */
.why-choose-card {
  text-align: center;
  padding: var(--space-lg);
}

.why-choose-card .icon-box {
  margin: 0 auto var(--space-md);
  width: 80px;
  height: 80px;
  font-size: 1.8rem;
}

.why-choose-card h4 {
  font-size: var(--fs-h5);
  margin-bottom: var(--space-xs);
}

.why-choose-card p {
  font-size: var(--fs-small);
  margin-bottom: 0;
}

/* ---------- Health Preview ---------- */
.health-card {
  text-align: center;
  padding: var(--space-md);
}

.health-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.1), rgba(46, 125, 50, 0.03));
  color: var(--clr-primary);
  transition: all var(--transition-base);
}

.premium-card:hover .health-icon {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: white;
  transform: scale(1.1);
}

/* ---------- Manufacturing Preview ---------- */
.mfg-step {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
}

.mfg-step-number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: white;
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-body);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mfg-step-text h5 {
  font-size: var(--fs-body);
  margin-bottom: 2px;
}

.mfg-step-text p {
  font-size: var(--fs-small);
  margin-bottom: 0;
  color: var(--clr-text-muted);
}

/* ---------- Gallery Preview ---------- */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}

.gallery-preview-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-preview-item:nth-child(1) {
  grid-row: span 2;
}

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

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

.gallery-preview-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-preview-item:hover::after {
  opacity: 1;
}

/* ---------- Testimonials ---------- */
.testimonials-section .swiper {
  padding: 30px 10px 60px;
}

.testimonials-section .swiper-pagination-bullet {
  background: var(--clr-primary);
}

.testimonials-section .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: var(--radius-pill);
}


/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }

  .gallery-preview-item:nth-child(5) {
    display: none;
  }
}

@media (max-width: 576px) {
  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 150px);
  }

  .gallery-preview-item:nth-child(1) {
    grid-row: span 1;
  }

  .gallery-preview-item:nth-child(4),
  .gallery-preview-item:nth-child(5) {
    display: none;
  }
}