/* Local layout styles for the Food Manufacturing subpage */

.food-page-content {
  --color-primary: #F3C6B5;      /* Peach / Salmon Gold */
  --color-primary-hover: #E2B5A4; /* Darker Peach */
  --color-primary-dark: #C39180;  /* Deep Peach */
}

/* BREADCRUMBS */
.breadcrumbs-section {
  background-color: #FFFFFF;
  padding: 24px 24px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.breadcrumbs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
}

.breadcrumb-item {
  color: #4a7ab5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item:hover:not(.active) {
  color: #2b6cb0;
}

.breadcrumb-separator {
  color: #7A4F7A;
  user-select: none;
  font-size: 13.5px;
  margin: 0 4px;
}

.breadcrumb-item.active {
  color: #7A4F7A;
  font-weight: 600;
  pointer-events: none;
}

/* HERO SECTION */
.food-hero-section {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 100px 24px;
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.food-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

.food-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.food-hero-badge-wrapper {
  margin-bottom: 24px;
}

.food-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 6px 16px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.badge-bolt {
  color: #FBBF24;
}

.food-hero-title {
  font-family: 'Kalam', cursive;
  font-size: 3.2rem;
  line-height: 1.25;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.food-hero-subtitle {
  font-family: 'Kalam', cursive;
  font-size: 1.65rem;
  line-height: 1.4;
  color: #FFFFFF;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 840px;
}

.food-hero-description {
  font-family: 'Kalam', cursive;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 760px;
  margin-bottom: 36px;
}

.food-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.food-btn-primary {
  font-family: 'Kalam', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  background-color: #FFFFFF;
  color: var(--color-primary);
  padding: 12px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  border: 1px solid #FFFFFF;
  cursor: pointer;
  text-decoration: none;
}

.food-btn-primary:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.food-btn-secondary {
  font-family: 'Kalam', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  background-color: transparent;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  text-decoration: none;
}

.food-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}
/* INTRO CONTENT SECTION */
.food-intro-section {
  background-color: #FFFFFF;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.food-intro-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.food-section-title {
  font-family: 'Kalam', cursive;
  font-size: 2.3rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  text-align: center;
}

.food-section-p {
  font-family: 'Kalam', cursive;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #556070;
  margin-top: 0;
  margin-bottom: 24px;
}

.food-section-p:last-of-type {
  margin-bottom: 0;
}

/* CUSTOMIZABLE FEATURES GRID SECTION */
.food-features-section {
  background-color: #FAF9FB;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.food-features-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.food-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.food-feature-card {
  background: #FFFFFF;
  border: 1px solid rgba(243, 198, 181, 0.15);
  border-radius: 12px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 4px 15px rgba(243, 198, 181, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

.food-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(243, 198, 181, 0.12);
  border-color: rgba(243, 198, 181, 0.4);
}

.food-card-icon-circle {
  width: 54px;
  height: 54px;
  background-color: rgba(243, 198, 181, 0.12);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.food-feature-card:hover .food-card-icon-circle {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

.food-card-title {
  font-family: 'Kalam', cursive;
  font-size: 1.3rem;
  color: #1F2937;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
}

.food-card-text {
  font-family: 'Kalam', cursive;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #556070;
  margin: 0;
  font-style: italic;
}

/* KEY ADVANTAGES SECTION */
.food-advantages-section {
  background-color: #FFFFFF;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.food-advantages-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.food-advantage-card {
  background: #FFFFFF;
  border: 1px solid rgba(243, 198, 181, 0.15);
  border-radius: 12px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 4px 15px rgba(243, 198, 181, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

.food-advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(243, 198, 181, 0.12);
  border-color: rgba(243, 198, 181, 0.4);
}

.food-advantage-card:hover .food-card-icon-circle {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

/* BENEFITS OF CHOOSING ODOOVIZION SECTION */
.food-benefits-section {
  background-color: #FAF9FB;
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.food-benefits-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.food-benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.food-benefit-card {
  background: #FFFFFF;
  border: 1px solid rgba(243, 198, 181, 0.15);
  border-radius: 12px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  max-width: 280px;
  box-shadow: 0 4px 15px rgba(243, 198, 181, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

.food-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(243, 198, 181, 0.12);
  border-color: rgba(243, 198, 181, 0.4);
}

.food-card-number-circle {
  width: 54px;
  height: 54px;
  background-color: rgba(243, 198, 181, 0.12);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: 'Kalam', cursive;
  font-size: 22px;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.food-benefit-card:hover .food-card-number-circle {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .food-hero-section {
    padding: 70px 16px;
    min-height: auto;
  }
  
  .food-hero-title {
    font-size: 2.3rem;
  }
  
  .food-hero-description {
    font-size: 1.05rem;
    margin-bottom: 28px;
  }
  
  .food-hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .food-btn-primary, .food-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  
  .breadcrumbs-section {
    padding: 16px 16px;
  }
  
  .breadcrumbs {
    font-size: 13.5px;
  }
  
  .food-intro-section {
    padding: 70px 16px;
  }
  
  .food-section-title {
    font-size: 1.95rem;
  }
  
  .food-section-p {
    font-size: 1.08rem;
  }

  .food-features-section {
    padding: 70px 16px;
  }
  
  .food-cards-container {
    gap: 20px;
  }
  
  .food-feature-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 24px 20px;
  }
  
  .food-advantages-section {
    padding: 70px 16px;
  }
  
  .food-advantage-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 24px 20px;
  }
  
  .food-benefits-section {
    padding: 70px 16px;
  }
  
  .food-benefit-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 30px 20px;
  }
}

/* FAQ ACCORDION SECTION */
.food-faq-section {
  background-color: #Faf9fb; /* White background to alternate */
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.food-faq-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.food-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.food-faq-item {
  background-color: #Ffffff;
  border: 1px solid rgba(243, 198, 181, 0.18);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(243, 198, 181, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.food-faq-item:hover {
  border-color: rgba(243, 198, 181, 0.4);
  box-shadow: 0 8px 20px rgba(243, 198, 181, 0.08);
}

.food-faq-item.active {
  border-color: var(--color-primary);
  box-shadow: 0 8px 25px rgba(243, 198, 181, 0.12);
}

.food-faq-question {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-family: 'Kalam', cursive;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.food-faq-chevron {
  font-size: 16px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.food-faq-item.active .food-faq-chevron {
  transform: rotate(180deg);
}

.food-faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.food-faq-answer p {
  padding: 0 28px 24px 28px;
  margin: 0;
  font-family: 'Kalam', cursive;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #556070;
}

/* TESTIMONIALS SLIDER SECTION */
.food-testimonials-section {
  background-color: #Ffffff; /* Soft background to alternate */
  padding: 90px 24px;
  width: 100%;
  box-sizing: border-box;
}

.food-testimonials-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.food-slider-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.food-testimonials-viewport {
  width: calc(100% - 120px);
  overflow: hidden;
}

.food-testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.food-testimonial-card {
  background: #FFFFFF;
  border: 1px solid rgba(243, 198, 181, 0.15);
  border-radius: 12px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  flex: 0 0 calc(33.333% - 20px); /* Exactly 3 cards visible on desktop */
  box-shadow: 0 4px 15px rgba(243, 198, 181, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  min-height: 250px;
}

.food-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(243, 198, 181, 0.12);
  border-color: rgba(243, 198, 181, 0.4);
}

.food-testimonial-text {
  font-family: 'Kalam', cursive;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #556070;
  margin-top: 0;
  margin-bottom: 24px;
}

.food-testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.food-testimonial-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-hover);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Kalam', cursive;
  font-size: 20px;
  font-weight: 700;
  user-select: none;
}

.food-testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.food-testimonial-name {
  font-family: 'Kalam', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 4px 0;
}

.food-testimonial-stars {
  color: #F5A623; /* Gold stars */
  font-size: 12px;
  margin-bottom: 4px;
  display: flex;
  gap: 2px;
}

.food-testimonial-location {
  font-family: 'Kalam', cursive;
  font-size: 0.88rem;
  color: #7A8D9F;
}

.food-slider-arrow {
  width: 44px;
  height: 44px;
  background-color: var(--color-primary);
  border: none;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(243, 198, 181, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.food-slider-arrow:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-50%) scale(1.08);
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}

@media (max-width: 1024px) {
  .food-testimonial-card {
    flex: 0 0 calc(50% - 15px); /* Two columns */
  }
  .food-testimonials-viewport {
    width: calc(100% - 100px);
  }
}

/* RESPONSIVE DESIGN FOR FAQ & TESTIMONIALS */
@media (max-width: 768px) {
  .food-faq-section {
    padding: 70px 16px;
  }
  
  .food-faq-question {
    padding: 18px 20px;
    font-size: 1.12rem;
  }
  
  .food-faq-answer p {
    padding: 0 20px 20px 20px;
    font-size: 1.0rem;
  }

  .food-testimonials-section {
    padding: 70px 16px;
  }
  
  .food-slider-wrapper {
    margin-top: 25px;
  }
  
  .food-testimonials-viewport {
    width: 100%;
  }
  
  .food-testimonial-card {
    flex: 0 0 100%;
    padding: 24px 20px;
    min-height: auto;
  }
  
  .food-slider-arrow {
    display: none;
  }
}

