/* =====================================================
   JNLFoods — Premium Food Service Consulting Website
   Style: Warm Editorial Luxury
   Colors: Deep Charcoal + Warm Amber/Gold + Cream
   Fonts: Playfair Display (display) + Poppins (body)
===================================================== */

/* ---- CSS Variables ---- */
:root {
  --gold: #C9963A;
  --gold-light: #E8B96A;
  --gold-dark: #A07828;
  --charcoal: #1A1A1A;
  --charcoal-mid: #252525;
  --charcoal-light: #2E2E2E;
  --warm-white: #F9F5EF;
  --cream: #F2EBE0;
  --text-dark: #1A1A1A;
  --text-mid: #5A5A5A;
  --text-light: #9A9A9A;
  --border-light: rgba(201, 150, 58, 0.15);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.16);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- Selection ---- */
::selection {
  background: var(--gold);
  color: #fff;
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-eyebrow.light {
  color: var(--gold-light);
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-eyebrow.light::before {
  background: var(--gold-light);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title.light {
  color: #fff;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.section-body.light {
  color: rgba(255, 255, 255, 0.75);
}

.section-body strong {
  color: var(--text-dark);
  font-weight: 600;
}

.section-header {
  margin-bottom: 10px;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn-primary-gold {
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 150, 58, 0.35);
}

.btn-outline-light-custom {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-outline-light-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  transform: translateY(-2px);
}

.btn-cta-nav {
  background: var(--gold);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-cta-nav:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 150, 58, 0.3);
}

/* =====================================================
   NAVBAR
===================================================== */

#mainNav {
  padding: 20px;
  transition: all 0.4s ease;
  background: transparent;
  z-index: 9999;
}

#mainNav.scrolled {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(12px);
  padding: 15px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  text-decoration: none;
}

.brand-jnl {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.brand-foods {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 2px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 6px 14px !important;
  transition: var(--transition);
  position: relative;
}

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

.nav-link:hover {
  color: #fff !important;
}

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

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


@media (max-width: 767px) {
  #mainNav {
    backdrop-filter: blur(15px);
  }

  .navbar-collapse {
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: var(--radius);
    text-align: right;
  }
}

/* =====================================================
   HERO
===================================================== */
#hero {
  position: relative;
  background: var(--charcoal);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201, 150, 58, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201, 150, 58, 0.06) 0%, transparent 60%),
    linear-gradient(160deg, #1A1A1A 40%, #252525 100%);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  z-index: 2;
  opacity: 0.5;
}

.hero-accent-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 150, 58, 0.12);
  z-index: 1;
  animation: ringPulse 6s ease-in-out infinite;
}

.ring-1 {
  width: 600px;
  height: 600px;
  right: -150px;
  top: -150px;
  animation-delay: 0s;
}

.ring-2 {
  width: 900px;
  height: 900px;
  right: -300px;
  top: -300px;
  animation-delay: 1.5s;
  border-color: rgba(201, 150, 58, 0.06);
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.6;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 0 28px 0 0;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  margin-right: 28px;
}

/* Hero Float Cards */
.hero-card-float {
  position: relative;
  width: 260px;
  height: 380px;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px 22px;
  min-width: 200px;
  animation: floatCard 5s ease-in-out infinite;
}

.float-card-2 {
  animation-delay: 1.2s;
  top: 140px;
  right: -30px;
}

.float-card-3 {
  animation-delay: 2.4s;
  top: 270px;
  right: 20px;
}

@keyframes floatCard {

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

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

.float-card-icon {
  width: 38px;
  height: 38px;
  background: rgba(201, 150, 58, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
}

.float-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.float-card-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  opacity: 0.5;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-arrow {
  font-size: 18px;
  color: var(--gold);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(10px);
    opacity: 0.6;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.scroll-arrow a {
  text-decoration: none;
  color: unset;
}

/* =====================================================
   INTRO STRIP
===================================================== */
.intro-strip {
  background: var(--charcoal-light);
  padding: 52px 0;
}

.strip-inner {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}

.strip-inner p {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
  max-width: 820px;
}

.strip-inner strong {
  color: #fff;
  font-weight: 600;
}

/* =====================================================
   ABOUT
===================================================== */
.section-about {
  padding: 110px 0;
  background: var(--warm-white);
}

.about-visual {
  position: relative;
  height: 480px;
}

.about-bg-block {
  position: absolute;
  top: 30px;
  left: 30px;
  right: -20px;
  bottom: -20px;
  background: var(--cream);
  border-radius: var(--radius);
  z-index: 0;
}

.about-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-icon-main {
  font-size: 80px;
  color: rgba(201, 150, 58, 0.3);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(201, 150, 58, 0.4);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

.about-badge i {
  font-size: 1.4rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.pillar i {
  color: var(--gold);
  font-size: 14px;
}

@media (max-width: 767px) {

  .about-badge {
    bottom: 15px;
    left: 15px;
  }
}


/* =====================================================
   SERVICES
===================================================== */
.section-services {
  padding: 110px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.services-bg-decor {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 150, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-services .section-eyebrow {
  color: var(--gold-light);
}

.section-services .section-eyebrow::before {
  background: var(--gold-light);
}

.section-services .section-title {
  color: #fff;
}

.section-services .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 150, 58, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-featured {
  background: rgba(201, 150, 58, 0.1);
  border-color: rgba(201, 150, 58, 0.3);
}

.service-card-featured:hover {
  background: rgba(201, 150, 58, 0.15);
  border-color: rgba(201, 150, 58, 0.5);
}

.service-card-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.service-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(201, 150, 58, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--gold);
  color: #fff;
}

.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.35;
}

.service-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.service-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.service-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--gold-light);
  gap: 12px;
}

/* =====================================================
   PROCESS
===================================================== */
.section-process {
  padding: 110px 0;
  background: var(--warm-white);
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
  padding-top: 20px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.process-step-num {
  width: 64px;
  height: 64px;
  background: var(--charcoal);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  border: 2px solid rgba(201, 150, 58, 0.2);
  transition: var(--transition);
  flex-shrink: 0;
}

.process-step:hover .process-step-num {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: scale(1.08);
}

.process-step-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.process-step-content p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 140px;
  margin: 0 auto;
}

.process-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 150, 58, 0.3), rgba(201, 150, 58, 0.6));
  margin-top: 30px;
  margin-left: -4px;
  margin-right: -4px;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 8px solid rgba(201, 150, 58, 0.6);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* =====================================================
   INDUSTRIES
===================================================== */
.section-industries {
  padding: 110px 0;
  background: var(--cream);
}

.industry-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  box-shadow: var(--shadow-sm);
}

.industry-card:hover {
  background: var(--charcoal);
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.industry-card:hover .industry-icon {
  color: var(--gold);
  background: rgba(201, 150, 58, 0.12);
}

.industry-card:hover span {
  color: #fff;
}

.industry-icon {
  width: 54px;
  height: 54px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--charcoal);
  margin: 0 auto 16px;
  transition: var(--transition);
}

.industry-card span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

/* =====================================================
   WHY CHOOSE US
===================================================== */
.section-why {
  padding: 110px 0;
  background: var(--charcoal);
}

.why-inner {
  position: relative;
}

.why-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 150, 58, 0.2);
  transform: translateX(6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.why-icon {
  width: 46px;
  height: 46px;
  background: rgba(201, 150, 58, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.why-item h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.7;
}

/* =====================================================
   TESTIMONIALS
===================================================== */
.section-testimonials {
  padding: 110px 0;
  background: var(--warm-white);
}

.testimonial-swiper {
  padding-bottom: 60px !important;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  transition: var(--transition);
  margin: 0 100px;
}

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

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 18px;
  border: 2px solid var(--border-light);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  gap: 4px;
  display: flex;
}

.swiper-pagination-bullet {
  background: var(--text-light) !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--gold) !important;
  background: #fff;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px !important;
  font-weight: 700;
}

.swiper-button-next {
  right: 30px;
}

.swiper-button-prev {
  left: 30px;
}

/* =====================================================
   FAQ
===================================================== */
.section-faq {
  padding: 110px 0;
  background: var(--cream);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark) !important;
  background: #fff !important;
  border: none !important;
  padding: 22px 24px;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: var(--gold) !important;
}

.faq-btn::after {
  filter: none !important;
  color: var(--gold);
}

.faq-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 0 24px 22px;
  background: #fff;
}

/* =====================================================
   CTA BAND
===================================================== */
.section-cta-band {
  padding: 110px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.section-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 150, 58, 0.12) 0%, transparent 65%);
}

.cta-band-grain {
  position: absolute;
  inset: 0;
  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)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px;
}

.cta-band-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-band-headline em {
  font-style: italic;
  color: var(--gold);
}

.cta-band-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* =====================================================
   CONTACT
===================================================== */
.section-contact {
  padding: 110px 0;
  background: var(--warm-white);
}

.contact-info-panel {
  padding: 48px 40px;
  background: var(--charcoal);
  border-radius: var(--radius);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(201, 150, 58, 0.08);
  pointer-events: none;
}

.contact-info-panel .section-title {
  color: #fff;
}

.contact-info-panel .section-body {
  color: rgba(255, 255, 255, 0.6);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(201, 150, 58, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-item .detail-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2px;
}

.contact-detail-item a,
.contact-detail-item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
}

.contact-detail-item a:hover {
  color: var(--gold);
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  font-size: 15px;
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.contact-form-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
}

.form-group-custom {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group-custom label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-control-custom {
  width: 100%;
  padding: 13px 16px;
  background: var(--warm-white);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-control-custom:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 150, 58, 0.12);
  background: #fff;
}

.form-control-custom::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

select.form-control-custom {
  cursor: pointer;
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 120px;
}

.form-success-msg {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-mid);
}

.form-success-msg i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.form-success-msg p {
  font-size: 1rem;
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding-top: 70px;
}

.footer-brand .brand-jnl {
  font-size: 1.5rem;
}

.footer-brand .brand-foods {
  font-size: 1rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 260px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: #fff;
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links li a,
.footer-links li span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links li a:hover {
  color: var(--gold);
}

.footer-top {
  padding-bottom: 50px;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* =====================================================
   BACK TO TOP
===================================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(201, 150, 58, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991px) {
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    min-width: auto;
    width: 100%;
  }

  .process-step-num {
    margin-bottom: 0;
  }

  .process-step-content p {
    max-width: 100%;
  }

  .process-connector {
    display: none;
  }

  .about-visual {
    height: 360px;
    margin-bottom: 20px;
  }

  .contact-form-panel {
    padding: 32px 28px;
  }

  .contact-info-panel {
    padding: 36px 28px;
  }
}

@media (max-width: 767px) {

  .section-about,
  .section-services,
  .section-process,
  .section-industries,
  .section-why,
  .section-testimonials,
  .section-faq,
  .section-cta-band,
  .section-contact {
    padding: 80px 0;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 0;
  }

  .about-visual {
    height: 280px;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

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

  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }

  .contact-info-panel {
    height: auto;
  }

  .testimonial-card {
    margin: 0 12px;
  }


}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.2rem;
  }

  .contact-form-panel {
    padding: 24px 20px;
  }
}