/* ============================================================
   HERBINN — Vanilla CSS Design System (No Bootstrap)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary-color: #2D5A27;
  --primary-light: #76A665;
  --cta-orange: #EA722E;
  --cta-hover: #D65A1D;
  --accent-blue: #0077B6;
  --accent-light: #E0F2F1;
  --text-dark: #212529;
  --text-muted: #6C757D;
  --bg-light: #F8F9FA;
  --white: #ffffff;
  --border-light: #dee2e6;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 25px 50px rgba(0,0,0,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: clip;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h5 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p {
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---------- Grid System ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ---------- Section Utilities ---------- */
.section { padding-block: 5rem; }
.section-sm { padding-block: 3rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

/* ---------- Background Utilities ---------- */
.bg-light { background-color: var(--bg-light); }
.bg-white { background: var(--white); }
.bg-dark { background: #1a1a2e; }
.bg-primary-custom { background-color: var(--primary-color); }
.bg-premium-gradient { background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); }

/* ---------- Text Utilities ---------- */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-primary-custom { color: var(--primary-color); }
.text-white { color: #fff; }
.fw-bold { font-weight: 700; }
.small { font-size: 0.875rem; }
.lead { font-size: 1.2rem; }
.opacity-75 { opacity: 0.75; }

/* ---------- Flex Utilities ---------- */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 0.85rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.6rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-brand img {
  height: 72px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .navbar-brand img { height: 56px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

/* Ensure buttons in navbar maintain white text and pill shape */
.nav-links a.btn {
  color: var(--white);
  border-radius: var(--radius-pill);
}

.nav-links a.btn-primary {
  color: var(--white);
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary-color); background: rgba(45,90,39,0.06); }

/* Prevent button hover state from being overridden by general link hover */
.nav-links a.btn:hover {
  color: var(--white);
  background: var(--cta-hover);
  transform: translateY(-2px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8.75px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8.75px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--cta-orange);
  color: var(--white);
  border-color: var(--cta-orange);
  box-shadow: 0 4px 15px rgba(234,114,46,0.3);
}

.btn-primary:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234,114,46,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-light:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.88rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.badge-primary { background: var(--primary-color); color: var(--white); }
.badge-light { background: var(--bg-light); color: var(--primary-color); }
.badge-border { background: transparent; border: 1px solid var(--border-light); color: var(--text-muted); padding: 0.45rem 0.9rem; }

/* Tag pills */
.tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================================
   HERO SECTION & SLIDER
   ============================================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-block: 120px 80px;
  background-size: cover;
  background-position: center;
}

.hero-slider {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  background: #fdfbfb;
}
/* Individual Slide Styling */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 1.2s ease-in-out, visibility 1.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Background Zoom Effect */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit; /* Inherits the background-image from the slide div */
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 6s cubic-bezier(0.1, 0, 0.3, 1);
  z-index: -2;
}

.hero-slide.active::before {
  transform: scale(1);
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

/* Hero Content Alignment */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 850px;
  width: 100%;
  padding-inline: 1.5rem;
  text-align: center;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: 
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, 
    transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-slide h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-slide .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: 2rem;
}
.slider-controls {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 100;
}

.slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2.5px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slider-dots .dot.active {
  background: #ffffff;
  transform: scale(1.35);
  border-color: rgba(255, 255, 255, 0.5);
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.6);
}
.slider-btn {
  background: var(--white);
  border: 1px solid var(--border-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  color: var(--primary-color);
  font-size: 1.25rem;
}
.slider-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Removed duplicate hero styles to fix alignment issues */

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding-block: 5rem;
  text-align: center;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.page-header h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.page-header p { color: var(--text-muted); font-size: 1.15rem; max-width: 640px; margin-inline: auto; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding-block: 5rem;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.cta-section p { opacity: 0.78; font-size: 1.1rem; margin-bottom: 2.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding-block: 4rem;
  background: var(--white);
  color: var(--text-dark);
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

footer .brand-col img { height: 64px; margin-bottom: 1rem; }
footer .brand-col p { color: var(--text-muted); font-size: 0.9rem; }

footer h6 { font-size: 0.9rem; font-weight: 700; margin-bottom: 1.25rem; letter-spacing: 0.03em; text-transform: uppercase; }

footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; }
footer ul a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
footer ul a:hover { color: var(--cta-orange); }

.footer-certs { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }

.footer-bottom { border-top: 1px solid var(--border-light); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }

/* Footer dark variant */
footer.dark { background: #111827; border-color: #374151; }
footer.dark p { color: #9ca3af; }

/* ============================================================
   ACCORDION (Formats page)
   ============================================================ */
.accordion { display: flex; flex-direction: column; gap: 1rem; }

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition);
}

.accordion-btn:hover { background: var(--bg-light); }
.accordion-btn svg { color: var(--primary-color); flex-shrink: 0; }

.accordion-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.accordion-btn[aria-expanded="true"] .accordion-arrow { transform: rotate(180deg); }

.accordion-body {
  display: none;
  padding: 1.5rem;
  background: var(--bg-light);
}

.accordion-body.open { display: block; }
.accordion-body.always-open { display: block !important; }

.accordion-body .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.accordion-body .inner img { border-radius: var(--radius-sm); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; }

.form-control,
.form-select {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45,90,39,0.1);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236c757d' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 18px;
  padding-right: 2.5rem;
}

textarea.form-control { resize: vertical; min-height: 110px; }

.form-full { grid-column: 1 / -1; }

/* ============================================================
   STAT GRID
   ============================================================ */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-item h3 { font-size: 2rem; color: var(--primary-color); margin-bottom: 0.2rem; }
.stat-item p { color: var(--text-muted); font-size: 0.9rem; }

/* ============================================================
   TWO COLUMN SPLIT (Services, About)
   ============================================================ */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding-block: 3.5rem;
  border-bottom: 1px solid var(--border-light);
}

.split-row:last-child { border-bottom: none; }
.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }

.split-row img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); width: 100%; }

.check-list { list-style: none; margin-bottom: 1.5rem; }
.check-list li {
  display: flex; align-items: center; gap: 0.6rem;
  padding-block: 0.35rem;
  font-size: 0.95rem;
}
.check-list svg { color: var(--primary-color); flex-shrink: 0; }

/* ============================================================
   SIGNATURE CARDS (horizontal card)
   ============================================================ */
.sig-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}

.sig-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.sig-card img { width: 100%; height: 100%; object-fit: cover; }
.sig-card-body { padding: 1.75rem; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
}

.whatsapp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.22);
  transition: var(--transition);
}

.whatsapp-btn:hover { transform: scale(1.12); }
.whatsapp-btn svg { width: 28px; height: 28px; }

/* ============================================================
   CAPABILITY LIST (inline icon + text)
   ============================================================ */
.cap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }

.cap-item .cap-header {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.cap-item svg { color: var(--primary-color); }
.cap-item p { color: var(--text-muted); font-size: 0.88rem; }

/* ============================================================
   CONTACT INFO ITEM
   ============================================================ */
.contact-info-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-row .icon-box { margin-bottom: 0; width: 50px; height: 50px; flex-shrink: 0; }
.contact-info-row h6 { font-weight: 700; margin-bottom: 0.15rem; }
.contact-info-row p { color: var(--text-muted); font-size: 0.88rem; }

/* ============================================================
   ANIMATIONS — AOS override for speed
   ============================================================ */
[data-aos] { transition-duration: 700ms !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-row { grid-template-columns: 1fr; gap: 2rem; }
  .split-row.reverse { direction: ltr; }
  .hero-content { grid-template-columns: 1fr; }
  .hero { text-align: center; padding-block: 100px 60px; }
  .hero-btns { justify-content: center; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .sig-card { grid-template-columns: 150px 1fr; }
}

/* Hide mobile-specific elements on desktop */
.mobile-menu-header {
  display: none;
}

@media (max-width: 768px) {
  /* Global mobile centering */
  body, .container, .split-row > div, .card, .cap-item {
    text-align: center;
  }
  
  /* Flex items overriding text-align for alignment */
  .hero-btns, .split-row > div > div, .flex-wrap {
    justify-content: center;
  }

  .cap-item .cap-header { justify-content: center; }

  /* Exclusions for bullets and functional elements */
  ul, ol, li, .check-list, .check-list li, .nav-links a, .faq-btn, .accordion-btn, .form-group label, input, textarea, select, .faq-item p, .faq-body {
    text-align: left;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    height: 100vh;
    height: 100dvh;
    width: 75%;
    max-width: 320px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 2rem;
    gap: 0.25rem;
    overflow-y: auto;
    visibility: hidden;
    transform: translateX(100%);
    box-shadow: none;
    z-index: 1100;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0s linear 0.4s, box-shadow 0.4s ease;
  }

  .mobile-menu-header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
  }

  .mobile-close-btn {
    background: none;
    border: none;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
  }
  
  .mobile-close-btn:hover {
    color: var(--primary-color);
  }

  .nav-links.open { 
    transform: translateX(0);
    visibility: visible;
    box-shadow: -15px 0 40px rgba(0,0,0,0.12);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0s, box-shadow 0.4s ease;
  }

  .nav-links a {
    padding: 0.85rem 1rem;
    font-size: 1.1rem;
    width: 100%;
    border-radius: var(--radius-sm);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease, background 0.3s ease;
  }

  .nav-links.open a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.open li:nth-child(1) a { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(2) a { transition-delay: 0.15s; }
  .nav-links.open li:nth-child(3) a { transition-delay: 0.2s; }
  .nav-links.open li:nth-child(4) a { transition-delay: 0.25s; }
  .nav-links.open li:nth-child(5) a { transition-delay: 0.3s; }
  .nav-links.open li:nth-child(6) a { transition-delay: 0.35s; }

  .nav-links .btn {
    margin-top: 1rem;
    width: 100%;
  }

  .nav-toggle { display: flex; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .accordion-body .inner { grid-template-columns: 1fr; }
  .sig-card { grid-template-columns: 1fr; }
  .sig-card img { height: 180px; }
  .cap-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .footer-grid .brand-col img { margin: 0 auto 1.5rem auto; }
  .footer-grid ul, .footer-grid li { text-align: center; }
  .footer-certs { justify-content: center; }

  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
}

/* ---------- FAQ Section ---------- */
.faq-container {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-item h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.faq-btn:hover {
  color: var(--primary-color);
}

.faq-body {
  display: none;
  padding: 1.25rem 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-body.open {
  display: block;
}

@media (max-width: 768px) {
  .faq-item {
    padding: 1.5rem;
  }

  .faq-item h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; justify-content: center; width: 100%; }
  .btn { padding: 0.65rem 1.5rem; font-size: 0.95rem; }
  .btn-lg { padding: 0.8rem 1.75rem; font-size: 1rem; }
  .btn-sm { padding: 0.5rem 1.15rem; font-size: 0.85rem; }
  .btn-full-mobile { width: 100%; }
  .split-row { padding-block: 2rem; }
}

/* ============================================================
   PRODUCT CATALOG (Refined to match design)
   ============================================================ */
.products-hero {
  padding-block: 60px 40px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.filter-bar {
  background: #fff;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 88px;
  z-index: 100;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.search-box {
  flex: 0 0 280px;
}

.search-box input {
  padding: 0.65rem 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  width: 100%;
  font-size: 0.95rem;
  background: #fff;
  transition: var(--transition);
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(45,90,39,0.08);
}

.filter-pills-wrap {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 0.6rem 1.5rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: var(--transition);
}

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

.filter-pill.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.results-count-bar {
  padding: 1.25rem 0;
  background: #fff;
}

.results-count {
  font-size: 0.95rem;
  color: #777;
}

.results-count strong {
  color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-block: 2rem 5rem;
}

.product-item {
  height: 100%;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.07);
}

.product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1.1 / 1;
  background: #EBF5F6; /* Light cyan from screenshot */
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #E8F5E9;
  color: #2D5A27;
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.product-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-inquire {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.btn-inquire:hover {
  color: var(--cta-orange);
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
  .filter-row { flex-direction: column; align-items: stretch; gap: 1rem; }
  .search-box { flex: 1; }
  .filter-bar { top: 72px; }
}

@media (max-width: 500px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE (Refined to match UI screenshot)
   ============================================================ */
.contact-section {
  padding-block: 100px;
  background: #f8f9fa;
}

.contact-left h1 {
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.contact-left .lead {
  color: #666;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.contact-info-block {
  margin-bottom: 2rem;
}

.contact-info-block h6 {
  font-weight: 800;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.contact-info-block p {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}

.contact-card .form-group label {
  font-weight: 700;
  font-size: 0.85rem;
  color: #333;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-card .form-control,
.contact-card .form-select {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  background: #fff;
  transition: all 0.3s ease;
}

.contact-card .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(45,90,39,0.05);
}

.btn-contact-submit {
  background: #EA722E !important; /* Specific orange from UI */
  border: none;
  color: #fff;
  font-weight: 800;
  padding: 1.1rem;
  border-radius: 50px;
  font-size: 1rem;
  width: 100%;
  margin-top: 1rem;
  box-shadow: 0 10px 20px rgba(234,114,46,0.2);
  transition: all 0.3s ease;
}

.btn-contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(234,114,46,0.3);
  background: #d86224 !important;
}

@media (max-width: 992px) {
  .contact-card { padding: 2rem; }
}

/* ============================================================
   ULTRA-PRECISE FORM UI (Match latest screenshot)
   ============================================================ */
.contact-card {
  padding: 4rem 3.5rem !important;
  border-radius: 30px !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.06) !important;
}

.contact-card .form-group label {
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  color: #1a1a1a !important;
  margin-bottom: 0.75rem !important;
}

.contact-card .form-control,
.contact-card .form-select {
  border: 1.5px solid #ececec !important;
  background: #fff !important;
  padding: 0.9rem 1.25rem !important;
  font-size: 1rem !important;
  color: #333 !important;
}

.contact-card .form-control::placeholder {
  color: #aaa !important;
}

.btn-contact-submit {
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.01em !important;
  margin-top: 1.5rem !important;
}

/* ============================================================
   PRIVATE LABEL PAGE STYLES
   ============================================================ */
.pl-hero {
  padding-block: 80px 60px;
  background: #fff;
  border-bottom: 1px solid #f1f1f1;
}

.pl-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pl-hero-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0 3rem 0;
}

.pl-hero-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #444;
}

.pl-hero-features li svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}

.stat-highlight {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
}

.stat-highlight .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-highlight .label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #666;
}

.why-card {
  padding: 2.5rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  height: 100%;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.cat-pill {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.cat-pill:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cat-pill h4 { font-weight: 800; margin-bottom: 0.5rem; }
.cat-pill p { font-size: 0.9rem; color: #777; margin: 0; }

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step .num {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 1.5rem auto;
  font-size: 1.2rem;
}

.audience-card {
  padding: 2.5rem;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eee;
}

@media (max-width: 992px) {
  .pl-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .process-line { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .process-line { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
}

/* Hide Product Prices */
.product-price, 
.price, 
.woocommerce-Price-amount {
  display: none !important;
}


/* ============================================================
   FORMATS PAGE CUSTOM ZIGZAG LAYOUT
   ============================================================ */
.format-section {
  padding-block: 4rem;
  border-bottom: 1px solid var(--border-light);
}

.format-section:last-child {
  border-bottom: none;
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.format-grid.reverse {
  direction: rtl;
}

.format-grid.reverse > * {
  direction: ltr;
}

.format-grid.text-right h2,
.format-grid.text-right p {
  text-align: right;
}

.format-grid.text-right .check-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 0;
}

.format-grid.text-right .check-list li {
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 0.6rem;
  text-align: right;
}


/* ============================================================
   FORMATS PAGE CUSTOM ZIGZAG LAYOUT
   ============================================================ */
.format-section {
  padding-block: 4rem;
  border-bottom: 1px solid var(--border-light);
}

.format-section:last-child {
  border-bottom: none;
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.format-grid.reverse {
  direction: rtl;
}

.format-grid.reverse > * {
  direction: ltr;
}

.format-grid.text-right h2,
.format-grid.text-right p {
  text-align: right;
}

.format-grid.text-right .check-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 0;
}

.format-grid.text-right .check-list li {
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 0.6rem;
  text-align: right;
}
