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

/* ==========================================
   CSS CUSTOM PROPERTIES (DESIGN SYSTEM TOKENS)
   ========================================== */
:root {
  /* Brand HSL Colors */
  --primary-deep-h: 151;
  --primary-deep-s: 63%;
  --primary-deep-l: 23%;
  --primary-deep: hsl(var(--primary-deep-h), var(--primary-deep-s), var(--primary-deep-l)); /* The main Emerald Green */
  
  --primary-mid-h: 151;
  --primary-mid-s: 55%;
  --primary-mid-l: 35%;
  --primary-mid: hsl(var(--primary-mid-h), var(--primary-mid-s), var(--primary-mid-l)); /* Lighter accent green */
  
  --primary-light: hsl(151, 30%, 97%); /* Soft mint backdrop */
  --primary-soft: hsl(151, 28%, 88%); /* Tint borders */
  
  --accent-gold-h: 38;
  --accent-gold-s: 87%;
  --accent-gold-l: 47%;
  --accent-gold: hsl(var(--accent-gold-h), var(--accent-gold-s), var(--accent-gold-l)); /* #e09310 */
  --accent-gold-hover: hsl(38, 87%, 40%);
  
  --neutral-dark: hsl(151, 20%, 10%); /* Emerald-toned Charcoal slate */
  --neutral-muted: hsl(151, 10%, 45%); /* Emerald-toned Grey text */
  --neutral-light: hsl(151, 15%, 97.5%); /* Table backdrops */
  --neutral-border: hsl(151, 20%, 91%); /* Card borders */
  --white: #ffffff;
  
  /* Gradients */
  --gradient-green-gold: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-mid) 60%, var(--accent-gold) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(34, 128, 83, 0.95) 0%, rgba(21, 94, 59, 0.98) 100%);
  --gradient-card-hover: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(21, 94, 59, 0.04) 100%);
  --gradient-overlay: linear-gradient(to bottom, rgba(21, 94, 59, 0) 0%, rgba(21, 94, 59, 0.6) 100%);
  --gradient-shimmer: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Premium Box Shadows */
  --shadow-sm: 0 2px 8px rgba(21, 94, 59, 0.06);
  --shadow-md: 0 10px 30px rgba(21, 94, 59, 0.1);
  --shadow-lg: 0 20px 50px -12px rgba(21, 94, 59, 0.12);
  --shadow-xl: 0 32px 64px -16px rgba(21, 94, 59, 0.2);
  --shadow-accent: 0 10px 24px -6px rgba(224, 147, 16, 0.25);
  --shadow-green: 0 10px 24px -6px rgba(21, 94, 59, 0.2);

  /* Layout & Spacing */
  --container-max-width: 1240px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   BASE RESET & PREMIUM SCROLLBAR
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--primary-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-mid);
  border: 2px solid var(--primary-light);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-deep);
}

/* Selection Highlight */
::selection {
  background-color: var(--primary-soft);
  color: var(--primary-deep);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--neutral-dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

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

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

/* ==========================================
   KEYFRAME ANIMATIONS & REVEALS
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 35px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale3d(0.96, 0.96, 1);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes shimmer-shine {
  from { transform: translate3d(-150%, -150%, 0) rotate(45deg); }
  to { transform: translate3d(150%, 150%, 0) rotate(45deg); }
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.anim-fade-in-up {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-scale-in {
  animation: scaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.3s; }
.anim-delay-3 { animation-delay: 0.45s; }

/* Scroll Reveal Base Styles */
.reveal {
  opacity: 0;
  transform: translate3d(0, 35px, 0);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-scale {
  opacity: 0;
  transform: scale3d(0.96, 0.96, 1);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ==========================================
   COMMON LAYOUT / UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 30px;
}

.section-padding {
  padding: 110px 0;
}

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

.bg-light {
  background-color: var(--neutral-light);
}

.bg-green-soft {
  background-color: var(--primary-light);
}

.text-center {
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 6px 18px;
  background-color: var(--primary-light);
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  border: 1px solid var(--primary-soft);
  margin-bottom: 22px;
}

.section-title-wrap {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 65px auto;
}

.section-title-wrap h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: var(--primary-deep);
}

.section-title-wrap p {
  color: var(--neutral-muted);
  font-size: 1.18rem;
}

/* Premium Button Design with Shimmer Sweep */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Shimmer stripes removed to make buttons look solid */
/* .btn::after removed */
/* .btn:hover::after removed */

.btn-primary {
  background-color: var(--primary-deep);
  color: var(--white);
  border: 2px solid var(--primary-deep);
}

.btn-primary:hover {
  background-color: var(--primary-mid);
  border-color: var(--primary-mid);
  transform: translate3d(0, -3px, 0);
  box-shadow: var(--shadow-green);
}

.btn-accent {
  background-color: var(--accent-gold);
  color: var(--neutral-dark);
  border: 2px solid var(--accent-gold);
}

.btn-accent:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  transform: translate3d(0, -3px, 0);
  box-shadow: var(--shadow-accent);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-deep);
  border: 2px solid var(--primary-deep);
}

.btn-outline:hover {
  background-color: var(--primary-deep);
  color: var(--white);
  transform: translate3d(0, -3px, 0);
  box-shadow: var(--shadow-green);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-deep);
  transform: translate3d(0, -3px, 0);
}

/* ==========================================
   HEADER & GLASSMORPHIC NAVIGATION
   ========================================== */
.top-bar {
  background-color: var(--primary-deep);
  color: var(--white);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 26px;
}

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

.top-bar-info a:hover {
  color: var(--accent-gold);
}

@media (max-width: 992px) {
  .top-bar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .top-bar-info {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .top-bar-info {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid rgba(9, 51, 30, 0.06);
  transition: var(--transition-smooth);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
  height: 72px;
}

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

.logo-icon {
  font-size: 2.2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1;
  letter-spacing: -0.03em;
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--neutral-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--neutral-muted);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary-deep);
}

.nav-link.active {
  color: var(--primary-deep);
  font-weight: 700;
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-deep);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Mobile Nav Drawer Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background-color: var(--white);
  z-index: 106;
  padding: 45px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transition: var(--transition-smooth);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-drawer .logo {
  margin-bottom: 45px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 45px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--neutral-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--neutral-border);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--primary-deep);
  padding-left: 10px;
}

.mobile-drawer-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Hamburger active transformation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1080px) {
  .nav-menu, .nav-actions {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
}

/* Intermediate Viewports Responsive Header Spacing */
@media (max-width: 1240px) {
  .nav-menu {
    gap: 10px;
  }
  .nav-link {
    font-size: 0.82rem;
  }
  .nav-actions .btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
  .logo-title {
    font-size: 1.25rem;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  background-image: var(--gradient-hero);
  color: var(--white);
  padding: 150px 0 130px 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 85% 25%, rgba(21, 94, 59, 0.4) 0%, transparent 65%);
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
  opacity: 0;
}

.hero-tagline {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.98rem;
  margin-bottom: 20px;
  display: inline-block;
}

.hero h1 {
  font-size: 3.65rem;
  line-height: 1.12;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--accent-gold);
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
  line-height: 1.75;
}

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

/* 3D Perspective Hero Frame */
.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  opacity: 0;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 480px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid rgba(255, 255, 255, 0.15);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: var(--transition-smooth);
  background-color: rgba(255, 255, 255, 0.05);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-graphic:hover .hero-image-frame {
  transform: rotateY(0deg) rotateX(0deg) translate3d(0, -5px, 0);
  box-shadow: 0 35px 70px -15px rgba(0,0,0,0.4);
}

.hero-graphic:hover .hero-image-frame img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-graphic {
    display: none;
  }
}

/* ==========================================
   ABOUT INTRO BLOCK
   ========================================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-visual {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 380px;
}

.about-intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-intro-visual:hover img {
  transform: scale(1.06);
}

.location-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: var(--border-radius-md);
  border-left: 6px solid var(--primary-deep);
  box-shadow: var(--shadow-lg);
  transform: translate3d(0, 0, 0);
  transition: var(--transition-smooth);
}

.about-intro-visual:hover .location-card {
  transform: translate3d(0, -5px, 0);
}

.location-card h4 {
  color: var(--primary-deep);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.location-card p {
  font-size: 0.95rem;
  color: var(--neutral-muted);
}

.about-intro-text h3 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: var(--primary-deep);
}

.about-intro-text p {
  color: var(--neutral-muted);
  margin-bottom: 18px;
  font-size: 1.08rem;
}

.about-intro-text .lead {
  font-weight: 600;
  color: var(--neutral-dark);
  font-size: 1.15rem;
}

@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   PREMIUM CARDS
   ========================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 35px;
}

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

.card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--neutral-border);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  will-change: transform, box-shadow, border-color;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: transparent;
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translate3d(0, -8px, 0) scale3d(1.01, 1.01, 1);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 94, 59, 0.18);
  background-image: var(--gradient-card-hover);
}

.card:hover::before {
  background-color: var(--primary-deep);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--border-radius-md);
  background-color: var(--primary-light);
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 26px;
  transition: var(--transition-smooth);
}

.card:hover .card-icon {
  background-color: var(--primary-deep);
  color: var(--white);
  transform: rotate(5deg) scale(1.05);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.card p {
  color: var(--neutral-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.card-bullets {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-bullets li {
  font-size: 0.95rem;
  color: var(--neutral-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-bullets li::before {
  content: '✓';
  color: var(--primary-mid);
  font-weight: 800;
}

/* ==========================================
   PRODUCT CATALOG CARDS
   ========================================== */
.product-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}

.filter-btn {
  background-color: var(--neutral-light);
  border: 1px solid var(--neutral-border);
  color: var(--neutral-muted);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-btn:hover {
  background-color: var(--primary-light);
  color: var(--primary-deep);
  border-color: var(--primary-soft);
}

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

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

.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--neutral-border);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  will-change: transform, box-shadow, border-color;
}

.product-card:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: var(--shadow-xl);
  border-color: rgba(21, 94, 59, 0.22);
}

.product-image-container {
  height: 220px;
  position: relative;
  overflow: hidden;
  background-color: var(--neutral-light);
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  will-change: transform;
}

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

.product-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  opacity: 0.15;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image-container::after {
  opacity: 0.35;
}

.product-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-deep);
  border: 1px solid var(--primary-soft);
  z-index: 2;
}

.product-info {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.product-info p {
  font-size: 0.95rem;
  color: var(--neutral-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tag {
  background-color: var(--neutral-light);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  color: var(--neutral-muted);
  border: 1px solid var(--neutral-border);
}

/* ==========================================
   GLOBAL SOURCING WORLD MAP
   ========================================== */
.sourcing-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 55px;
  align-items: start;
}

@media (max-width: 992px) {
  .sourcing-layout {
    grid-template-columns: 1fr;
  }
}

.map-container {
  background-color: var(--neutral-light);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid var(--neutral-border);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.map-svg {
  width: 100%;
  height: auto;
  fill: #cbd5e1;
}

.map-marker {
  cursor: pointer;
  transition: var(--transition-smooth);
}

.map-marker circle {
  fill: var(--accent-gold);
  stroke: var(--white);
  stroke-width: 2;
  transition: var(--transition-smooth);
}

.map-marker:hover circle, .map-marker.active circle {
  fill: var(--primary-deep);
  r: 9;
  stroke: var(--accent-gold);
  stroke-width: 2.5;
}

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

.sourcing-card {
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--border-radius-md);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  will-change: transform, box-shadow, border-color;
}

.sourcing-card:hover, .sourcing-card.active {
  border-color: var(--primary-deep);
  box-shadow: var(--shadow-md);
  transform: translate3d(0, -3px, 0);
}

.sourcing-card.active {
  background-color: var(--primary-light);
  border-color: var(--primary-mid);
}

.sourcing-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.country-flag {
  font-size: 1.75rem;
}

.country-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--neutral-dark);
}

.sourcing-card-products {
  font-size: 0.9rem;
  color: var(--neutral-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sourcing-card-products li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sourcing-card-products li::before {
  content: '•';
  color: var(--accent-gold);
  font-weight: bold;
  font-size: 1.1rem;
}

/* ==========================================
   QUALITY PAGE CHECKLIST
   ========================================== */
.quality-assurance-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .quality-assurance-grid {
    grid-template-columns: 1fr;
  }
}

.quality-assurance-visual {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--white);
  outline: 1px solid var(--neutral-border);
  height: 440px;
}

.quality-assurance-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.quality-assurance-visual:hover img {
  transform: scale(1.05);
}

.quality-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quality-item {
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  padding: 24px 28px;
  border-radius: var(--border-radius-md);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  will-change: transform, box-shadow, border-color;
}

.quality-item:hover {
  border-color: var(--primary-soft);
  box-shadow: var(--shadow-md);
  transform: translate3d(6px, 0, 0);
}

.quality-icon {
  background-color: var(--primary-light);
  color: var(--primary-deep);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.quality-item-content h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.quality-item-content p {
  font-size: 0.95rem;
  color: var(--neutral-muted);
}

/* ==========================================
   CONTACT PAGE & FORM CONTROLS
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

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

.contact-info-panel {
  background-color: var(--primary-deep);
  color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 55px 45px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.contact-info-panel h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info-panel p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 45px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-detail-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.contact-detail-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-detail-content p, .contact-detail-content a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
}

.contact-form-panel {
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--border-radius-lg);
  padding: 50px 45px;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--neutral-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--neutral-border);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--neutral-dark);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-deep);
  box-shadow: 0 0 0 5px rgba(21, 94, 59, 0.12);
}

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

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

@media (max-width: 768px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  width: 90%;
  max-width: 500px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  transform: translate3d(0, 20px, 0) scale3d(0.97, 0.97, 1);
  opacity: 0;
  box-shadow: var(--shadow-xl);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--neutral-muted);
}

/* Bottom Sheet Mobile Styling */
@media (max-width: 768px) {
  .modal-overlay:has(.bottom-sheet) {
    align-items: flex-end;
  }
  
  .modal-content.bottom-sheet {
    border-radius: 24px 24px 0 0;
    padding: 35px 25px 25px 25px;
    margin: 0;
    max-height: 90vh;
    overflow-y: auto;
    transform: translate3d(0, 100%, 0) scale3d(1, 1, 1);
  }
  
  .modal-overlay.active .modal-content.bottom-sheet {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
  
  .sheet-drag-handle {
    display: block;
    width: 40px;
    height: 5px;
    background-color: var(--neutral-border);
    border-radius: 10px;
    margin: 0 auto 25px auto;
  }
}

@media (min-width: 769px) {
  .sheet-drag-handle {
    display: none;
  }
}

/* ==========================================
   FOOTER & FLOATING WHATSAPP
   ========================================== */
.footer {
  background-color: var(--primary-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 90px 0 0 0;
  font-size: 0.98rem;
  border-top: 5px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.80fr 0.80fr 1.1fr;
  gap: 50px;
  margin-bottom: 70px;
}

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

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

.footer-col h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 28px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-brand .logo-title {
  color: var(--white);
}

.footer-brand .logo-subtitle {
  color: rgba(255, 255, 255, 0.45);
}

.footer-brand p {
  margin: 24px 0;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a::before {
  content: '→';
  color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
}

.footer-contact-item span {
  font-size: 1.2rem;
}

.footer-bottom {
  background-color: var(--neutral-dark);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* WhatsApp Floater with Active Pulse Animation */
.whatsapp-float {
  position: fixed;
  bottom: 35px;
  right: 35px;
  background-color: #25d366;
  color: var(--white);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  z-index: 99;
  font-size: 2.2rem;
  transition: var(--transition-smooth);
  animation: wa-pulse 2.2s infinite;
  will-change: box-shadow;
}

.whatsapp-float:hover {
  transform: scale(1.1) translate3d(0, -3px, 0);
  background-color: #128c7e;
}

/* ==========================================
   PARTNERS
   ========================================== */
.partner-tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.partner-tag-card {
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  padding: 28px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  will-change: transform, box-shadow, border-color;
}

.partner-tag-card:hover {
  border-color: var(--primary-deep);
  box-shadow: var(--shadow-md);
  transform: translate3d(0, -4px, 0);
}

.partner-tag-icon {
  background-color: var(--primary-light);
  color: var(--primary-deep);
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================
   PREMIUM ANIMATIONS & EFFECTS
   ========================================== */

/* 1. Button Ripple Effect */
.btn {
  position: relative;
  overflow: hidden;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  background-color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.btn-outline .ripple {
  background-color: rgba(9, 51, 30, 0.2);
}
@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* 2. Page Shimmer Transition */
.page-shimmer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--neutral-light) 0%, #ffffff 50%, var(--neutral-light) 100%);
  background-size: 200% 200%;
  z-index: 9999;
  animation: shimmer-bg 1.5s infinite linear;
  transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}
.page-shimmer-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}
@keyframes shimmer-bg {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* 3. Pulse Breathing Icon */
.breathe-anim {
  animation: pulseScale 3s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
@keyframes pulseScale {
  0% { transform: scale3d(1, 1, 1); }
  100% { transform: scale3d(1.12, 1.12, 1); }
}

/* 4. Highlight Text (Solid Brand Gold Accent) */
.highlight-text {
  color: var(--accent-gold);
  background: none;
  font-weight: 700;
}
.highlight-text.visible {
  background: none;
}

/* 5. Animated Counters Section */
.counter-section {
  padding: 80px 0;
  background-color: var(--primary-deep);
  color: var(--white);
  border-top: 4px solid var(--accent-gold);
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
@media (max-width: 992px) {
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .counter-grid { grid-template-columns: 1fr; gap: 40px; }
}
.counter-box h3 {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 5px;
  font-variant-numeric: tabular-nums;
  display: flex;
  justify-content: center;
  align-items: center;
}
.counter-box p {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* 6. Endless Marquee */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  background: var(--white);
  padding: 10px 0;
}
.marquee-wrapper::before, .marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.marquee-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: scroll-marquee 25s linear infinite;
  width: max-content;
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

/* ==========================================
   7. INTERACTIVE FAQ ACCORDION
   ========================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.faq-item:hover {
  border-color: var(--primary-soft);
  box-shadow: var(--shadow-md);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-deep);
  cursor: pointer;
  outline: none;
  gap: 16px;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--accent-gold);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before {
  width: 16px;
  height: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 16px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr;
}
.faq-answer {
  overflow: hidden;
}
.faq-answer-inner {
  padding: 0 24px 24px 24px;
  color: var(--neutral-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ==========================================
   8. PERFORMANCE OPTIMIZATIONS
   ========================================== */
.reveal, .reveal-scale, .anim-fade-in-up, .anim-scale-in, .breathe-anim, .ripple {
  will-change: transform, opacity;
}

a, button, .btn {
  touch-action: manipulation;
}

/* ==========================================
   9. PREMIUM SVG ICONS (LUCIDE)
   ========================================== */
.lucide {
  stroke-width: 1.5;
  transition: var(--transition-smooth);
}

.logo-icon .lucide {
  color: var(--primary-deep);
  fill: rgba(21, 94, 59, 0.1); /* Subtle emerald tint inside leaf */
  width: 28px;
  height: 28px;
  stroke-width: 2;
  filter: drop-shadow(0 2px 4px rgba(21, 94, 59, 0.2));
}

.card-icon .lucide {
  color: var(--accent-gold);
  fill: rgba(224, 147, 16, 0.1); /* Gold glow inside */
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
  filter: drop-shadow(0 4px 12px rgba(224, 147, 16, 0.25));
}

.footer-contact-item .lucide {
  color: var(--accent-gold);
  stroke-width: 2;
}

.whatsapp-float .lucide {
  color: var(--white);
  fill: var(--white);
  width: 28px;
  height: 28px;
}

/* ==========================================
   10. CARD BULLETS (PREMIUM CHECKMARKS)
   ========================================== */
.card-bullets {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--neutral-muted);
  font-size: 0.95rem;
}

.card-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23155e3b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ==========================================
   11. FLOATING 3D ACCENTS
   ========================================== */
.floating-accent {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: float-3d 6s ease-in-out infinite;
  opacity: 0.6;
}

.floating-accent svg {
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.9);
  fill: rgba(255, 255, 255, 0.15);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

.floating-accent.gold svg {
  color: var(--accent-gold);
  fill: rgba(224, 147, 16, 0.4);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

@keyframes float-3d {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-25px) rotate(8deg) scale(1.08);
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* ==========================================
   12. BANNER CARDS
   ========================================== */
.banner-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  min-height: 480px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.banner-card:hover { transform: translateY(-5px); }

.banner-card.bg-yellow { background-color: var(--accent-gold); color: var(--primary-deep); }
.banner-card.bg-green { background-color: var(--primary-mid); color: #fff; }
.banner-card.bg-emerald { background-color: var(--primary-deep); color: #fff; }

.banner-card-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.banner-tag {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-title {
  font-family: 'Dancing Script', cursive;
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 15px;
  font-weight: 700;
}

.banner-text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 25px;
  font-weight: 500;
}

.banner-btn {
  background: #fff;
  color: #113a22;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.banner-btn:hover { background: var(--accent-gold); color: #fff; }

.banner-card-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 55%;
  z-index: 1;
}

.banner-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to top, black 50%, transparent 100%);
  mask-image: linear-gradient(to top, black 50%, transparent 100%);
}

@media (max-width: 768px) {
  .banner-card { padding: 25px 20px; min-height: 250px; }
  .banner-title { font-size: 32px; margin-bottom: 10px; }
  .banner-text { font-size: 13px; margin-bottom: 0; }
  .banner-card-content { align-items: center; text-align: center; }
  .banner-card-image { height: 45%; }
}

/* ==========================================
   13. PREMIUM PRODUCT CATEGORY CARDS
   ========================================== */
.product-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  min-height: 350px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

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

.product-card-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.product-card-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%);
  z-index: 2;
}

.product-card-content {
  position: relative;
  z-index: 3;
}

.product-card-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.product-card-content p {
  font-size: 14px;
}

/* ==========================================
   HOMEPAGE GROUP OF COMPANIES SHOWCASE
   ========================================== */
.group-showcase-section {
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.group-showcase-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 90%, rgba(224, 147, 16, 0.02) 0%, transparent 50%),
                    radial-gradient(circle at 90% 10%, rgba(21, 94, 59, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

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

@media (max-width: 992px) {
  .group-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.group-card {
  background-color: var(--neutral-light);
  border: 1px solid var(--neutral-border);
  border-radius: var(--border-radius-lg);
  padding: 45px 35px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.group-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-lg);
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.group-card:hover {
  transform: translate3d(0, -8px, 0);
  background-color: var(--white);
  border-color: var(--primary-soft);
  box-shadow: var(--shadow-lg);
}

.group-card:hover::after {
  border-color: var(--accent-gold);
}

.group-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background-color: var(--primary-light);
  color: var(--primary-deep);
  margin-bottom: 30px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.4s ease,
              color 0.4s ease;
}

.group-card:hover .group-card-icon {
  transform: scale(1.12) rotate(5deg);
  background-color: var(--primary-deep);
  color: var(--white);
}

.group-card-title {
  font-size: 1.25rem;
  color: var(--primary-deep);
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.35;
  min-height: 48px;
}

.group-card-desc {
  font-size: 0.95rem;
  color: var(--neutral-muted);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.group-card-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  transition: color 0.3s ease;
}

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

.group-card:hover .group-card-link {
  color: var(--accent-gold);
}

.group-card:hover .group-card-link i {
  transform: translate3d(4px, 0, 0);
}

/* ==========================================
   PREMIUM TOAST NOTIFICATION
   ========================================== */
.premium-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(21, 94, 59, 0.95); /* Dark green brand color */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(224, 147, 16, 0.3); /* Subtle gold border */
  border-radius: var(--border-radius-md);
  padding: 16px 24px;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1000;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease,
              visibility 0.4s ease;
}

.premium-toast.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.premium-toast .toast-icon {
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-toast .toast-content strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.premium-toast .toast-content p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 576px) {
  .premium-toast {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 14px 20px;
  }
}

