/* ===== FONTS ===== */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap'); */

/* ===== BASIC RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff7b00;
  --secondary-color: #cc6300;
  --accent-color: #ff9500;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #fffaf3;
  --bg-white: #ffffff;
  --shadow: 0 5px 15px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ===== HEADER ===== */
header {
  background-color: var(--bg-white);
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

header img:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: var(--primary-color);
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--secondary-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 101;
  transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, rgba(255,123,0,0.85), rgba(255,149,0,0.75)), url('https://images.unsplash.com/photo-1586201375761-83865001e31c?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 45vh;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  margin-bottom: 20px;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
  transition: opacity 0.3s;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

/* ===== SECTION TITLES ===== */
.section-title {
  color: var(--text-dark);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 60px 20px;
  background-color: var(--bg-white);
  text-align: center;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-dark);
  font-weight: 600;
}

/* ===== ABOUT STORY SECTION ===== */
.about-story {
  padding: 80px 20px;
  background-color: var(--bg-white);
  text-align: center;
}

.story-content {
  max-width: 900px;
  margin: 50px auto 0;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.8;
  color: var(--text-dark);
}

.story-content p {
  margin-bottom: 25px;
  text-align: left;
}

/* ===== BRAND SECTION ===== */
.brand-section {
  padding: 80px 20px;
  background-color: var(--bg-light);
  text-align: center;
}

.brand-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 50px auto 0;
  gap: 50px;
}

.brand-image {
  flex: 1;
  position: relative;
  max-width: 400px;
}

.brand-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.5s ease;
}

.brand-image:hover img {
  transform: scale(1.03);
}

.brand-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--primary-color);
  border-radius: 20px;
  z-index: -1;
}

.brand-text {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.brand-text h3 {
  color: var(--primary-color);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.brand-text p {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  margin-bottom: 20px;
  text-align: left;
}

/* ===== GLOBAL REACH SECTION ===== */
.global-reach {
  padding: 80px 20px;
  background-color: var(--bg-white);
  text-align: center;
}

.reach-container {
  max-width: 1200px;
  margin: 0 auto;
}

.world-map {
  position: relative;
  height: 400px;
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1200&q=80') center/cover;
  border-radius: 20px;
  margin-bottom: 50px;
  box-shadow: var(--shadow);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 123, 0, 0.1);
}

.country-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.country-flag {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  border: 2px solid white;
  flex-shrink: 0;
}

.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* ===== MISSION VISION SECTION ===== */
.mission-vision {
  padding: 80px 20px;
  background-color: var(--bg-light);
  text-align: center;
}

.mission-vision-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 50px auto 0;
  gap: 40px;
}

.mission-vision-item {
  flex: 1;
  background: var(--bg-white);
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mission-vision-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.mission-vision-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.mission-vision-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2em;
  box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
}

.mission-vision-title {
  color: var(--primary-color);
  font-size: clamp(1.3rem, 3.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.mission-vision-description {
  color: var(--text-dark);
  line-height: 1.6;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* ===== VALUES SECTION ===== */
.values {
  padding: 80px 20px;
  background-color: var(--bg-white);
  text-align: center;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.value-item {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
  border-radius: 20px;
  padding: 35px 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(255, 123, 0, 0.1);
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8em;
  box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
  transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
  transform: scale(1.1);
}

.value-title {
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.value-description {
  color: var(--text-dark);
  line-height: 1.5;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
}

/* ===== QUALITY ASSURANCE SECTION ===== */
.quality-assurance {
  padding: 80px 20px;
  background-color: var(--bg-light);
  text-align: center;
}

.quality-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: clamp(1rem, 2.5vw, 1.05rem);
  line-height: 1.8;
  color: var(--text-dark);
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin-bottom: 60px;
}

.product-category {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
  padding: 18px 25px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 123, 0, 0.1);
  font-size: clamp(0.9rem, 2.2vw, 1rem);
}

.product-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background: var(--primary-color);
  color: white;
}

.product-category i {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.quality-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.quality-step {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 123, 0, 0.1);
}

.quality-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.quality-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.quality-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8em;
  box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
}

.quality-title {
  color: var(--primary-color);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.quality-description {
  color: var(--text-dark);
  line-height: 1.6;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
}

.quality-standards {
  margin-top: 60px;
  background: var(--bg-white);
  padding: 40px;
  border-radius: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow);
}

.standards-title {
  color: var(--primary-color);
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.standard-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 123, 0, 0.1);
}

.standard-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.standard-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.2em;
  flex-shrink: 0;
}

.standard-text {
  font-weight: 600;
  color: var(--text-dark);
  font-size: clamp(0.9rem, 2.2vw, 1rem);
}

/* ===== CERTIFICATIONS ===== */
.certifications {
  background-color: var(--bg-white);
  padding: 80px 20px;
  text-align: center;
}

.certifications p {
  max-width: 800px;
  margin: 20px auto 50px;
  color: var(--text-dark);
  line-height: 1.7;
  font-size: clamp(1rem, 2.5vw, 1.05rem);
}

.certification-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
  justify-items: center;
}

.certification-item {
  transition: all 0.3s ease;
  padding: 20px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
  border-radius: 15px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 123, 0, 0.1);
}

.certification-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.certification-logos img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* ===== FOOTER ===== */
    footer {
      background-color: #333;
      color: white;
      padding: 60px 5% 20px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto 40px;
      width: 100%;
      box-sizing: border-box;
    }

    .footer-section {
      flex: 1;
      min-width: 250px;
      margin-bottom: 30px;
      padding-right: 30px;
      box-sizing: border-box;
    }

    .footer-section h3 {
      color: var(--primary-color);
      font-size: 1.3em;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-section h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background-color: var(--primary-color);
    }

    .footer-section p,
    .footer-section ul {
      color: #ccc;
      line-height: 1.8;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 10px;
      transition: transform 0.3s ease;
    }

    .footer-section ul li:hover {
      transform: translateX(5px);
    }

    .footer-section a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-section a:hover {
      color: var(--primary-color);
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--primary-color);
      transform: translateY(-5px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #aaa;
      font-size: 0.9em;
      width: 100%;
      box-sizing: border-box;
    }
/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
}

.whatsapp-btn.active {
  opacity: 1;
  visibility: visible;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  background-color: #128C7E;
}

.whatsapp-btn i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== MOBILE MENU OVERLAY ===== */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== RESPONSIVE DESIGN ===== */
/* Add this media query for laptop view */
@media (min-width: 992px) {
  .countries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .mission-vision-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .brand-container {
    flex-direction: column;
    gap: 30px;
  }

  .quality-process {
    grid-template-columns: 1fr;
  }

  .values-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 20px;
  }

  .mobile-menu-btn {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 99;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  nav a {
    margin: 15px 0;
    font-size: 1.2em;
    width: 100%;
  }

  .page-banner {
    height: 35vh;
    min-height: 300px;
  }

  .page-banner h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .world-map {
    height: 250px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* WhatsApp button adjustments for mobile */
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.6em;
  }
  
  .back-to-top {
    bottom: 85px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .page-banner h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 25px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-item {
    padding: 25px 15px;
  }

  .countries-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .country-item {
    padding: 15px 12px;
    gap: 12px;
  }

  .country-flag {
    width: 35px;
    height: 35px;
  }

  .values-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .value-item {
    padding: 25px 15px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    font-size: 1.5em;
  }

  .mission-vision-container {
    gap: 20px;
  }

  .mission-vision-item {
    padding: 30px 20px;
  }

  .mission-vision-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    font-size: 1.5em;
  }

  .product-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-category {
    padding: 15px 20px;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  }

  .quality-step {
    padding: 25px 20px;
  }

  .quality-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    font-size: 1.5em;
  }

  .certification-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .certification-item {
    padding: 15px;
  }

  .certification-logos img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 380px) {
  .country-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px;
  }

  .country-flag {
    width: 30px;
    height: 30px;
  }

  .country-name {
    font-size: 0.85rem;
  }

  .stat-number {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .value-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3em;
  }

  .mission-vision-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3em;
  }

  .quality-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3em;
  }
}