/* =========================
   RESET BASICO
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
  background-color: #f5f7f6;
  color: #333;
  line-height: 1.6;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
  background-color: #1e8f4f;
  padding: 8px 20px;
  width: 100%;
}

.top-bar-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-social {
  display: flex;
  gap: 15px;
}

.top-bar-social a {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.top-bar-social a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.top-bar-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  display: flex;
  width: 100%;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-left {
  flex: 1;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.logo {
  height: 65px;
  width: auto;
  border-radius: 50%;
}

.navbar-right {
  flex: 3;
  background-color: #1e8f4f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffffff;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* =========================
   HERO CAROUSEL
========================= */
.hero-carousel {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-carousel .carousel-container {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero-carousel .carousel-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.hero-carousel .carousel-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
}

.hero-carousel .slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-carousel .slide-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-carousel .slide-content p {
  font-size: 22px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  max-width: 600px;
  margin: 0 auto;
}

.hero-carousel .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  z-index: 10;
}

.hero-carousel .carousel-btn:hover {
  background: rgba(255,255,255,0.4);
}

.hero-carousel .carousel-prev { left: 20px; }
.hero-carousel .carousel-next { right: 20px; }

.hero-carousel .carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-carousel .carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-carousel .carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

.hero-carousel .hero-btn {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-block;
  padding: 15px 40px;
  background-color: #1e8f4f;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-carousel .hero-btn:hover {
  background-color: #15703d;
  transform: translateX(-50%) scale(1.05);
}

/* =========================
   ESTADISTICAS
========================= */
.stats-section {
  background: linear-gradient(135deg, #1e8f4f 0%, #15703d 100%);
  padding: 60px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  display: inline;
}

.stat-plus {
  font-size: 36px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

.stat-label {
  font-size: 16px;
  margin-top: 10px;
  color: rgba(255,255,255,0.9);
}

/* =========================
   CATEGORIAS DESTACADAS
========================= */
.categories-section {
  padding: 80px 20px;
  background: #f5f7f6;
}

.categories-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.categories-container h2 {
  font-size: 42px;
  color: #1e8f4f;
  margin-bottom: 15px;
}

.categories-intro {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.category-card {
  background: white;
  border-radius: 20px;
  padding: 40px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: #1e8f4f;
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background: linear-gradient(135deg, #1e8f4f 0%, #15703d 100%);
}

.category-icon svg {
  color: #1e8f4f;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon svg {
  color: white;
}

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

.category-card p {
  font-size: 14px;
  color: #666;
}

/* =========================
   SCROLL ANIMATIONS
========================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }

/* =========================
   NOSOTROS
========================= */
.about {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8fdf9 0%, #e8f5ec 50%, #f0f9f3 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(30, 143, 79, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30, 143, 79, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(30, 143, 79, 0.03) 0%, transparent 30%);
  pointer-events: none;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1e8f4f 0%, #15703d 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-header h2 {
  font-size: 42px;
  color: #1e8f4f;
  margin-bottom: 15px;
}

.about-intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

/* SEPARADORES VISUALES */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(30, 143, 79, 0.3), transparent);
  max-width: 200px;
}

.divider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e8f4f 0%, #15703d 100%);
  border-radius: 50%;
  margin: 0 20px;
  color: white;
  box-shadow: 0 4px 15px rgba(30, 143, 79, 0.3);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.about-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.about-card .card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1e8f4f, #2ecc71);
}

.about-card.mission-card .card-accent {
  background: linear-gradient(90deg, #1e8f4f, #27ae60);
}

.about-card.vision-card .card-accent {
  background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(30, 143, 79, 0.15);
}

.about-icon-circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e8f4f 0%, #15703d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 25px rgba(30, 143, 79, 0.3);
  transition: transform 0.3s ease;
}

.about-card:hover .about-icon-circle {
  transform: scale(1.1);
}

.about-icon-circle span {
  color: white;
  font-size: 32px;
  font-weight: 700;
}

.about-card h3 {
  color: #333;
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 700;
}

.about-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* ESTADISTICAS INTEGRADAS EN NOSOTROS */
.about-stats {
  background: linear-gradient(135deg, #1e8f4f 0%, #15703d 100%);
  border-radius: 25px;
  padding: 50px 40px;
  margin-bottom: 50px;
  box-shadow: 0 15px 40px rgba(30, 143, 79, 0.25);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.about-stat-item {
  text-align: center;
  color: white;
}

.stat-icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.about-stat-item:hover .stat-icon-wrapper {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.about-stat-item .stat-number {
  font-size: 48px;
  font-weight: 800;
  display: inline;
}

.about-stat-item .stat-plus {
  font-size: 32px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.about-stat-item .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 5px;
  font-weight: 500;
}

/* =========================
   VALORES DESTACADOS
========================= */
.values-section {
  background: linear-gradient(135deg, #1e8f4f 0%, #15703d 100%);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
}

.values-section h3 {
  color: white;
  font-size: 36px;
  margin-bottom: 10px;
}

.values-intro {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.value-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.value-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.value-icon span {
  color: #1e8f4f;
  font-size: 28px;
  font-weight: 700;
}

.value-card h4 {
  color: white;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.value-card p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   PRODUCTOS CTA
========================= */
.products-cta {
  background: linear-gradient(135deg, #f5f7f6 0%, #e8f5e9 100%);
  padding: 80px 20px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 36px;
  color: #1e8f4f;
  margin-bottom: 20px;
}

.cta-container p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  padding: 18px 50px;
  background-color: #1e8f4f;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 143, 79, 0.3);
}

.cta-btn:hover {
  background-color: #15703d;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 143, 79, 0.4);
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #1a1a2e;
  color: #ffffff;
  padding: 0;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand {
  padding-right: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.footer-logo span {
  font-size: 22px;
  font-weight: 700;
  color: #1e8f4f;
}

.footer-brand p {
  font-size: 14px;
  color: #a0a0a0;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #2d2d44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-link:hover {
  background: #1e8f4f;
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #1e8f4f;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: #1e8f4f;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: #2d2d44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e8f4f;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-info p {
  font-size: 12px;
  color: #666;
  margin: 0 0 2px 0;
}

.contact-info a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #1e8f4f;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 24px;
  background: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.footer-bottom {
  background: #16162a;
  padding: 20px;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #1e8f4f;
}

/* =========================
   FLOATING WHATSAPP BUTTON
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 9999;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  fill: white;
}

/* =========================
   SVG ICONS IN CIRCLES
========================= */
.about-icon-circle svg,
.value-icon svg {
  color: white;
}

.value-icon svg {
  color: #1e8f4f;
}

.contact-icon svg {
  color: #1e8f4f;
}

.footer-social .social-link svg {
  color: white;
}

/* =========================
   CART BUTTON
========================= */
.cart-btn {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  color: white;
  padding: 8px;
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.cart-btn:hover {
  transform: scale(1.1);
}

.cart-btn svg {
  width: 24px;
  height: 24px;
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff6b35;
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.cart-count.hidden {
  display: none;
}

/* =========================
   HAMBURGER MENU
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 6px 15px;
  }
  .top-bar-text {
    font-size: 12px;
  }
  .top-bar-social a {
    width: 28px;
    height: 28px;
  }
  .top-bar-social a svg {
    width: 14px;
    height: 14px;
  }
  .logo {
    height: 55px;
  }
  .navbar {
    flex-wrap: nowrap;
    height: 70px;
    position: relative;
  }
  .navbar-left { 
    order: 1; 
    flex: 1;
    background-color: #ffffff;
  }
  .navbar-right { 
    order: 2; 
    flex: 3;
    background-color: #1e8f4f;
    position: relative;
  }
  .hamburger {
    display: flex;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1e8f4f;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    text-align: center;
    padding: 10px;
    font-size: 16px;
  }
  .about-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .values-section { padding: 40px 15px; }
  .value-card { padding: 25px 15px; }
  .value-card p { font-size: 12px; }
  .value-card h4 { font-size: 16px; }
  .value-icon { width: 50px; height: 50px; }
  .value-icon svg { width: 22px; height: 22px; }
  .about-header h2 { font-size: 32px; }
  .about-card { padding: 30px 20px; }
  .about-card p { font-size: 13px; }
  .about-icon-circle { width: 70px; height: 70px; }
  .about-icon-circle svg { width: 28px; height: 28px; }
  .values-section h3 { font-size: 24px; }
  .section-badge { font-size: 12px; padding: 6px 16px; }
  .section-divider { margin: 30px 0; }
  .divider-icon { width: 40px; height: 40px; }
  .divider-icon svg { width: 18px; height: 18px; }
  .about-stats { padding: 35px 25px; margin-bottom: 40px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .about-stat-item .stat-number { font-size: 36px; }
  .about-stat-item .stat-plus { font-size: 24px; }
  .about-stat-item .stat-label { font-size: 12px; }
  .stat-icon-wrapper { width: 50px; height: 50px; }
  .stat-icon-wrapper svg { width: 22px; height: 22px; }
  .footer-main { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer-brand { grid-column: span 1; text-align: center; padding-right: 0; }
  .footer-logo { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-column { text-align: center; }
  .footer-column h4::after { left: 50%; transform: translateX(-50%); }
  .footer-contact-item { justify-content: center; }
  .footer-bottom-content { flex-direction: column; text-align: center; }
  .footer-column:nth-child(2),
  .footer-column:nth-child(3) { display: none; }
  .hero-carousel .carousel-container { height: 60vh; }
  .hero-carousel .slide-content h1 { font-size: 36px; }
  .hero-carousel .slide-content p { font-size: 16px; }
  .hero-carousel .carousel-btn { width: 40px; height: 40px; }
  .hero-carousel .hero-btn { bottom: 80px; padding: 12px 30px; font-size: 16px; }
  .stats-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: 36px; }
  .stat-plus { font-size: 28px; }
  .stat-label { font-size: 14px; }
  .categories-section { padding: 60px 20px; }
  .categories-container h2 { font-size: 32px; }
  .categories-intro { font-size: 16px; margin-bottom: 30px; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  .category-card { padding: 25px 15px; }
  .category-icon { width: 60px; height: 60px; }
  .category-icon svg { width: 30px; height: 30px; }
  .category-card h3 { font-size: 16px; }
  .category-card p { font-size: 12px; }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 5px 10px;
  }
  .top-bar-text {
    font-size: 11px;
  }
  .top-bar-social {
    gap: 10px;
  }
  .top-bar-social a {
    width: 26px;
    height: 26px;
  }
  .top-bar-social a svg {
    width: 12px;
    height: 12px;
  }
  .logo {
    height: 50px;
  }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .value-card { padding: 20px 10px; }
  .value-card p { font-size: 11px; line-height: 1.4; }
  .value-card h4 { font-size: 14px; }
  .value-icon { width: 45px; height: 45px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .section-badge { font-size: 11px; padding: 5px 14px; }
  .section-divider { margin: 25px 0; }
  .section-divider::before,
  .section-divider::after { max-width: 100px; }
  .divider-icon { width: 35px; height: 35px; margin: 0 12px; }
  .divider-icon svg { width: 16px; height: 16px; }
  .about-stats { padding: 30px 20px; margin-bottom: 30px; border-radius: 20px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .about-stat-item .stat-number { font-size: 28px; }
  .about-stat-item .stat-plus { font-size: 20px; }
  .about-stat-item .stat-label { font-size: 11px; }
  .stat-icon-wrapper { width: 45px; height: 45px; }
  .stat-icon-wrapper svg { width: 20px; height: 20px; }
  .about-icon-circle { width: 60px; height: 60px; }
  .about-icon-circle svg { width: 24px; height: 24px; }
  .about-card h3 { font-size: 20px; }
  .hero-carousel .carousel-container { height: 50vh; }
  .hero-carousel .slide-content h1 { font-size: 28px; }
  .hero-carousel .slide-content p { font-size: 14px; }
  .hero-carousel .carousel-btn { width: 35px; height: 35px; }
  .hero-carousel .carousel-dot { width: 10px; height: 10px; }
  .hero-carousel .hero-btn { bottom: 70px; padding: 10px 25px; font-size: 14px; }
  .stats-section { padding: 40px 15px; }
  .stats-container { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .stat-number { font-size: 28px; }
  .stat-plus { font-size: 22px; }
  .stat-label { font-size: 12px; }
  .categories-section { padding: 40px 15px; }
  .categories-container h2 { font-size: 26px; }
  .categories-intro { font-size: 14px; margin-bottom: 25px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-card { padding: 20px 12px; border-radius: 15px; }
  .category-icon { width: 50px; height: 50px; }
  .category-icon svg { width: 24px; height: 24px; }
  .category-card h3 { font-size: 14px; }
  .category-card p { font-size: 11px; }
}
