/* =============================================
   GREEN LIFE AGRO - MAIN STYLESHEET
   UI/UX Designer: Premium B2B Export Website
   ============================================= */

/* ============================================
   CSS VARIABLES - BRAND COLORS (From Logo)
   ============================================ */
:root {
  /* ===========================================
     COLOR PALETTE - From Green Life Agro Logo
     =========================================== */

  /* Primary Colors */
  --primary: #1f683b;
  /* Green Pea - Main brand color */
  --primary-dark: #165a30;
  /* Darker shade for hover states */
  --primary-light: #93bb46;
  /* Sushi - Fresh accent green */

  /* Secondary & Accent */
  --secondary: #7ca486;
  /* Amulet - Soft sage green */
  --secondary-light: #a3c0aa;
  /* Lighter amulet */
  --accent: #93bb46;
  /* Sushi - Vibrant highlight */
  --accent-light: #b4d06a;
  /* Lighter sushi */
  --accent-dark: #7aa53a;
  /* Darker sushi */

  /* Background Colors */
  --bg-body: #ebf3e3;
  /* Kidnapper - Light mint cream */
  --bg-card: #FFFFFF;
  --bg-card-hover: #f5faf0;
  --bg-light: #e0edda;
  /* Slightly darker than body */
  --bg-dark: #1f683b;
  /* Green Pea for dark sections */
  --bg-darker: #165a30;

  /* Text Colors */
  --text-dark: #1a2e1f;
  /* Very dark green-tinted black */
  --text-body: #2d4a35;
  /* Dark forest green */
  --text-light: #5a7a62;
  /* Medium sage */
  --text-white: #FFFFFF;
  --text-muted: #7ca486;
  /* Amulet for muted text */

  /* Complementary */
  --white: #FFFFFF;
  --cream: #ebf3e3;
  /* Kidnapper */
  --gold: #93bb46;
  /* Sushi as accent instead of gold */

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-gold: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  --gradient-hero: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 15px 35px rgba(46, 125, 50, 0.2);
  --shadow-gold: 0 4px 15px rgba(147, 187, 70, 0.4);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Layout */
  --container-width: 1200px;
  --section-padding: 80px 0;
}

/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&family=Roboto:wght@400;500;700;900&display=swap');

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

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

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-body);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

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

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

ul,
ol {
  list-style: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
  background-color: var(--bg-body);
  /* Light mint background */
}

.section-light {
  background-color: var(--bg-light);
  /* Slightly darker mint */
}

.section-dark {
  background-color: var(--primary);
  /* Green Pea */
  color: var(--text-white);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  color: var(--primary);
  /* Green Pea */
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
  /* Sushi gradient */
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(147, 187, 70, 0.3);
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 20px auto 0;
}

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

.text-white {
  color: var(--text-white);
}

.text-primary {
  color: var(--primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: var(--text-white);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--primary-light);
  border: 2px solid var(--primary);
}

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

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

.btn-outline:hover {
  background: var(--text-white);
  color: var(--primary-dark);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-light) 100%);
  color: var(--primary-dark);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 37, 0.4);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--gold) 100%);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ============================================
   PRELOADER - Elegant Professional Loader
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-body);
  /* Light Kidnapper background */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Elegant Loader Container */
.loader-container {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating Circle */
.loader-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--bg-light);
  border-top-color: var(--primary-dark);
  border-right-color: var(--primary-light);
  animation: loaderSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-circle-inner {
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--primary-light);
  border-left-color: var(--primary-dark);
  animation: loaderSpinReverse 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

/* Center Logo Icon */
.loader-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(30, 142, 78, 0.3);
  animation: logoPulse 2s ease-in-out infinite;
}

.loader-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
}

/* Fallback leaf icon if no logo */
.loader-leaf {
  font-size: 1.8rem;
}

/* Preloader Text */
.preloader-text {
  margin-top: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 1px;
  animation: textFade 2s ease-in-out infinite;
}

/* Loading Dots */
.loading-dots {
  display: inline-flex;
  gap: 4px;
  margin-left: 5px;
}

.loading-dots span {
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: dotBounce 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(1) {
  animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Animations */
@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loaderSpinReverse {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(27, 107, 58, 0.15);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(27, 107, 58, 0.25);
  }
}

@keyframes textFade {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

@keyframes dotBounce {

  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  40% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* Legacy support for old loader markup */
.leaf-loader {
  display: none;
}

.preloader-text {
  margin-top: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--primary-light);
  font-weight: 600;
  letter-spacing: 1px;
}

/* Old spinner (keeping for fallback) */
.spinner {
  display: none;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  /* Clean white header */
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-normal);
  border-bottom: 1px solid var(--bg-light);
  /* Subtle mint border */
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

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

.logo img {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
  border-radius: 6px;
  object-fit: contain;
}

.logo:hover img {
  transform: scale(1.03);
}

/* Company name text - always visible alongside logo */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .company-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.logo-text .company-name span {
  color: var(--accent);
}

/* Footer logo styles */
.footer .logo,
.footer-brand .logo {
  margin-bottom: 15px;
}

.footer .logo img,
.footer-brand img {
  height: 60px;
  width: auto;
  border-radius: 6px;
  filter: brightness(0) invert(1);
}

.footer .logo-text .company-name,
.footer-brand .logo-text .company-name {
  color: var(--white);
  font-size: 1.4rem;
}

.footer .logo-text .company-name span,
.footer-brand .logo-text .company-name span {
  color: var(--accent-light);
}

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

.nav-link {
  padding: 10px 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--bg-light);
}

/* Products Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  padding: 10px 0;
  z-index: 100;
  border: 1px solid rgba(30, 142, 78, 0.2);
}

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

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-body);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 25px;
}

.nav-cta {
  margin-left: 15px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-light);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* ============================================
   HERO SECTION - Professional Design
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #165a30 0%, #1f683b 50%, #2a7a48 100%);
  /* Green Pea gradient */
}

/* Hero Background Image */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Gradient Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(135deg,
      rgba(22, 90, 48, 0.60) 0%,
      /* primary-dark - more transparent */
      rgba(31, 104, 59, 0.50) 50%,
      /* Green Pea - more transparent */
      rgba(124, 164, 134, 0.40) 100%);
  /* Amulet - more transparent */
}

/* Decorative Shapes */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(92, 181, 49, 0.1);
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(20px, -20px) rotate(5deg);
  }

  50% {
    transform: translate(0, -40px) rotate(0deg);
  }

  75% {
    transform: translate(-20px, -20px) rotate(-5deg);
  }
}

/* Hero Content Container */
.hero .container {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 140px);
}

.hero-content {
  max-width: 750px;
  color: var(--text-white);
  padding: 40px 0;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(147, 187, 70, 0.2);
  /* Sushi with transparency */
  border: 1px solid rgba(147, 187, 70, 0.5);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ebf3e3;
  /* Kidnapper - light text */
  margin-bottom: 25px;
  animation: fadeInUp 0.6s ease;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  font-size: 1rem;
  color: #93bb46;
  /* Sushi */
}

/* Hero Heading */
.hero-content h1 {
  font-size: 3.8rem;
  color: var(--text-white);
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 800;
  animation: fadeInUp 0.8s ease 0.1s backwards;
  letter-spacing: -1px;
}

.hero-content h1 .text-highlight {
  color: #93bb46;
  /* Sushi - vibrant highlight */
  position: relative;
  text-shadow: 0 2px 10px rgba(147, 187, 70, 0.3);
}

/* Hero Description */
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s backwards;
  max-width: 550px;
  color: rgba(255, 255, 255, 0.9);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s backwards;
  margin-bottom: 40px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #93bb46 0%, #7aa53a 100%);
  /* Sushi gradient */
  color: #1a2e1f;
  /* Dark green text for contrast */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(147, 187, 70, 0.4);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #a8cf5a 0%, #93bb46 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(147, 187, 70, 0.5);
  color: #1a2e1f;
}

.btn-hero-primary i {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
  transform: translateX(4px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
}

/* Trust Indicators */
.hero-trust {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item i {
  color: #a8e063;
  font-size: 1.1rem;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 0.6s backwards;
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
}

.scroll-arrow i {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: var(--bg-dark);
  padding: 60px 0;
  margin-top: -60px;
  position: relative;
  z-index: 30;
}

.stats-container {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border: 1px solid rgba(30, 142, 78, 0.2);
}

.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--bg-light), transparent);
}

.stat-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--primary-dark);
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(212, 168, 37, 0.3);
}

.stat-number {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================
   ABOUT SNIPPET (Home Page)
   ============================================ */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img,
.about-image .image-placeholder {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.image-placeholder {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 3rem;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content h2 {
  color: var(--primary-light);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-body);
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-weight: 500;
}

.about-feature i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 1px solid rgba(30, 142, 78, 0.15);
  text-decoration: none;
  display: block;
  color: inherit;
}

.category-card:hover {
  box-shadow: var(--glow-green);
  border-color: var(--gold);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary);
  transition: all var(--transition-normal);
}

.category-card:hover .category-icon {
  background: var(--primary);
  color: var(--text-white);
}

.category-card h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.category-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 142, 78, 0.15);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--text-white);
  font-size: 1.8rem;
}

.why-card h4 {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.why-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================
   FEATURED PRODUCTS (Home Preview)
   ============================================ */
.products-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(30, 142, 78, 0.15);
}

.product-card:hover {
  box-shadow: var(--glow-green);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--primary);
}

/* Make entire product card clickable */
a.product-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.product-card:hover {
  color: inherit;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.product-image img,
.product-image .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-image .image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-card) 100%);
  color: var(--primary);
  font-size: 3rem;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-light) 100%);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(212, 168, 37, 0.3);
}

.product-content {
  padding: 20px;
}

.product-category {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.product-card h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.4;
}

.product-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Only hide View Details link when the entire card is an anchor tag */
a.product-card .product-link {
  display: none;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  border: 1px solid rgba(30, 142, 78, 0.15);
}

.testimonial-card:hover {
  box-shadow: var(--glow-green);
  background: var(--bg-card-hover);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 5rem;
  color: var(--bg-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.testimonial-text {
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 1.2rem;
}

.author-info h5 {
  color: var(--text-dark);
  margin-bottom: 2px;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Mobile Nav Header - Hidden by default (Desktop) */
.mobile-nav-header {
  display: none;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--text-white);
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: var(--text-white);
  padding-top: 60px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  margin: 20px 0;
  line-height: 1.7;
}

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

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.1rem;
  transition: all var(--transition-normal);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-column h4 {
  color: var(--text-white);
  margin-bottom: 25px;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent-light));
  border-radius: 2px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 3px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--text-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* ============================================
   PAGE BANNER (Inner Pages)
   ============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner h1 {
  color: var(--text-white);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--text-white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .current {
  color: var(--accent);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

/* Staggered animation delays */
.animate-delay-1 {
  transition-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   EDIT MODE STYLES
   ============================================ */
.edit-mode [data-editable] {
  position: relative;
  outline: 2px dashed var(--primary-light);
  outline-offset: 3px;
  cursor: text;
}

.edit-mode [data-editable]:hover {
  outline-color: var(--primary);
  background: rgba(92, 181, 49, 0.1);
}

.edit-mode [data-editable-image] {
  position: relative;
  cursor: pointer;
}

.edit-mode [data-editable-image]::after {
  content: '📷 Click to change';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.edit-mode [data-editable-image]:hover::after {
  opacity: 1;
}

.edit-toggle {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-normal);
}

.edit-toggle:hover {
  background: var(--primary-dark);
}

.edit-toggle.active {
  background: var(--gold);
  color: var(--text-dark);
}

.edit-save-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-darker);
  padding: 15px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  display: none;
  justify-content: center;
  gap: 15px;
  z-index: 1001;
  border-top: 1px solid rgba(30, 142, 78, 0.2);
}

.edit-mode .edit-save-bar {
  display: flex;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  /* Hero - Tablet */
  .hero {
    min-height: 100vh;
  }

  .hero .container {
    min-height: calc(100vh - 140px);
  }

  .hero-content {
    max-width: 600px;
    padding: 50px 0;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-trust {
    gap: 20px;
  }

  .hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
  }

  .hero-shape-2 {
    width: 300px;
    height: 300px;
  }

  .categories-grid,
  .why-choose-grid,
  .products-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

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

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

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  /* Mobile Navigation Polish */
  .header .nav-menu,
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    height: 100vh;
    background: var(--bg-body);
    /* Light theme background */
    flex-direction: column !important;
    padding: 0;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-normal);
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    overflow-y: auto;
    display: flex !important;
  }

  .header .nav-menu.active,
  .nav-menu.active {
    right: 0 !important;
  }

  /* Mobile Menu Header with Logo */
  .mobile-nav-header {
    width: 100%;
    padding: 20px 20px;
    display: flex !important;
    /* Override global display: none */
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.5);
    /* Semi-transparent light */
  }

  .mobile-nav-header img {
    height: 40px !important;
    width: auto !important;
    max-width: 150px;
  }

  .menu-toggle {
    display: flex;
    color: var(--primary-dark);
    /* Ensure toggle is visible on light header if applicable */
  }

  .menu-close {
    background: none;
    border: none;
    color: var(--primary-dark);
    /* Dark color for close button */
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
  }

  .menu-close:hover {
    transform: rotate(90deg);
    color: var(--accent);
  }

  /* Improved Link Styling */
  .nav-link {
    width: 100%;
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.05rem;
    color: var(--text-dark);
    /* Dark text for light background */
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(22, 90, 48, 0.05);
    /* Light green hover */
    color: var(--primary);
    padding-left: 25px !important;
  }

  .nav-cta {
    margin: 30px auto;
    width: calc(100% - 60px);
    text-align: center;
  }

  .nav-cta .btn {
    display: block;
    width: 100%;
  }

  /* Refined Mobile Dropdown */
  .nav-dropdown .nav-link i {
    transform: rotate(-90deg);
  }

  .nav-dropdown.active .nav-link i {
    transform: rotate(0deg);
  }

  .dropdown-menu {
    background: #ffffff;
    /* Solid white background */
    margin: 10px 15px;
    /* Indented margin */
    padding: 5px 0;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .dropdown-menu a {
    padding: 12px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    display: block;
    color: var(--text-body);
    /* Standard text color */
  }

  .dropdown-menu a:last-child {
    border-bottom: none;
  }

  .dropdown-menu a:hover {
    color: var(--primary);
    background: rgba(22, 90, 48, 0.05);
    padding-left: 25px;
  }

  /* Featured Products Card Polish */
  .product-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }

  .product-image {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .product-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 142, 78, 0.15);
  }

  /* Hero Overlay - Mobile optimized */
  .hero-overlay {
    background: linear-gradient(180deg,
        rgba(13, 61, 31, 0.75) 0%,
        rgba(27, 107, 58, 0.65) 50%,
        rgba(45, 139, 78, 0.55) 100%);
  }

  /* Stats - 2 columns on mobile */
  .stats-container {
    grid-template-columns: 1fr 1fr;
    padding: 25px;
    gap: 20px;
  }

  .stat-item::after {
    display: none;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* About - single column on mobile */
  .about-snippet {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-content p {
    text-align: center;
  }

  .about-features {
    justify-content: center;
    grid-template-columns: 1fr;
  }

  /* Grids - 2 per row on mobile */
  .categories-grid,
  .why-choose-grid,
  .products-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Footer - single column on mobile */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Back to top - repositioned for mobile */
  .back-to-top {
    bottom: 80px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  /* Hero - Mobile Background Fix */
  .hero-background {
    background-size: contain !important;
    background-position: center center !important;
  }

  .product-card h4 {
    font-size: 0.95rem;
  }

  .product-card p {
    font-size: 0.85rem;
  }

  .product-image {
    height: 150px;
  }

  .product-content {
    padding: 15px;
  }
}

@media (max-width: 600px) {

  .categories-grid,
  .why-choose-grid,
  .products-preview-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Mobile bottom navigation removed */
.mobile-nav {
  display: none !important;
}

/* ============================================
   PAGE TRANSITIONS (Disabled)
   ============================================ */
.page-transition {
  display: none;
}

/* Product link styling */
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.product-card {
  cursor: pointer;
}

/* Emergency preloader hide - ensures preloader never blocks interaction */
@keyframes forceHidePreloader {

  0%,
  95% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.preloader {
  animation: forceHidePreloader 5s forwards;
}

.preloader.hidden {
  animation: none;
  opacity: 0;
  visibility: hidden;
}

/* ============================================
   CUSTOM SOLUTIONS BANNER
   ============================================ */
.custom-solutions-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
  padding: 28px 36px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.custom-solutions-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 250px;
  height: 250px;
  background: rgba(147, 187, 70, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.custom-solutions-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-light);
}

.custom-solutions-content {
  flex: 1;
}

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

.custom-solutions-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.custom-solutions-banner .btn {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 600;
  border: none;
  white-space: nowrap;
}

.custom-solutions-banner .btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

@media (max-width: 768px) {
  .custom-solutions-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

  .custom-solutions-content h4 {
    font-size: 1.05rem;
  }

  .custom-solutions-content p {
    font-size: 0.88rem;
  }
}