/* Zynova Remedies - Multi-Page Web Application Styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Zynova Official Logo Palette */
  --brand-green: hsl(141, 65%, 34%);
  --brand-green-dark: hsl(141, 75%, 18%);
  --brand-green-hover: hsl(141, 70%, 26%);
  --brand-green-light: hsl(141, 50%, 95%);
  
  --brand-orange: hsl(22, 88%, 53%);
  --brand-orange-dark: hsl(22, 90%, 44%);
  --brand-orange-light: hsl(22, 95%, 94%);
  
  --brand-yellow: hsl(44, 98%, 51%);
  --brand-yellow-light: hsl(44, 100%, 94%);

  /* Dynamic Theme Tokens */
  --brand-primary: var(--brand-green);
  --brand-primary-hover: var(--brand-green-dark);
  --brand-accent: var(--brand-orange);
  --brand-accent-light: var(--brand-orange-light);
  --brand-amber: var(--brand-yellow);
  
  --bg-main: hsl(120, 15%, 98%);
  --bg-surface: hsl(0, 0%, 100%);
  --bg-surface-elevated: hsl(140, 20%, 96%);
  
  --text-main: hsl(145, 45%, 13%);
  --text-muted: hsl(145, 15%, 42%);
  --text-inverse: hsl(0, 0%, 100%);
  
  --border-color: hsl(140, 18%, 88%);
  --border-light: hsl(140, 18%, 93%);
  
  --shadow-sm: 0 2px 8px rgba(15, 50, 25, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 50, 25, 0.1);
  --shadow-lg: 0 20px 35px -10px rgba(15, 50, 25, 0.15);
  --shadow-glow: 0 0 30px rgba(243, 112, 35, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Mode Tokens Override */
body.dark-theme {
  --bg-main: hsl(145, 30%, 8%);
  --bg-surface: hsl(145, 25%, 12%);
  --bg-surface-elevated: hsl(145, 20%, 15%);
  
  --text-main: hsl(140, 25%, 94%);
  --text-muted: hsl(140, 15%, 72%);
  --text-inverse: hsl(145, 45%, 13%);
  
  --border-color: hsl(145, 20%, 22%);
  --border-light: hsl(145, 20%, 18%);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-main);
  color: var(--text-main);
}

h1, h2, h3, h4, .brand-font {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Announcement Bar */
.top-bar {
  background: var(--brand-green-dark);
  color: hsl(140, 20%, 94%);
  font-size: 0.875rem;
  padding: 10px 0;
  border-bottom: 3px solid var(--brand-yellow);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar-info i {
  color: var(--brand-yellow);
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-links a:hover {
  color: var(--brand-yellow);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

body.dark-theme .navbar {
  background: rgba(15, 32, 20, 0.95);
  border-bottom-color: var(--border-color);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 86px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo img.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-green-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

body.dark-theme .logo-text h1 {
  color: hsl(140, 30%, 92%);
}

.logo-text p {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-main);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-green);
}

body.dark-theme .nav-link {
  color: hsl(140, 15%, 85%);
}

body.dark-theme .nav-link:hover, body.dark-theme .nav-link.active {
  color: var(--brand-yellow);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand-orange);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Theme Toggle Switcher Button */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  color: var(--brand-green-dark);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.theme-toggle:hover {
  background: var(--brand-orange-light);
  color: var(--brand-orange-dark);
  transform: rotate(15deg) scale(1.05);
}

body.dark-theme .theme-toggle {
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-yellow);
  border-color: rgba(255, 255, 255, 0.2);
}

body.dark-theme .theme-toggle:hover {
  background: var(--brand-orange);
  color: white;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.btn-primary {
  background: var(--brand-green);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--brand-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--brand-orange);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  background: var(--brand-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  border: 2px solid var(--brand-green);
  color: var(--brand-green);
}

.btn-outline:hover {
  background: var(--brand-green);
  color: white;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--brand-green);
}

body.dark-theme .mobile-toggle {
  color: var(--brand-yellow);
}

/* Page Header Banner for Subpages */
.page-header-banner {
  background: linear-gradient(135deg, hsl(141, 75%, 16%) 0%, hsl(141, 65%, 24%) 60%, hsl(22, 85%, 32%) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  border-bottom: 4px solid var(--brand-orange);
}

.page-header-banner h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 6px;
  margin-bottom: 12px;
}

.page-header-banner p {
  font-size: 1.05rem;
  color: hsl(140, 20%, 90%);
  max-width: 680px;
  margin: 0 auto;
}

/* Hero Slider Section */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  background: var(--brand-green-dark);
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 600px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 95px 0 125px 0;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-yellow);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-title span.title-highlight-orange {
  color: var(--brand-orange);
}

.hero-title span.title-highlight-yellow {
  color: var(--brand-yellow);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: hsl(140, 20%, 92%);
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.hero-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-card h3 i {
  color: var(--brand-yellow);
}

.hero-card p {
  color: hsl(140, 20%, 90%);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: var(--transition);
  z-index: 100;
  cursor: pointer;
}

.slider-arrow:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-glow);
  transform: translateY(-50%) scale(1.08);
}

.prev-arrow {
  left: 28px;
}

.next-arrow {
  right: 28px;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 100;
}

.slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.slider-dots .dot.active {
  width: 38px;
  border-radius: var(--radius-full);
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  box-shadow: 0 0 12px rgba(253, 184, 19, 0.6);
}

/* Stats Ribbon */
.stats-section {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--brand-green-light);
}

body.dark-theme .stats-grid {
  border-color: var(--border-color);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--brand-orange-light);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

body.dark-theme .stat-icon {
  background: rgba(243, 112, 35, 0.2);
}

.stat-info h4 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--brand-green-dark);
  line-height: 1;
}

body.dark-theme .stat-info h4 {
  color: var(--brand-yellow);
}

.stat-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 4px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-green);
}

.testimonial-rating {
  color: var(--brand-yellow);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-green);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-green-light);
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--brand-green-dark);
}

body.dark-theme .section-title {
  color: hsl(140, 30%, 92%);
}

/* About Section */
.about-section {
  padding: 100px 0;
}

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

.about-content h3 {
  font-size: 1.85rem;
  color: var(--brand-green-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

body.dark-theme .about-content h3 {
  color: var(--brand-yellow);
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-highlight {
  background: var(--brand-green-light);
  border-left: 5px solid var(--brand-green);
  padding: 22px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 30px;
  font-size: 0.98rem;
  color: var(--brand-green-dark);
  font-weight: 600;
}

body.dark-theme .about-highlight {
  background: rgba(30, 158, 75, 0.2);
  color: hsl(140, 30%, 92%);
}

.promoters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.promoter-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.promoter-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-md);
}

.promoter-card i {
  font-size: 2rem;
  color: var(--brand-orange);
  margin-bottom: 12px;
}

.promoter-card h5 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-green-dark);
}

body.dark-theme .promoter-card h5 {
  color: var(--brand-yellow);
}

.promoter-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* Products Section */
.products-section {
  padding: 95px 0;
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.search-filter-wrapper {
  margin-bottom: 40px;
}

.search-box {
  max-width: 520px;
  margin: 0 auto 30px auto;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-color);
  outline: none;
  background: var(--bg-surface);
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(30, 158, 75, 0.15);
}

.search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-green);
  font-size: 1.2rem;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--bg-surface);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover {
  color: var(--brand-green);
  border-color: var(--brand-green);
}

.filter-btn.active {
  background: var(--brand-green);
  color: white;
  border-color: var(--brand-green);
  box-shadow: var(--shadow-sm);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-orange), var(--brand-yellow));
}

.card-header-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--brand-orange-light);
  color: var(--brand-orange-dark);
  margin-bottom: 16px;
}

body.dark-theme .card-header-badge {
  background: rgba(243, 112, 35, 0.25);
  color: var(--brand-yellow);
}

.product-card h4 {
  font-size: 1.45rem;
  color: var(--brand-green-dark);
  margin-bottom: 8px;
}

body.dark-theme .product-card h4 {
  color: hsl(140, 30%, 92%);
}

.product-api {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-green-dark);
  background: var(--brand-green-light);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  display: inline-block;
}

body.dark-theme .product-api {
  background: rgba(30, 158, 75, 0.25);
  color: var(--brand-yellow);
}

.product-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.dosage-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
}

/* Blog Section */
.blog-section {
  padding: 100px 0;
  background: var(--bg-main);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

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

.blog-thumb-wrap {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.blog-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb-wrap img {
  transform: scale(1.08);
}

.blog-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand-orange);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-green-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

body.dark-theme .blog-title {
  color: hsl(140, 30%, 92%);
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-green);
}

body.dark-theme .blog-footer {
  color: var(--brand-yellow);
}

.blog-footer span:hover {
  color: var(--brand-orange);
}

/* FAQ Section */
.faq-section {
  padding: 95px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--brand-green);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--brand-green-dark);
  text-align: left;
  background: none;
}

body.dark-theme .faq-question {
  color: hsl(140, 30%, 92%);
}

.faq-question .faq-icon {
  transition: transform 0.3s ease;
  color: var(--brand-green);
  font-size: 1.1rem;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(180deg);
  color: var(--brand-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
  background: white;
}

body.dark-theme .faq-answer {
  background: var(--bg-surface-elevated);
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 18px 28px 26px 28px;
  border-top: 1px solid var(--border-light);
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 35, 20, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-surface);
  color: var(--text-main);
  width: 100%;
  max-width: 650px;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
  border-top: 6px solid var(--brand-green);
}

.modal-backdrop.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--brand-orange);
  color: white;
}

.modal-header h3 {
  font-size: 1.85rem;
  color: var(--brand-green-dark);
  margin-bottom: 6px;
}

body.dark-theme .modal-header h3 {
  color: hsl(140, 30%, 92%);
}

.modal-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
  background: var(--bg-surface-elevated);
  padding: 18px;
  border-radius: var(--radius-md);
}

.meta-box span {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 800;
  display: block;
}

.meta-box strong {
  font-size: 0.95rem;
  color: var(--brand-green-dark);
}

body.dark-theme .meta-box strong {
  color: var(--brand-yellow);
}

.modal-section {
  margin-bottom: 20px;
}

.modal-section h5 {
  font-size: 1.05rem;
  color: var(--brand-green-dark);
  margin-bottom: 8px;
}

body.dark-theme .modal-section h5 {
  color: hsl(140, 30%, 92%);
}

.modal-section ul {
  padding-left: 20px;
}

.modal-section li {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* Quality Section */
.quality-section {
  padding: 100px 0;
}

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

.quality-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 36px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.quality-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--brand-green);
}

.quality-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px auto;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-green), var(--brand-orange));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.quality-card h4 {
  font-size: 1.35rem;
  color: var(--brand-green-dark);
  margin-bottom: 12px;
}

body.dark-theme .quality-card h4 {
  color: hsl(140, 30%, 92%);
}

.quality-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, hsl(141, 75%, 16%) 0%, hsl(141, 65%, 22%) 100%);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: hsl(140, 20%, 88%);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  color: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.info-text h5 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.info-text p {
  font-size: 0.95rem;
  margin: 0;
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--text-main);
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--brand-orange);
}

body.dark-theme .contact-form {
  background: var(--bg-surface);
  color: var(--text-main);
}

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

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--brand-green-dark);
}

body.dark-theme .form-group label {
  color: hsl(140, 30%, 92%);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  background: var(--bg-surface);
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(30, 158, 75, 0.15);
}

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

/* Toast */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--brand-green-dark);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  border-left: 5px solid var(--brand-yellow);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1500;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.floating-actions.floating-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.catalog-float {
  background: var(--brand-green);
  color: white;
}

.catalog-float:hover {
  background: var(--brand-green-dark);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(30, 158, 75, 0.5);
}

.whatsapp-float {
  background: #25D366;
  color: white;
}

.whatsapp-float:hover {
  background: #128C7E;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.back-to-top {
  background: var(--brand-green-dark);
  color: white;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brand-orange);
  color: white;
  transform: translateY(-4px);
}

.float-tooltip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--brand-green-dark);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* Footer */
footer {
  background: hsl(141, 75%, 10%);
  color: hsl(140, 20%, 75%);
  padding: 65px 0 30px 0;
  font-size: 0.9rem;
  border-top: 4px solid var(--brand-orange);
}

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

.footer-col h5 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.footer-col p {
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

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

.footer-links a:hover {
  color: var(--brand-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.visitor-counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  color: hsl(140, 20%, 90%);
}

.visitor-counter-badge i {
  color: var(--brand-yellow);
}

.visitor-counter-badge strong {
  color: var(--brand-yellow);
  font-weight: 800;
  font-size: 1rem;
}

.credit-links {
  font-size: 0.88rem;
  color: hsl(140, 15%, 70%);
}

.credit-link-web {
  color: var(--brand-yellow);
  font-weight: 700;
  transition: var(--transition);
}

.credit-link-web:hover {
  color: var(--brand-orange);
  text-decoration: underline;
}

.credit-link-phone {
  color: hsl(140, 20%, 90%);
  font-weight: 700;
  transition: var(--transition);
}

.credit-link-phone:hover {
  color: var(--brand-yellow);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quality-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  
  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  
  .prev-arrow {
    left: 10px;
  }
  
  .next-arrow {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-light);
  }
  
  body.dark-theme .nav-menu {
    background: hsl(145, 25%, 12%);
    border-bottom-color: var(--border-color);
  }

  .nav-menu.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .promoters-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-actions {
    bottom: 20px;
    right: 20px;
  }
  
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}
