/* ================= PRODUCT DETAILS (EXPANDABLE) ================= */
.product-details {
  margin-top: 25px;
}

.details-toggle {
  width: 100%;
  padding: 12px 20px;
  background: #DA8538;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.details-toggle:hover {
  background: #BD671D;
}

.details-toggle i {
  transition: transform 0.3s ease;
}

.details-toggle.active i {
  transform: rotate(180deg);
}

.details-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
}

.details-content.active {
  max-height: 3000px;
  padding: 20px 15px;
}

.details-content h4 {
  color: #DA8538;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 12px;
}

.details-content h4:first-child {
  margin-top: 0;
}

.details-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.details-content ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
  font-size: 14px;
  color: #444;
}

.details-content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #DA8538;
  font-weight: bold;
}

/* ================= TIMELINE SECTION ================= */
.timeline-section {
  background: #f8f9fa;
  padding: 80px 20px;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #DA8538 0%, #BD671D 100%);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-marker {
  position: absolute;
  left: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #DA8538 0%, #BD671D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: white;
  box-shadow: 0 5px 15px rgba(218, 133, 56, 0.3);
  border: 4px solid #f8f9fa;
}

.timeline-content {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.timeline-content h3 {
  color: #DA8538;
  font-size: 20px;
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ================= TESTIMONIALS SECTION ================= */
.testimonials-section {
  background: #ffffff;
  padding: 80px 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.quote-icon {
  font-size: 48px;
  color: #DA8538;
  opacity: 0.2;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #000 !important;
  margin-bottom: 25px;
  font-style: italic;
  font-family: "Open Sans", sans-serif;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  border-top: 2px solid #DA8538;
}

.testimonial-author strong {
  font-size: 17px;
  color: #DA8538;
  margin-bottom: 5px;
}

.testimonial-author span {
  font-size: 14px;
  color: #777;
  font-family: "Open Sans", sans-serif;
}

/* ================= FAQ SECTION ================= */
.faq-section {
  background: #f8f9fa;
  padding: 80px 20px;
}

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

.faq-item {
  background: white;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-question h3 {
  font-size: 18px;
  color: #333;
  margin: 0;
  flex-grow: 1;
  padding-right: 20px;
}

.faq-question i {
  font-size: 20px;
  color: #DA8538;
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.faq-answer.active {
  max-height: 1000px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}

/* ================= SUSTAINABILITY SECTION ================= */
.sustainability-section {
  background: #ffffff;
  padding: 80px 20px;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.sustainability-card {
  text-align: center;
  padding: 35px 25px;
  border-radius: 16px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.sustainability-card:hover {
  transform: translateY(-8px);
  border-color: #DA8538;
  box-shadow: 0 10px 30px rgba(218, 133, 56, 0.15);
}

.sustainability-icon {
  font-size: 52px;
  color: #DA8538;
  margin-bottom: 20px;
}

.sustainability-card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.sustainability-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  font-family: "Open Sans", sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sustainability-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Active nav link */
nav a.active-link {
  color: #DA8538;
  font-weight: 600;
}

/* Section Background Colors */
section#story {
  background: linear-gradient(135deg, #1f4d3a 0%, #2d6b4f 100%) !important;
  color: white;
}

section#story h2,
section#story p {
  color: white;
}

.story-highlights {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.highlight-item i {
  font-size: 24px;
  color: #c89b3c;
}

.highlight-item span {
  font-size: 15px;
  font-weight: 500;
}

.story-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.story-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.story-images img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .story-images {
    grid-template-columns: 1fr;
  }
  .highlight-item {
    font-size: 14px;
  }
}

/* Statistics with green background */
.statistics-section {
  background: #1f4d3a !important;
}

/* Values section with light green */
section#values {
  background: linear-gradient(135deg, #8fbf9f 0%, #a8cfb8 100%) !important;
}

section#values h2,
section#values p,
section#values .features-header p {
  color: #1b1b1b;
}

/* Exports with gold accent */
section.exports {
  background: linear-gradient(135deg, #c89b3c 0%, #d4a850 100%) !important;
}

section.exports h2,
section.exports p {
  color: white;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.product-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333;
}

.product-features i {
  color: #1f4d3a;
  font-size: 18px;
}

/* Timeline with light background */
.timeline-section {
  background: #f8f9fa !important;
}

/* Testimonials with green */
.testimonials-section {
  background: linear-gradient(135deg, #2d6b4f 0%, #1f4d3a 100%) !important;
}

.testimonials-section h2,
.testimonials-section p {
  color: white;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
}

/* FAQ with light green */
.faq-section {
  background: linear-gradient(135deg, #8fbf9f 0%, #a8cfb8 100%) !important;
}

.faq-section h2,
.faq-section > .container > p {
  color: #1b1b1b;
}

/* Sustainability with gold */
.sustainability-section {
  background: linear-gradient(135deg, #c89b3c 0%, #d4a850 100%) !important;
}

.sustainability-section h2,
.sustainability-section > .container > p {
  color: white;
}

.sustainability-card {
  background: rgba(255, 255, 255, 0.95);
}

/* Gallery with dark green */
.gallery-section {
  background: #1f4d3a !important;
}

.gallery-section h2 {
  color: #c89b3c;
}

/* Contact with light background */
.contact-section {
  background: #f8f9fa !important;
}

