/* ========== VISUAL ENHANCEMENTS - COLORS & IMAGES ========== */

/* Section Background Colors using logo palette */

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

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

/* Story highlights badges */
.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 grid */
.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 dark 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 styling */
.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 dark 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;
}

/* Partners/Certifications Section - RESPONSIVE FIX */
.partners {
  background: #ffffff;
  padding: 80px 0;
}

.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;  /* Changed from nowrap */
    max-width: 1200px;
    margin: 0 auto;
}

.partners-row img {
  width: 180px;       /* Fixed width */
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: 0.3s ease;
}

.partners-row img:hover {
  transform: scale(1.05);
}

.partners p {
    font-size: 17px;
    color: #555;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 40px;
}

/* Responsive adjustments for certifications */
@media (max-width: 992px) {
  .partners-row img {
    width: 150px;
    max-width: 150px;
  }
}

@media (max-width: 768px) {
  .partners-row {
    gap: 25px;
  }
  
  .partners-row img {
    width: 120px;
    max-width: 120px;
  }
}

@media (max-width: 576px) {
  .partners-row {
    gap: 20px;
  }
  
  .partners-row img {
    width: 100px;
    max-width: 100px;
  }
}

/* ========== GLOBAL MARKET VISUAL ENHANCEMENTS ========== */

/* Product Showcase */
.global-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.showcase-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.showcase-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-image img {
  transform: scale(1.1);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(31, 77, 58, 0.95), transparent);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.showcase-overlay i {
  font-size: 28px;
  color: #c89b3c;
}

.showcase-overlay span {
  font-size: 16px;
  font-weight: 600;
}

.showcase-content {
  padding: 25px;
}

.showcase-content h3 {
  color: #1f4d3a;
  font-size: 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-content h3 i {
  color: #c89b3c;
  font-size: 26px;
}

.showcase-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-highlights span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #555;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #8fbf9f;
}

.showcase-highlights i {
  color: #8fbf9f;
  font-size: 18px;
}

/* Global Reach Section */
.global-reach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px;
  border-radius: 15px;
  margin-top: 30px;
}

.reach-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reach-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.reach-content h3 {
  color: #1f4d3a;
  font-size: 26px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reach-content h3 i {
  color: #c89b3c;
  font-size: 32px;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.market-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  color: #1f4d3a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.market-tags span:hover {
  background: #1f4d3a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 77, 58, 0.2);
}

.market-tags span i {
  color: #c89b3c;
  font-size: 16px;
}

.market-tags span:hover i {
  color: #c89b3c;
}

/* Responsive Design for Global Market */
@media (max-width: 992px) {
  .global-showcase {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .global-reach {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  
  .reach-image {
    order: -1;
  }
  
  .reach-image img {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .showcase-image {
    height: 220px;
  }
  
  .showcase-content {
    padding: 20px;
  }
  
  .showcase-content h3 {
    font-size: 20px;
  }
  
  .global-reach {
    padding: 25px;
  }
  
  .reach-content h3 {
    font-size: 22px;
  }
  
  .market-tags span {
    font-size: 14px;
    padding: 10px 16px;
  }
}

@media (max-width: 576px) {
  .global-showcase {
    gap: 20px;
  }
  
  .showcase-image {
    height: 200px;
  }
  
  .showcase-overlay {
    padding: 15px;
  }
  
  .showcase-overlay span {
    font-size: 14px;
  }
  
  .showcase-highlights span {
    font-size: 14px;
    padding: 8px 12px;
  }
  
  .global-reach {
    padding: 20px;
  }
  
  .reach-image img {
    max-width: 250px;
  }
  
  .reach-content h3 {
    font-size: 20px;
  }
  
  .market-tags {
    gap: 10px;
  }
  
  .market-tags span {
    font-size: 13px;
    padding: 8px 14px;
  }
}

/* ========== PROCESS TIMELINE VISUAL REDESIGN ========== */

/* Process Grid Layout */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.process-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(31, 77, 58, 0.15);
}

.process-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.process-card:hover .process-image img {
  transform: scale(1.15);
}

.process-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #c89b3c 0%, #daa850 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(200, 155, 60, 0.4);
  z-index: 10;
}

.process-info {
  padding: 20px;
  text-align: center;
}

.process-info h3 {
  color: #1f4d3a;
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

.process-info h3 i {
  color: #8fbf9f;
  font-size: 20px;
}

.process-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Process Flow Info Stats */
.process-flow-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 40px;
  background: linear-gradient(135deg, #1f4d3a 0%, #2d6b4f 100%);
  border-radius: 15px;
  margin-top: 40px;
}

.flow-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.flow-stat i {
  font-size: 40px;
  color: #c89b3c;
}

.flow-stat div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flow-stat strong {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.flow-stat span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design for Process Timeline */
@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .process-flow-info {
    gap: 30px;
    padding: 30px;
  }
  
  .flow-stat i {
    font-size: 35px;
  }
  
  .flow-stat strong {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .process-image {
    height: 150px;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
    top: 12px;
    right: 12px;
  }
  
  .process-info {
    padding: 15px;
  }
  
  .process-info h3 {
    font-size: 15px;
  }
  
  .process-info h3 i {
    font-size: 18px;
  }
  
  .process-info p {
    font-size: 13px;
  }
  
  .process-flow-info {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    align-items: center;
  }
  
  .flow-stat {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .process-image {
    height: 200px;
  }
  
  .process-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .flow-stat i {
    font-size: 32px;
  }
  
  .flow-stat strong {
    font-size: 17px;
  }
  
  .flow-stat span {
    font-size: 13px;
  }
}
