/* ==========================================================================
   HCP CASHEW PROCESSING™ - LUXURY GREEN-BASED DESIGN SYSTEM
   Theme: Deep Forest Emerald, Jade Green & Champagne Gold Accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Primary Green Palette (Deep Emerald, Forest & Vibrant Jade) */
  --primary-green: #059669;
  --primary-green-light: #10b981;
  --primary-green-dark: #047857;
  --primary-green-deep: #064e3b;
  --primary-green-forest: #022c22;
  --green-gradient: linear-gradient(135deg, #10b981 0%, #059669 50%, #064e3b 100%);
  --emerald-gradient: linear-gradient(135deg, #059669 0%, #022c22 100%);
  --green-glow: rgba(16, 185, 129, 0.4);
  --emerald-card-glow: 0 15px 35px -5px rgba(5, 150, 105, 0.25);

  /* Secondary Accent Gold/Champagne */
  --accent-gold: #d97706;
  --accent-gold-light: #fbbf24;
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gold-glow: rgba(245, 158, 11, 0.35);

  /* Neutrals & Surfaces (Clean Botanical Tones) */
  --bg-dark: #051a12;
  --bg-darker: #02100a;
  --bg-card: rgba(6, 36, 26, 0.75);
  --bg-card-hover: rgba(10, 52, 38, 0.85);
  --bg-light: #f2f8f5;
  --bg-light-surface: #ffffff;
  --text-main: #0f291e;
  --text-muted: #496357;
  --text-light: #f0fdf4;
  --text-light-muted: #a7f3d0;
  --border-light: #e1ede6;
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-green: rgba(16, 185, 129, 0.35);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Shadows & Glass */
  --glass-bg: rgba(255, 255, 255, 0.94);
  --glass-dark: rgba(5, 26, 18, 0.95);
  --glass-border: 1px solid rgba(255, 255, 255, 0.25);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(2, 44, 34, 0.12);
  --shadow-xl: 0 20px 40px -15px rgba(2, 44, 34, 0.28);
  --shadow-green: 0 15px 35px -10px rgba(5, 150, 105, 0.45);
  --shadow-gold: 0 15px 35px -10px rgba(217, 119, 6, 0.4);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--primary-green-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #063828;
  font-weight: 700;
  line-height: 1.25;
}

.font-serif {
  font-family: var(--font-serif);
}

.text-gold {
  color: var(--accent-gold-light) !important;
}

.text-green {
  color: var(--primary-green-light) !important;
}

.text-emerald {
  color: var(--primary-green-dark) !important;
}

.gradient-text-green {
  background: var(--green-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.container-custom {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Particle Canvas Engine Container */
.particle-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */

.top-announcement {
  background: var(--primary-green-forest);
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
  position: relative;
  z-index: 1001;
}

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

.top-contact-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-contact-links a {
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-contact-links a:hover {
  color: var(--primary-green-light);
}

.top-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

.top-social-links a:hover {
  background: var(--primary-green-light);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   MAIN NAVBAR & LUXURY GREEN MEGA MENU
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(5, 150, 105, 0.12);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(2, 44, 34, 0.08);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.brand-logo:hover img {
  transform: scale(1.05);
}

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--primary-green-deep);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
}

.brand-title span {
  color: var(--primary-green);
  margin: 0 2px;
}

.brand-title sup.logo-tm {
  font-size: 0.55em;
  color: var(--accent-gold);
  font-weight: 900;
  margin-left: 2px;
  top: -0.5em;
  position: relative;
}

.brand-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-green-dark);
}

/* Desktop Navigation Menu */
.nav-menu-desktop {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  list-style: none;
}

.nav-item-dropdown {
  position: relative;
}

.nav-link-item {
  position: relative;
  font-weight: 600;
  font-size: 0.92rem;
  color: #133a2a;
  padding: 1rem 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-smooth);
}

.nav-link-item i.nav-chevron {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  color: #6ee7b7;
}

.nav-item-dropdown:hover .nav-link-item i.nav-chevron {
  transform: rotate(180deg);
  color: var(--primary-green);
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--green-gradient);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

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

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

/* Standard Dropdown Menu */
.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(2, 44, 34, 0.15);
  border: 1px solid rgba(5, 150, 105, 0.15);
  padding: 0.8rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition-smooth);
  z-index: 1050;
}

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

.dropdown-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  color: #133a2a;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.dropdown-link-item i {
  width: 20px;
  color: var(--primary-green);
  font-size: 0.95rem;
}

.dropdown-link-item:hover {
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary-green-dark);
  transform: translateX(4px);
}

/* ==========================================================================
   MEGA MENU CONTAINER & GRID
   ========================================================================== */

.mega-menu-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 1140px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px -15px rgba(2, 44, 34, 0.25), 0 0 0 1px rgba(5, 150, 105, 0.12);
  padding: 2.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 1100;
}

.nav-item-dropdown.has-mega-menu:hover .mega-menu-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.15fr 1.25fr;
  gap: 1.8rem;
}

.mega-menu-col {
  display: flex;
  flex-direction: column;
}

.mega-menu-heading {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-green-deep);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid rgba(16, 185, 129, 0.25);
  padding-bottom: 6px;
}

.mega-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.mega-menu-item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  color: #1a3d2e;
  font-size: 0.86rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.mega-menu-item-link .tag {
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: #e8f5ed;
  color: var(--primary-green-dark);
  font-weight: 700;
}

.mega-menu-item-link:hover {
  background: rgba(16, 185, 129, 0.12);
  color: var(--primary-green-dark);
  transform: translateX(4px);
}

.mega-menu-item-link:hover .tag {
  background: var(--green-gradient);
  color: #ffffff;
}

/* Certifications Box in Mega Menu */
.mega-cert-card {
  background: #f0fbf5;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.mega-cert-card:hover {
  background: #e1f7ec;
  transform: translateX(3px);
}

.mega-cert-card i {
  font-size: 1.4rem;
  color: var(--primary-green);
}

.mega-cert-card strong {
  display: block;
  font-size: 0.84rem;
  color: #064e3b;
}

.mega-cert-card span {
  font-size: 0.72rem;
  color: #047857;
}

/* Mega Menu Featured Spotlight Card */
.mega-menu-spotlight {
  background: radial-gradient(circle at 70% 30%, #063826 0%, #021a10 100%);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  color: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 15px 30px rgba(2, 44, 34, 0.4);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.mega-spotlight-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.mega-menu-spotlight h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.mega-menu-spotlight p {
  color: #a7f3d0;
  font-size: 0.78rem;
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.mega-menu-footer-bar {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(5, 150, 105, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.mega-menu-footer-bar a {
  font-weight: 700;
  color: var(--primary-green-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mega-menu-footer-bar a:hover {
  color: var(--primary-green);
  transform: translateX(4px);
}

/* ==========================================================================
   BUTTONS & ANIMATED SHIMMER EFFECTS
   ========================================================================== */

.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  animation: buttonShimmer 3s infinite;
}

@keyframes buttonShimmer {
  0% { left: -100%; }
  35% { left: 140%; }
  100% { left: 140%; }
}

.btn-primary-green {
  background: var(--green-gradient);
  color: #ffffff !important;
  box-shadow: var(--shadow-green);
}

.btn-primary-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 35px -8px rgba(5, 150, 105, 0.6);
  color: #ffffff !important;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #ffffff !important;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 35px -8px rgba(217, 119, 6, 0.55);
  color: #ffffff !important;
}

.btn-emerald {
  background: var(--emerald-gradient);
  color: #ffffff !important;
  box-shadow: var(--shadow-green);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -5px rgba(2, 44, 34, 0.6);
  color: #ffffff !important;
}

.btn-outline-green {
  background: transparent;
  color: var(--primary-green-dark) !important;
  border: 2px solid var(--primary-green);
}

.btn-outline-green:hover {
  background: var(--green-gradient);
  color: #ffffff !important;
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold) !important;
  border: 2px solid var(--accent-gold);
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: #ffffff !important;
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary-green-deep) !important;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-gold {
  background: rgba(245, 158, 11, 0.15);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary-green-deep);
  cursor: pointer;
  padding: 4px;
}

/* ==========================================================================
   ANIMATED HEADINGS & CARD BORDERS
   ========================================================================== */

.heading-animated {
  position: relative;
  display: inline-block;
}

.heading-animated::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--green-gradient);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.heading-animated:hover::after {
  width: 100%;
}

.card-glow-border {
  position: relative;
  border: 1px solid rgba(5, 150, 105, 0.12);
  transition: var(--transition-smooth);
}

.card-glow-border:hover {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 15px 35px -5px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-luxury {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, #063828 0%, #021a10 70%, #010d08 100%);
  color: #ffffff;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(rgba(16, 185, 129, 0.15) 1.5px, transparent 1.5px),
    radial-gradient(rgba(245, 158, 11, 0.08) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  opacity: 0.65;
  pointer-events: none;
}

.hero-glow-sphere-1 {
  position: absolute;
  top: -10%;
  right: 5%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0) 70%);
  filter: blur(70px);
  pointer-events: none;
  animation: floatSphere 8s ease-in-out infinite alternate;
}

.hero-glow-sphere-2 {
  position: absolute;
  bottom: -15%;
  left: 0%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.25) 0%, rgba(2, 44, 34, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
}

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

.hero-content {
  max-width: 640px;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  color: #6ee7b7;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 1.3rem;
  letter-spacing: -1px;
}

.hero-title span.highlight {
  background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: #d1fae5;
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #34d399;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: #a7f3d0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual-card {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(16, 185, 129, 0.25);
  border: 1px solid rgba(16, 185, 129, 0.3);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: var(--transition-smooth);
}

.hero-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.floating-feature-card {
  position: absolute;
  background: rgba(4, 30, 20, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(16, 185, 129, 0.45);
  padding: 1rem 1.3rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  animation: floatCard 4s ease-in-out infinite alternate;
}

.floating-feature-card.pos-1 {
  top: 8%;
  left: -8%;
}

.floating-feature-card.pos-2 {
  bottom: 8%;
  right: -5%;
  animation-delay: 2s;
}

.floating-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
}

.floating-card-text strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.floating-card-text span {
  font-size: 0.75rem;
  color: #a7f3d0;
}

/* ==========================================================================
   TRUST BADGES & CERTIFICATIONS BAR
   ========================================================================== */

.trust-ribbon-section {
  background: #ffffff;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(5, 150, 105, 0.1);
  box-shadow: var(--shadow-sm);
}

.trust-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-ribbon-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-ribbon-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.12);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.trust-ribbon-item:hover .trust-ribbon-icon {
  background: var(--green-gradient);
  color: #ffffff;
  transform: rotate(5deg) scale(1.08);
}

.trust-ribbon-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #063828;
  margin-bottom: 2px;
}

.trust-ribbon-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

.section-padding {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.8rem;
}

.section-header .section-subtitle {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-green);
  margin-bottom: 0.6rem;
  display: block;
}

.section-header .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #063828;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-header .section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Dark Section variant */
.section-dark {
  background: radial-gradient(circle at 50% 50%, #062b1f 0%, #02140d 100%);
  color: #ffffff;
}

.section-dark .section-header .section-title {
  color: #ffffff;
}

.section-dark .section-header .section-desc {
  color: #a7f3d0;
}

/* ==========================================================================
   ABOUT / STORY PREVIEW
   ========================================================================== */

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

.story-visual-wrap {
  position: relative;
}

.story-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid #ffffff;
}

.story-main-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-main-img:hover img {
  transform: scale(1.04);
}

.story-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--emerald-gradient);
  color: #ffffff;
  padding: 1.5rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(2, 44, 34, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.story-experience-badge strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  color: #6ee7b7;
}

.story-experience-badge span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  line-height: 1.25;
  color: #063828;
}

.story-content p {
  color: #335345;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.story-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem 0;
}

.story-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.story-feat-item i {
  color: var(--primary-green-light);
  font-size: 1.1rem;
  margin-top: 4px;
}

.story-feat-item span {
  font-weight: 600;
  font-size: 0.92rem;
  color: #0f2e21;
}

/* ==========================================================================
   PRODUCT GRADE EXPLORER & CATALOG
   ========================================================================== */

.grade-filter-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.grade-filter-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1.5px solid #d1fae5;
  background: #ffffff;
  color: #133a2a;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.grade-filter-btn:hover {
  border-color: var(--primary-green);
  color: var(--primary-green-dark);
}

.grade-filter-btn.active {
  background: var(--green-gradient);
  border-color: transparent;
  color: #ffffff;
  box-shadow: var(--shadow-green);
}

.grades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 2rem;
}

.grade-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(5, 150, 105, 0.12);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.grade-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(2, 44, 34, 0.18);
  border-color: rgba(16, 185, 129, 0.5);
}

.grade-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #e8f5ed;
}

.grade-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.grade-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(4, 30, 20, 0.9);
  backdrop-filter: blur(8px);
  color: #6ee7b7;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.grade-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.grade-card-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-green);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.grade-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #063828;
  margin-bottom: 4px;
}

.grade-card-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.grade-specs-mini {
  background: #f0fbf5;
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  margin-bottom: 1.2rem;
  border: 1px solid #d1fae5;
}

.grade-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 3px 0;
}

.grade-spec-row .label {
  color: #3b6051;
  font-weight: 500;
}

.grade-spec-row .val {
  color: #063828;
  font-weight: 700;
}

.grade-card-desc {
  font-size: 0.88rem;
  color: #335345;
  line-height: 1.55;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.grade-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 1rem;
  border-top: 1px solid #e1ede6;
}

/* ==========================================================================
   WHOLESALE ESTIMATOR & LOGISTICS CALCULATOR
   ========================================================================== */

.calculator-wrapper {
  background: rgba(4, 28, 19, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  color: #ffffff;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.calc-input-group {
  margin-bottom: 1.5rem;
}

.calc-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #d1fae5;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-select, .calc-input {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.calc-select option {
  background: #062b1f;
  color: #ffffff;
}

.calc-select:focus, .calc-input:focus {
  outline: none;
  border-color: var(--primary-green-light);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.calc-slider-wrap {
  margin-top: 0.8rem;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  accent-color: var(--primary-green-light);
}

.calc-results-card {
  background: rgba(6, 42, 29, 0.7);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.calc-result-header {
  font-size: 1.25rem;
  font-weight: 800;
  color: #6ee7b7;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.8rem;
}

.calc-stat-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(16, 185, 129, 0.2);
}

.calc-stat-metric span {
  color: #a7f3d0;
  font-size: 0.9rem;
}

.calc-stat-metric strong {
  color: #ffffff;
  font-size: 1.15rem;
  font-family: var(--font-heading);
}

/* ==========================================================================
   7-STAGE PROCESSING ROADMAP
   ========================================================================== */

.roadmap-timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  position: relative;
}

.roadmap-step-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid #d1fae5;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-smooth);
}

.roadmap-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-xl);
}

.roadmap-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-gradient);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-green);
}

.roadmap-step-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #063828;
  margin-bottom: 0.6rem;
}

.roadmap-step-desc {
  font-size: 0.9rem;
  color: #3b6051;
  line-height: 1.6;
}

/* ==========================================================================
   MEDIA & GALLERY LIGHTBOX
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 78, 59, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-overlay i {
  color: #ffffff;
  font-size: 2rem;
  transform: scale(0.5);
  transition: var(--transition-bounce);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* ==========================================================================
   TESTIMONIALS & REVIEWS
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #d1fae5;
  position: relative;
  transition: var(--transition-smooth);
}

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

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.98rem;
  color: #133a2a;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-green);
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #063828;
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-accordion-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid #d1fae5;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.3rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: #063828;
  background: #ffffff;
  user-select: none;
}

.faq-question i {
  font-size: 1rem;
  color: var(--primary-green);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: #f0fbf5;
}

.faq-answer-inner {
  padding: 1.2rem 1.6rem 1.6rem;
  color: #335345;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   INTERACTIVE INQUIRY & CONTACT SECTION
   ========================================================================== */

.inquiry-section-wrapper {
  background: radial-gradient(circle at 10% 10%, #063828 0%, #01140c 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-xl);
}

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

.inquiry-info-box h3 {
  color: #ffffff;
  font-size: 2.3rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.inquiry-info-box p {
  color: #d1fae5;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.inquiry-direct-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.inquiry-link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #ffffff;
  transition: var(--transition-smooth);
}

.inquiry-link-card:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--primary-green-light);
  transform: translateX(6px);
  color: #ffffff;
}

.inquiry-link-card i {
  font-size: 1.4rem;
  color: #34d399;
}

.inquiry-form-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--text-main);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.form-group-custom {
  margin-bottom: 1.2rem;
}

.form-group-custom label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #133a2a;
  margin-bottom: 0.4rem;
}

.form-control-custom {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #a7f3d0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #02120b;
  color: #a7f3d0;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2.5px;
  background: var(--green-gradient);
  border-radius: 2px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: #94a3b8;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: #a7f3d0;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--primary-green-light);
  font-size: 1rem;
  margin-top: 3px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS & MOBILE DRAWER
   ========================================================================== */

.floating-action-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition-bounce);
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.phone {
  background: var(--green-gradient);
}

.floating-btn:hover {
  transform: scale(1.12);
  color: #ffffff;
}

/* Mobile Offcanvas Drawer with Accordion Support */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100%;
  background: #03140c;
  color: #ffffff;
  z-index: 2001;
  padding: 1.8rem 1.5rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer-overlay.active .mobile-drawer {
  transform: translateX(-340px);
}

.mobile-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 1.8rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.mobile-drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mobile-menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  color: #e2e8f0;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}

.mobile-menu-item-head a {
  color: #e2e8f0;
  text-decoration: none;
}

.mobile-menu-item-head a.active, .mobile-menu-item-head:hover a {
  color: var(--primary-green-light);
}

.mobile-submenu-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-left: 2px solid rgba(16, 185, 129, 0.35);
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
}

.mobile-submenu-collapse a {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
}

.mobile-submenu-collapse a:hover, .mobile-submenu-collapse a.active {
  color: var(--primary-green-light);
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #031c12;
  color: #ffffff;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-full);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--primary-green-light);
  z-index: 9999;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition-bounce);
}

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

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.lightbox-img-wrap {
  max-width: 85%;
  max-height: 85%;
  position: relative;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  border: 2px solid rgba(16, 185, 129, 0.3);
}

.lightbox-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes floatSphere {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.08); }
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1200px) {
  .mega-menu-wrapper {
    width: 95vw;
    left: 2.5vw;
    transform: translateY(15px);
  }
  .nav-item-dropdown.has-mega-menu:hover .mega-menu-wrapper {
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-grid, .story-grid, .calculator-grid, .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual-card {
    order: -1;
    max-width: 540px;
    margin: 0 auto;
  }
  .trust-ribbon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mega-menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-menu-desktop, .nav-actions .btn-custom {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .top-announcement .flex-wrap-container {
    justify-content: center;
  }
  .top-contact-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .story-features-list {
    grid-template-columns: 1fr;
  }
  .trust-ribbon-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .inquiry-section-wrapper {
    padding: 2rem 1.2rem;
  }
  .inquiry-form-card {
    padding: 1.5rem;
  }
  .floating-feature-card {
    display: none;
  }
}
