/* ==========================================================================
   Swastic Sales - Modern Eco-Emerald & Golden-Amber Theme (styles.css)
   Clean, High-Performance, Luxury Sustainable Tableware & Packaging Design
   ========================================================================== */

:root {
  /* Brand Palette: Eco-Emerald & Warm Golden Amber */
  --primary: #0b3b2c;               /* Deep Forest Emerald */
  --primary-hover: #07271d;
  --primary-light: #135843;
  --primary-glow: rgba(11, 59, 44, 0.2);

  --secondary: #d97706;             /* Warm Golden Amber / Wood Tone */
  --secondary-hover: #b45309;
  --secondary-light: #f59e0b;
  --secondary-glow: rgba(217, 119, 6, 0.25);

  --accent-mint: #10b981;           /* Botanical Fresh Mint */
  --accent-mint-light: #ecfdf5;
  --accent-sage: #e6f4ea;

  /* Surfaces & Backgrounds */
  --bg-body: #ffffff;               /* Crisp Clean White */
  --bg-alt: #f7faf8;                /* Soft Eco-Porcelain Neutral */
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-dark-footer: #051a13;        /* Deep Woodland Slate Night */

  /* Borders & Dividers */
  --border-light: #e3ede7;
  --border-glow: rgba(16, 185, 129, 0.35);

  /* Typography Colors */
  --text-main: #0c1a15;             /* Deep Forest Charcoal */
  --text-muted: #476356;            /* Refined Slate Green-Gray */
  --text-dim: #8fa69a;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 5px rgba(11, 59, 44, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(11, 59, 44, 0.08);
  --shadow-lg: 0 20px 35px -10px rgba(11, 59, 44, 0.14);
  --shadow-gold: 0 10px 25px rgba(217, 119, 6, 0.25);
  --shadow-emerald: 0 10px 25px rgba(11, 59, 44, 0.2);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  word-wrap: break-word;
}

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

a:hover {
  color: var(--secondary);
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Top Announcement Bar */
.top-bar {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.top-bar-links a {
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-links a:hover {
  color: #fde68a;
}

/* Header Navbar */
header.app-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(11, 59, 44, 0.05);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
}

.logo-brand img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.logo-tagline {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--secondary);
  display: block;
  line-height: 1.2;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  padding: 10px 14px;
  color: #1e3a31;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover, .nav-item:hover > .nav-link {
  color: var(--secondary);
  background: var(--accent-sage);
}

/* Dropdown Menus */
.dropdown-box {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1010;
}

.nav-item:hover .dropdown-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  color: #2c443b;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-link i {
  color: var(--secondary);
  width: 18px;
  text-align: center;
  font-size: 13px;
}

.dropdown-link:hover {
  background: var(--accent-sage);
  color: var(--primary);
  transform: translateX(4px);
}

/* Mega-Menu for Products */
.dropdown-mega {
  position: absolute;
  top: 100%;
  left: -220px;
  width: 780px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1010;
}

.nav-item:hover .dropdown-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.mega-col h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--secondary);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 6px;
}

.mega-col a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: #2c443b;
  font-weight: 500;
  transition: var(--transition);
}

.mega-col a:hover {
  color: var(--primary);
  font-weight: 600;
  transform: translateX(3px);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-cta {
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-emerald);
}

.btn-cta-gold {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px var(--secondary-glow);
}

.btn-cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 18px;
  color: var(--primary);
  cursor: pointer;
}

/* Hero Section */
.hero-premium-section {
  position: relative;
  background: radial-gradient(circle at 85% 15%, rgba(16, 185, 129, 0.12) 0%, transparent 40%),
              radial-gradient(circle at 10% 85%, rgba(217, 119, 6, 0.08) 0%, transparent 40%),
              #ffffff;
  padding: 70px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-premium-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-mint-light);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #065f46;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.badge-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-mint);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title-main {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title-main span.highlight {
  color: var(--secondary);
  position: relative;
}

.hero-desc-main {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 600px;
}

.hero-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.feat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

.feat-chip i {
  color: var(--accent-mint);
}

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

.btn-hero-primary {
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-hero-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-emerald);
}

.btn-hero-secondary {
  background: #ffffff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

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

/* Hero Visual Showcase */
.showcase-card-container {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 12px;
}

.showcase-media-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f1f5f2;
}

.showcase-media-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.showcase-media-frame:hover img {
  transform: scale(1.03);
}

.hero-float-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.hero-float-chip.float-top {
  top: 25px;
  right: 25px;
}

.hero-float-chip.float-bottom {
  bottom: 25px;
  left: 25px;
}

.chip-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.chip-icon-circle.green {
  background: var(--accent-mint-light);
  color: var(--accent-mint);
}

.chip-icon-circle.amber {
  background: #fef3c7;
  color: var(--secondary);
}

.chip-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  line-height: 1.2;
}

.chip-caption {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* Stats Counter Section */
.stats-banner-section {
  background: var(--bg-alt);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-mint);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 12px;
  color: var(--text-muted);
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-mint-light);
  color: #065f46;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Categories Grid */
.categories-section {
  padding: 80px 0;
  background: #ffffff;
}

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

.category-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: var(--shadow-lg);
}

.cat-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #eef4f0;
}

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

.category-card:hover .cat-image-wrap img {
  transform: scale(1.06);
}

.cat-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11, 59, 44, 0.85);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.cat-content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cat-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cat-title a {
  color: var(--primary);
}

.cat-title a:hover {
  color: var(--secondary);
}

.cat-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

.cat-features {
  list-style: none;
  margin-bottom: 18px;
}

.cat-features li {
  font-size: 12.5px;
  color: #375347;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-features li i {
  color: var(--accent-mint);
  font-size: 11px;
}

.cat-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  margin-top: auto;
}

.cat-view-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cat-view-link:hover {
  color: var(--secondary);
}

.btn-quote-sm {
  background: var(--accent-mint-light);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.btn-quote-sm:hover {
  background: var(--accent-mint);
  color: #ffffff;
}

/* Bulk Order Sectors Section */
.sectors-section {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.sector-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}

.sector-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: #fef3c7;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.sector-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.sector-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.sector-list {
  list-style: none;
  margin-bottom: 22px;
}

.sector-list li {
  font-size: 13px;
  color: #375347;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sector-list li i {
  color: var(--secondary);
}

.sector-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
}

.sector-btn:hover {
  color: var(--secondary);
}

/* Why Swastic Sales / Features */
.features-section {
  padding: 80px 0;
  background: #ffffff;
}

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

.feature-box {
  padding: 28px 22px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
}

.feature-box:hover {
  background: #ffffff;
  border-color: var(--accent-mint);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feat-icon-large {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.feature-box:hover .feat-icon-large {
  background: var(--primary);
  color: #ffffff;
}

.feat-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.feat-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: radial-gradient(circle at 10% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 40%),
              radial-gradient(circle at 90% 50%, rgba(217, 119, 6, 0.06) 0%, transparent 40%),
              var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-mint);
  transform: translateY(-3px);
}

.testi-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testi-quote {
  font-size: 15px;
  line-height: 1.65;
  color: #2b453a;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-author-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.testi-author-info p {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* CTA Wholesale Banner */
.cta-banner-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #0b3b2c 0%, #051a13 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-banner-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.cta-banner-text h2 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-banner-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 600px;
  line-height: 1.6;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-banner {
  background: var(--secondary);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-cta-banner:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-cta-whatsapp {
  background: #25d366;
  color: #ffffff;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-cta-whatsapp:hover {
  background: #1ebc59;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Footer */
footer.app-footer {
  background: var(--bg-dark-footer);
  color: rgba(255, 255, 255, 0.85);
  padding: 70px 0 25px;
  font-size: 14px;
}

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

.footer-logo {
  height: 52px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-about-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-head {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--secondary);
}

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-nav a:hover {
  color: #fde68a;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item i {
  color: var(--secondary);
  font-size: 15px;
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-item a:hover {
  color: #fde68a;
}

.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-circle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  transition: var(--transition);
}

.social-circle-btn:hover {
  background: var(--secondary);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
}

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

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: var(--transition);
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Modal Dialog */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 26, 19, 0.7);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  transform: scale(0.95);
  transition: var(--transition);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-header {
  background: var(--primary);
  color: #ffffff;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: #ffffff;
}

.modal-body {
  padding: 28px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-mint);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.btn-form-submit {
  width: 100%;
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-form-submit:hover {
  background: var(--primary-hover);
}

/* Breadcrumb Bar */
.breadcrumb-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  font-size: 13px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.breadcrumb-list li a {
  color: var(--text-muted);
}

.breadcrumb-list li a:hover {
  color: var(--secondary);
}

.breadcrumb-list li.active {
  color: var(--primary);
  font-weight: 600;
}

/* Inner Page Hero Header */
.page-hero-header {
  background: linear-gradient(135deg, rgba(11, 59, 44, 0.96) 0%, rgba(5, 26, 19, 0.98) 100%),
              url('assets/images/banner-areca-leaf.jpg') center/cover;
  padding: 60px 0;
  color: #ffffff;
  text-align: center;
}

.page-hero-header h1 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 680px;
  margin: 0 auto;
}

/* Category Filter Bar */
.filter-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-tab-btn {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  color: #375347;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab-btn:hover, .filter-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-premium-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons-group, .hero-feature-chips {
    justify-content: center;
  }

  .hero-desc-main {
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .categories-grid, .sectors-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-title-main {
    font-size: 32px;
  }

  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }
}

/* ==========================================================================
   Product SEO Editorial Overview & Contextual Links
   ========================================================================== */
.product-seo-overview-card {
  transition: var(--transition);
}

.product-seo-overview-card:hover {
  box-shadow: var(--shadow-md);
}

.editorial-body {
  font-family: inherit;
  color: #334155;
}

.editorial-body a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent-mint);
  text-underline-offset: 3.5px;
  transition: var(--transition);
}

.editorial-body a:hover {
  color: var(--accent-mint);
  text-decoration-color: var(--primary);
}
