/* =============================================
   GREEN ERA FERTILIZERS — MAIN STYLESHEET
   Premium Agricultural Company Website
   ============================================= */

/* === CSS Custom Properties === */
:root {
  --primary-dark: #14532d;
  --primary: #1a5632;
  --primary-light: #2e7d32;
  --primary-lighter: #4caf50;
  --primary-pale: #e8f5e9;
  --accent: #e8a317;
  --accent-light: #f5a623;
  --accent-pale: #fef3c7;
  --dark: #1a2332;
  --dark-light: #2a3442;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --white: #ffffff;
  --light-bg: #f5f7f4;
  --off-white: #fafdf8;
  --border: #e0e0e0;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --nav-height: 80px;
}

/* === Reset & Base === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* === Container & Layout === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '—';
  margin: 0 8px;
  color: var(--accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .highlight {
  color: var(--primary-light);
}

.section-description {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

.btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(26, 86, 50, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(26, 86, 50, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-hero-white {
  background: #ffffff;
  color: #14532d;
  border: 2px solid rgba(20, 83, 45, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  font-weight: 700;
}

.btn-hero-white i {
  color: #16a34a;
}

.btn-hero-white:hover {
  background: #14532d;
  color: #ffffff;
  border-color: #14532d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20, 83, 45, 0.3);
}

.btn-hero-white:hover i {
  color: #ffffff;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(232, 163, 23, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232, 163, 23, 0.4);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 14px;
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 18px;
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
  border-radius: 8px;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-light);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-light);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--primary-pale);
  transition: var(--transition);
}

.nav-phone:hover {
  background: var(--primary);
  color: var(--white);
}

.nav-phone i {
  font-size: 14px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
  transform-origin: center;
}

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

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

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

/* Mobile Navigation */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: var(--white);
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 100px 30px 30px;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  border-radius: 12px;
  transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: var(--primary-pale);
  color: var(--primary);
}

.mobile-nav-links a i {
  width: 20px;
  text-align: center;
  color: var(--primary-light);
}

.mobile-nav-contact {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-light);
  font-size: 14px;
}

.mobile-nav-contact a i {
  color: var(--primary-light);
  width: 20px;
  text-align: center;
}

/* === Hero Section === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/hero-bg.png') top right / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Elegant Hero Overlay for Optimal Text Contrast */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.95) 32%,
    rgba(255, 255, 255, 0.82) 52%,
    rgba(255, 255, 255, 0.35) 75%,
    rgba(255, 255, 255, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
  padding-top: 80px;
}

.hero-content {
  padding: 40px 0;
  position: relative;
  z-index: 5;
}

.hero-tagline {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #15803d;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.95);
}

.hero-tagline::before {
  content: '';
  width: 30px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.95);
}

.hero-title .accent {
  color: #d97706;
  position: relative;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}

.hero-title .green {
  color: #166534;
}

.hero-description {
  font-size: 17.5px;
  color: #1e293b;
  font-weight: 500;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 520px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.95);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

/* Hero Product Carousel */
.hero-slider {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.94) translateY(12px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.hero-product-img {
  max-height: 320px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.2));
  animation: heroFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.hero-slide-badge {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(26, 86, 50, 0.15);
  color: #1a5632;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.hero-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  position: relative;
  z-index: 5;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26, 86, 50, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: #1a5632;
  width: 28px;
  border-radius: 6px;
}

.hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pulse 3s ease-in-out infinite;
}

/* Hero Floating Badges - Shifted right by 10pt (14px) */
.hero-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(26, 86, 50, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  white-space: nowrap;
  animation: badgeFloat 5s ease-in-out infinite;
}

.hero-badge:nth-child(2) { animation-delay: 0.5s; }
.hero-badge:nth-child(3) { animation-delay: 1s; }
.hero-badge:nth-child(4) { animation-delay: 1.5s; }

.hero-badge i {
  font-size: 18px;
  color: var(--primary-light);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: 10px;
}

.hero-badge span {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

/* Badges shifted right by 10pt (+14px) */
.hero-badge.badge-1 { top: 4%; right: calc(-20% - 14px); }
.hero-badge.badge-2 { top: 29%; right: calc(-25% - 14px); }
.hero-badge.badge-3 { bottom: 29%; right: calc(-22% - 14px); }
.hero-badge.badge-4 { bottom: 4%; right: calc(-15% - 14px); }

/* === Stats Section === */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 12px;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* === Product Slideshow Section === */
.slideshow-section {
  background: var(--light-bg);
  padding: 100px 0;
}

.slideshow-section .swiper {
  padding: 20px 10px 60px;
}

.slide-product {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.slide-product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.slide-product-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--primary-pale) 100%);
  overflow: hidden;
}

.slide-product-image img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.slide-product:hover .slide-product-image img {
  transform: scale(1.08);
}

.slide-product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.slide-product-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.slide-product-info p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  flex: 1;
}

.slide-product-info .product-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  width: fit-content;
}

/* Swiper Custom Styles */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--primary-light);
  opacity: 0.3;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  color: var(--primary) !important;
  transition: var(--transition);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);
  color: var(--white) !important;
  box-shadow: var(--shadow-lg);
}

/* === Features / Why Choose Us === */
.features-section {
  background: var(--white);
}

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

.feature-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-pale) 0%, rgba(76, 175, 80, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--primary-light);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* === Product Categories === */
.categories-section {
  background: var(--light-bg);
}

.categories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

.categories-header .section-header {
  text-align: left;
  margin-bottom: 0;
}

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

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.category-card-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--primary-pale) 100%);
  position: relative;
  overflow: hidden;
}

.category-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.category-card:hover .category-card-image::after {
  transform: scaleX(1);
}

.category-card-image img {
  max-height: 160px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card-image img {
  transform: scale(1.1);
}

.category-card-content {
  padding: 24px;
}

.category-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.category-card-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-light);
}

.card-link i {
  transition: transform 0.3s ease;
}

.category-card:hover .card-link i {
  transform: translateX(5px);
}

/* === CTA Section === */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 60%, var(--primary) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(232, 163, 23, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-title .accent {
  color: var(--accent);
}

.cta-description {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Page Banner === */
.page-banner {
  height: 380px;
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.92) 0%, rgba(26, 86, 50, 0.88) 100%),
    url('../assets/images/bg-hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 0;
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* === About Page === */
.about-story {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-image-badge .badge-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.about-image-badge .badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.3;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 15px;
}

.about-text p strong {
  color: var(--text);
}

/* Portfolio List */
.portfolio-list {
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.portfolio-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
}

.portfolio-list li i {
  color: var(--primary-light);
  font-size: 16px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: 6px;
  flex-shrink: 0;
}

/* Approach Section */
.approach-section {
  background: var(--light-bg);
}

/* Brands Showcase Grid on About Page */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.brand-card {
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--primary-pale);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.brand-card .feature-icon {
  margin-bottom: 16px;
}

.brand-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.brand-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.5;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.approach-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-light);
  transition: var(--transition);
}

.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.approach-card .approach-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.approach-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.approach-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Commitment Section */
.commitment-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 90px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.commitment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
}

.commitment-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

.commitment-pillars {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.commitment-pillar {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
  padding: 7px 18px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  backdrop-filter: blur(5px);
}

.commitment-pillar:not(:last-child)::after {
  display: none !important;
}

.commitment-quote {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.95);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.commitment-tagline {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.commitment-pillar {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  position: relative;
}

.commitment-pillar:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -18px;
  color: rgba(255, 255, 255, 0.5);
}

.commitment-quote {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
}

.commitment-tagline {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}

/* Reach Section */
.reach-section {
  background: var(--white);
}

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

.reach-item {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--light-bg);
  transition: var(--transition);
  border: 2px solid transparent;
}

.reach-item:hover {
  border-color: var(--primary-light);
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.reach-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-pale) 0%, rgba(76, 175, 80, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-light);
  margin: 0 auto 18px;
}

.reach-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.reach-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* === Products Page === */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: 30px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(26, 86, 50, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-card-image {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--primary-pale) 100%);
  position: relative;
  overflow: hidden;
}

.product-card-image img {
  max-height: 210px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-info {
  padding: 22px;
}

.product-card-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.product-card-info p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}

.category-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card.hidden {
  display: none;
}

/* === Product Modal === */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  padding: 40px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-slow);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text);
  transition: var(--transition);
}

.modal-close:hover {
  background: #ff4444;
  color: var(--white);
}

.modal-image {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--primary-pale) 100%);
  border-radius: var(--radius);
}

.modal-image img {
  max-height: 280px;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.modal-details h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.modal-details .category-tag {
  margin-bottom: 16px;
}

.modal-details p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

/* === Contact Page === */
.contact-info-section {
  background: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.contact-info-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--light-bg);
  transition: var(--transition);
  border: 2px solid transparent;
}

.contact-info-card:hover {
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.contact-info-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  margin: 0 auto 20px;
}

.contact-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-info-card a {
  color: var(--primary-light);
  font-weight: 600;
}

.contact-info-card a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form-section {
  background: var(--light-bg);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.form-group label .required {
  color: #e53e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-submit {
  margin-top: 10px;
}

.form-submit .btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

.form-status {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 10px;
}

.form-status.success {
  display: flex;
  background: var(--primary-pale);
  color: var(--primary);
}

.form-status.error {
  display: flex;
  background: #fef2f2;
  color: #dc2626;
}

/* Map */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 500px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

/* === Footer === */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-about {
  padding-right: 20px;
}

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

.footer-logo img {
  height: 45px;
  width: auto;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-links a i {
  font-size: 10px;
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 16px;
  margin-top: 3px;
  width: 20px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* === Keyframe Animations === */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

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

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.6; }
}

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

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Loading spinner */
.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(26, 86, 50, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* WhatsApp Float & Popup */
.whatsapp-float {
  position: fixed;
  bottom: 14px;
  left: 14px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 9999;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: waPulse 2.5s ease-in-out infinite;
  text-decoration: none;
}

.whatsapp-float i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -1px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

@keyframes waPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.65);
  }
}

.wa-tooltip {
  position: absolute;
  left: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  color: #1a5632;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(26, 86, 50, 0.15);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.wa-tooltip::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 6px 6px 0;
  border-style: solid;
  border-color: transparent #ffffff transparent transparent;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(3px);
}

/* === Utility Classes === */
.text-center { text-align: center; }
.text-primary { color: var(--primary-light); }
.text-accent { color: var(--accent); }
.mb-0 { margin-bottom: 0; }

/* === Responsive Design === */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-badge {
    padding: 10px 14px;
  }

  .hero-badge span {
    font-size: 12px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .section {
    padding: 70px 0;
  }

  .nav-links,
  .nav-cta .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    padding-top: 20px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-tagline {
    justify-content: center;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-badge {
    display: none;
  }

  .hero-image-wrapper {
    max-width: 300px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-item:nth-child(3)::after {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .reach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .section-title {
    font-size: 34px;
  }

  .categories-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .categories-header .section-header {
    text-align: center;
    width: 100%;
  }

  .categories-header .btn {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item::after {
    display: none !important;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .about-image {
    max-height: 380px;
    width: 100%;
  }

  .about-image img {
    max-height: 380px;
    object-fit: cover;
    width: 100%;
  }

  .about-image-badge {
    bottom: 12px;
    left: 12px;
    padding: 10px 16px;
    max-width: calc(100% - 24px);
  }

  .about-image-badge .badge-number {
    font-size: 24px;
  }

  .about-image-badge .badge-text {
    font-size: 11.5px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .page-banner {
    height: 280px;
  }

  .page-banner h1 {
    font-size: 36px;
  }

  .cta-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 30px;
  }

  .portfolio-list {
    grid-template-columns: 1fr;
  }

  .commitment-pillars {
    gap: 10px;
  }

  .commitment-pillar {
    font-size: 13px;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 20px;
  }

  .commitment-pillar:not(:last-child)::after {
    display: none;
  }

  .commitment-quote {
    font-size: 22px;
  }

  .modal-content {
    padding: 24px;
  }

  .filter-tabs {
    gap: 8px;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .about-grid {
    gap: 30px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .nav-logo img {
    height: 40px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .reach-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }

  .wa-tooltip {
    display: none;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
