@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #198754;
  --primary-dark: #14532d;
  --primary-rgb: 25, 135, 84;
  --accent: #84cc16;
  --accent-rgb: 132, 204, 22;
  --light-green: #e9f7ef;
  --dark: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gradient-primary: linear-gradient(135deg, #198754 0%, #14532d 100%);
  --gradient-accent: linear-gradient(135deg, #84cc16 0%, #198754 100%);
  --gradient-hero: linear-gradient(135deg, #0a1f0e 0%, #14532d 40%, #198754 100%);
  --gradient-dark: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

::selection { background: var(--primary); color: var(--white); }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

/* ===== UTILITY ===== */
.text-gradient { background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-primary { color: var(--primary) !important; }
.bg-primary { background: var(--primary) !important; }
.bg-light-green { background: var(--light-green); }
.bg-dark-section { background: var(--gradient-dark); }
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }

.section-title-wrap { margin-bottom: 60px; }
.section-title-wrap .subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--light-green);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title-wrap .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title-wrap .section-desc {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}
.section-title-wrap.text-center .section-desc { margin: 0 auto; }

/* ===== NAVBAR ===== */
.navbar {
  padding: 18px 0;
  transition: var(--transition);
  z-index: 1050;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.08);
  padding: 10px 0;
}
.navbar .navbar-brand {
  font-weight: 800;
  font-size: 26px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar.scrolled .navbar-brand {
  color: var(--primary-dark);
}
.navbar .navbar-brand i {
  font-size: 32px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}
.navbar .navbar-brand .brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.navbar .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 18px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.navbar.scrolled .nav-link {
  color: var(--dark) !important;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,.12);
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--primary) !important;
  background: var(--light-green);
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.navbar.scrolled .nav-link::after { background: var(--primary); }
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }

.navbar .nav-cta {
  background: var(--gradient-accent);
  color: var(--white) !important;
  padding: 10px 28px !important;
  border-radius: 50px;
  font-weight: 600;
  margin-left: 10px;
}
.navbar .nav-cta::after { display: none; }
.navbar .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(132,204,22,.35);
}

.navbar-header-row { display: flex; align-items: center; gap: 12px; }
.navbar-header-row .navbar-brand { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.navbar-header-row .navbar-toggler { flex-shrink: 0; }

.navbar-toggler {
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  position: relative;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler .toggler-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px auto;
  transition: var(--transition);
  border-radius: 4px;
}
.navbar.scrolled .navbar-toggler .toggler-icon { background: var(--dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 90px;
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge i { color: var(--accent); }
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-accent);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(132,204,22,.35);
  color: var(--white);
}
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-3px);
}

.hero-trust { margin-top: 48px; }
.hero-trust p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-trust .badges {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-trust .badges span {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust .badges span i { color: var(--accent); font-size: 18px; }

/* Animated Shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
}
.hero-shape-1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -200px; right: -200px;
  animation: floatA 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 400px; height: 400px;
  background: var(--primary);
  bottom: -100px; left: -100px;
  animation: floatB 10s ease-in-out infinite;
}
.hero-shape-3 {
  width: 200px; height: 200px;
  background: var(--accent);
  top: 40%; right: 15%;
  animation: floatA 6s ease-in-out infinite reverse;
}
.hero-shape-4 {
  width: 150px; height: 150px;
  background: var(--primary);
  bottom: 20%; left: 10%;
  animation: floatB 7s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.05); }
}

/* Hero right visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-inner {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132,204,22,.15) 0%, transparent 70%);
  position: relative;
  animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.05); opacity: 1; }
}
.hero-visual-inner i {
  font-size: 120px;
  color: var(--accent);
  opacity: .3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-stats-mini {
  position: absolute;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.hero-stats-mini .num { font-size: 24px; font-weight: 800; color: var(--accent); }
.hero-stats-mini .label { font-size: 12px; opacity: .7; }
.hero-stats-mini-1 { top: 10%; right: 0; animation: floatA 6s ease-in-out infinite; }
.hero-stats-mini-2 { bottom: 15%; left: 0; animation: floatB 7s ease-in-out infinite; }

/* ===== SECTION STYLES ===== */
.section-bg-light { background: var(--gray-100); }
.section-bg-green { background: var(--light-green); }
.section-bg-dark { background: var(--dark); color: var(--white); }

/* ===== ABOUT PREVIEW ===== */
.about-preview-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-preview-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.about-preview-image:hover img { transform: scale(1.03); }
.about-preview-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-preview-image .experience-badge .num {
  font-size: 36px;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.about-preview-image .experience-badge .txt {
  font-size: 13px;
  opacity: .9;
}

/* ===== WHY CHOOSE US ===== */
.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--gray-200);
  text-align: center;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.why-card .icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--primary);
  transition: var(--transition);
}
.why-card:hover .icon-wrap {
  background: var(--gradient-accent);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}
.why-card h5 { font-weight: 700; margin-bottom: 12px; font-size: 18px; }
.why-card p { font-size: 14px; color: var(--muted); margin: 0; }

/* ===== PRODUCT CATEGORIES ===== */
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  display: block;
  cursor: pointer;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.category-card:hover img { transform: scale(1.08); }
.category-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}
.category-card .overlay h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 6px;
}
.category-card .overlay span {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.category-card:hover .overlay { padding-bottom: 36px; }
.category-card-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  font-size: 64px;
  color: rgba(255,255,255,.3);
  transition: var(--transition);
}
.category-card:hover .category-card-icon { transform: scale(1.08); }

/* ===== FEATURED PRODUCTS ===== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card .card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .card-img img { transform: scale(1.06); }
.product-card .card-img .badge-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gradient-accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
}
.product-card .card-body { padding: 24px; }
.product-card .card-body h5 {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
}
.product-card .card-body p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .card-body .btn-sm-custom {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-card .card-body .btn-sm-custom:hover { gap: 12px; }

/* ===== INDUSTRIES ===== */
.industry-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.industry-card .icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--primary);
  transition: var(--transition);
}
.industry-card:hover .icon-wrap {
  background: var(--primary);
  color: var(--white);
}
.industry-card h6 { font-weight: 600; font-size: 15px; margin: 0; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gray-200);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item .timeline-content {
  position: relative;
  width: calc(50% - 40px);
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.timeline-item:nth-child(odd) .timeline-content { margin-left: auto; }
.timeline-item:nth-child(even) .timeline-content { margin-right: auto; }
.timeline-item .timeline-dot {
  position: absolute;
  left: 50%;
  top: 36px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border: 4px solid var(--light-green);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.timeline-item .timeline-content .step {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.timeline-item .timeline-content h5 { font-weight: 700; margin-bottom: 8px; }
.timeline-item .timeline-content p { font-size: 14px; color: var(--muted); margin: 0; }

/* ===== STATS COUNTER ===== */
.stats-section {
  background: var(--gradient-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,.07)"/><circle cx="50" cy="30" r="3" fill="rgba(255,255,255,.05)"/><circle cx="80" cy="70" r="2" fill="rgba(255,255,255,.06)"/><circle cx="30" cy="80" r="4" fill="rgba(255,255,255,.04)"/></svg>');
  background-size: 200px 200px;
}
.stat-item { text-align: center; color: var(--white); position: relative; z-index: 1; }
.stat-item .num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .num .suffix { font-size: 2rem; }
.stat-item .label {
  font-size: 15px;
  opacity: .8;
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testimonial-card .quote-icon {
  font-size: 40px;
  color: var(--primary);
  opacity: .15;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card .author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card .author .name { font-weight: 700; font-size: 15px; }
.testimonial-card .author .role { font-size: 13px; color: var(--muted); }
.testimonial-card .stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }

/* ===== FAQ ===== */
.faq-accordion .accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  padding: 20px 24px;
  background: var(--white);
  box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--light-green);
  color: var(--primary);
}
.faq-accordion .accordion-button::after {
  background-size: 16px;
  transition: var(--transition);
}
.faq-accordion .accordion-body {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient-hero);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(132,204,22,.1) 0%, transparent 60%);
}
.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
}
.cta-section .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding-top: 80px;
}
.footer h5 {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 4px;
}
.footer p { font-size: 14px; line-height: 1.8; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer ul li a i { font-size: 12px; color: var(--accent); }

.footer .contact-info li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
}
.footer .contact-info li i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 4px;
  width: 20px;
}

.footer .newsletter-form .input-group {
  background: rgba(255,255,255,.08);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.footer .newsletter-form .form-control {
  background: transparent;
  border: none;
  color: var(--white);
  padding: 12px 20px;
  font-size: 14px;
}
.footer .newsletter-form .form-control::placeholder { color: rgba(255,255,255,.4); }
.footer .newsletter-form .form-control:focus { box-shadow: none; }
.footer .newsletter-form .btn-subscribe {
  background: var(--gradient-accent);
  color: var(--white);
  border: none;
  padding: 0 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.footer .newsletter-form .btn-subscribe:hover {
  background: var(--primary);
}

.footer .social-links { display: flex; gap: 10px; margin-top: 20px; }
.footer .social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 18px;
  transition: var(--transition);
}
.footer .social-links a:hover {
  background: var(--gradient-accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  margin-top: 60px;
  font-size: 13px;
  text-align: center;
}

/* ===== BREADCRUMBS ===== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--gradient-hero);
  overflow: hidden;
}
.page-hero h1 {
  color: var(--white);
  font-weight: 800;
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.page-hero .breadcrumb .breadcrumb-item { color: rgba(255,255,255,.6); font-size: 15px; }
.page-hero .breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.8); }
.page-hero .breadcrumb .breadcrumb-item a:hover { color: var(--accent); }
.page-hero .breadcrumb .breadcrumb-item.active { color: var(--accent); }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ===== ABOUT PAGE SPECIFIC ===== */
.mission-vision-card {
  padding: 36px;
  border-radius: var(--radius-md);
  height: 100%;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  background: var(--white);
}
.mission-vision-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.mission-vision-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
}
.mission-vision-card h5 { font-weight: 700; margin-bottom: 12px; }
.mission-vision-card p { font-size: 14px; color: var(--muted); }
.mission-vision-card ul { list-style: none; padding: 0; }
.mission-vision-card ul li {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mission-vision-card ul li i { color: var(--primary); }

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.team-card .team-info { padding: 20px; }
.team-card .team-info h5 { font-weight: 700; margin-bottom: 4px; }
.team-card .team-info span { font-size: 13px; color: var(--muted); }

/* ===== PRODUCTS PAGE ===== */
.filter-bar {
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 32px;
}
.filter-bar .search-box {
  position: relative;
}
.filter-bar .search-box input {
  padding-left: 44px;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  height: 48px;
  font-size: 14px;
}
.filter-bar .search-box input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(25,135,84,.12); }
.filter-bar .search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}
.filter-bar .filter-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-bar .filter-btns .btn-filter {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-bar .filter-btns .btn-filter:hover,
.filter-bar .filter-btns .btn-filter.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Pagination */
.pagination-custom { display: flex; justify-content: center; gap: 6px; margin-top: 48px; }
.pagination-custom .page-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px !important;
  border: 1px solid var(--gray-200);
  color: var(--dark);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  background: var(--white);
}
.pagination-custom .page-link:hover,
.pagination-custom .page-link.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== PRODUCT DETAIL ===== */
.product-gallery .main-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}
.product-gallery .main-img img {
  width: 100%;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.product-gallery .thumb-list { display: flex; gap: 12px; }
.product-gallery .thumb-list .thumb {
  width: 100px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: .6;
  transition: var(--transition);
  border: 2px solid transparent;
}
.product-gallery .thumb-list .thumb:hover,
.product-gallery .thumb-list .thumb.active { opacity: 1; border-color: var(--primary); }
.product-gallery .thumb-list .thumb img { width: 100%; height: 100%; object-fit: cover; }

.spec-table { width: 100%; }
.spec-table tr { border-bottom: 1px solid var(--gray-200); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 14px 0; font-size: 14px; }
.spec-table td:first-child { font-weight: 600; color: var(--dark); width: 40%; }
.spec-table td:last-child { color: var(--muted); }

.inquiry-form .form-control,
.inquiry-form .form-select {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  font-size: 14px;
  transition: var(--transition);
}
.inquiry-form .form-control:focus,
.inquiry-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(25,135,84,.12);
}
.inquiry-form textarea { min-height: 120px; resize: vertical; }

/* ===== CONTACT PAGE ===== */
.contact-info-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
  text-align: center;
}
.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.contact-info-card .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--primary);
}
.contact-info-card h6 { font-weight: 700; margin-bottom: 8px; }
.contact-info-card p { font-size: 14px; color: var(--muted); margin: 0; }

.map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--muted);
  font-size: 18px;
}
.map-placeholder i { font-size: 64px; margin-bottom: 16px; opacity: .3; }

/* ===== GLASSMORPHISM ===== */
.glass-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 32px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .hero-visual-inner { width: 320px; height: 320px; }
  .hero-visual-inner i { font-size: 80px; }
  .hero-stats-mini { display: none; }
}
@media (max-width: 991px) {
  .navbar { background: rgba(255,255,255,.97); backdrop-filter: blur(20px); box-shadow: 0 4px 30px rgba(0,0,0,.08); }
  .navbar .navbar-brand { color: var(--primary-dark); }
  .navbar .nav-link { color: var(--dark) !important; padding: 10px 18px !important; }
  .navbar .navbar-toggler .toggler-icon { background: var(--dark); }
  .navbar .nav-cta { margin-left: 0; margin-top: 4px; display: block; text-align: center; width: 100%; }
  .navbar > .container { flex-wrap: wrap; }
  .navbar-header-row { display: flex; align-items: center; justify-content: space-between; width: 100%; }
  .navbar-collapse { max-height: 70vh; overflow-y: auto; padding: 12px 0; flex-basis: 100%; }
  .navbar-collapse .navbar-nav { gap: 2px; }

  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.2rem; }

  .section-padding { padding: 60px 0; }
  .section-title-wrap .section-title { font-size: 2rem; }
  .section-title-wrap { margin-bottom: 40px; }

  .timeline::before { left: 30px; }
  .timeline-item .timeline-content { width: calc(100% - 60px); margin-left: 60px !important; }
  .timeline-item .timeline-dot { left: 30px; }

  .category-card { height: 200px; }

  .product-gallery .thumb-list { gap: 8px; overflow-x: auto; padding-bottom: 4px; }
  .product-gallery .thumb-list .thumb { min-width: 80px; }

  .spec-table td:first-child { width: 50%; }

  .page-hero { padding: 130px 0 60px; }
  .page-hero h1 { font-size: 2.2rem; }

  .testimonial-card { padding: 28px; }

  .footer { padding-top: 60px; }
  .footer h5 { margin-bottom: 16px; }
}
@media (max-width: 767px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-trust { margin-top: 32px; }
  .hero-trust .badges { gap: 16px; }
  .btn-primary-custom, .btn-outline-custom { width: 100%; justify-content: center; }

  .section-title-wrap .section-title { font-size: 1.6rem; }
  .section-padding { padding: 48px 0; }
  .section-title-wrap { margin-bottom: 32px; }

  .stat-item .num { font-size: 2rem; }
  .stat-item .num .suffix { font-size: 1.5rem; }
  .stat-item { margin-bottom: 24px; }
  .stats-section { padding: 60px 0; }

  .cta-section h2 { font-size: 1.8rem; }
  .cta-section { padding: 60px 0; }

  .product-card .card-img { height: 180px; }
  .product-card .card-body { padding: 18px; }
  .product-card .card-body h5 { font-size: 15px; }

  .category-card { height: 160px; }
  .category-card .overlay { padding: 20px; }
  .category-card .overlay h4 { font-size: 17px; }

  .page-hero h1 { font-size: 1.8rem; }

  .filter-bar { padding: 16px; }
  .filter-bar .filter-btns { margin-top: 12px; }
  .filter-bar .search-box { margin-bottom: 12px; }

  .timeline-item .timeline-content { padding: 20px; }
  .timeline-item .timeline-content h5 { font-size: 16px; }

  .about-preview-image .experience-badge { position: relative; bottom: auto; right: auto; margin-top: -40px; }

  .testimonial-card { padding: 24px; }
  .testimonial-card .quote-icon { font-size: 32px; }

  .team-card img { height: 200px; }

  .contact-info-card { padding: 24px; }
  .map-placeholder { height: 250px; }

  .inquiry-form { padding: 24px !important; }

  .spec-table td { padding: 10px 0; font-size: 13px; }

  .page-hero .breadcrumb .breadcrumb-item { font-size: 13px; }
}
/* ===== BACK TO TOP ===== */
#backToTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient-accent);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  text-decoration: none;
}
#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(132,204,22,.35);
}

/* ===== WORDPRESS PAGINATION ===== */
.pagination-custom ul {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination-custom ul li .page-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  color: var(--dark);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  background: var(--white);
  text-decoration: none;
}
.pagination-custom ul li .page-link:hover,
.pagination-custom ul li.active .page-link {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.pagination-custom ul li.active .page-link {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== INQUIRY FORM AJAX ===== */
.alert {
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}
.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 575px) {
  .navbar .navbar-brand { font-size: 18px; }
  .navbar .navbar-brand i { font-size: 24px; }
  .hero h1 { font-size: 1.6rem; }
  .hero-badge { font-size: 12px; padding: 6px 14px; }
  .hero-trust .badges { gap: 16px; }
  .hero-trust .badges span { font-size: 12px; }
  .section-title-wrap .section-title { font-size: 1.4rem; }
  .section-title-wrap .subtitle { font-size: 12px; padding: 4px 14px; }

  .page-hero h1 { font-size: 1.5rem; }
  .page-hero { padding: 110px 0 40px; }

  .product-gallery .thumb-list .thumb { min-width: 64px; height: 60px; }

  .footer .social-links { justify-content: center; }
  .footer { padding-top: 40px; }
  .footer .footer-bottom { margin-top: 40px; }

  .pagination-custom .page-link,
  .pagination-custom ul li .page-link { width: 36px; height: 36px; font-size: 12px; }

  .category-card { height: 140px; }
  .category-card .overlay { padding: 14px; }
  .category-card .overlay h4 { font-size: 15px; }
  .category-card .overlay span { font-size: 12px; }
}


