/* ============================================================
   URSHIKA AGRO - COMPLETE STYLESHEET (FIXED)
   ✅ Fixed: Zoom out centering issues
   ✅ Fixed: Content overflow left/right
   ✅ Fixed: All sections centered properly
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES & ROOT
   ============================================================ */
:root {
  --primary: #086e3e;
  --primary-light: #0a8a4e;
  --primary-dark: #065a32;
  --primary-rgb: 8, 110, 62;
  --secondary: #8dc33b;
  --secondary-light: #a0d44f;
  --secondary-dark: #7ab32e;
  --dark: #103d27;
  --dark-rgb: 16, 61, 39;
  --light: #f4f9f4;

  --white: #ffffff;
  --black: #111111;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --font-primary: "Poppins", sans-serif;
  --font-heading: "Playfair Display", serif;

  --section-padding: 100px 0;
  --container-max: 1280px;
  --container-padding: 0 20px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 5px 25px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 15px 45px rgba(0, 0, 0, 0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;

  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================================
   2. RESET & BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  /* ✅ FIX: Prevent horizontal overflow on zoom */
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
  /* ✅ FIX: Prevent horizontal overflow */
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}
h4 {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

::selection {
  background: var(--secondary);
  color: var(--white);
}

/* ============================================================
   3. LAYOUT & CONTAINERS — ✅ CORE FIX
   ============================================================ */

/* ✅ FIX: Every section must be full width and centered */
/* ✅ FIXED — Use overflow on body/html only */
section,
.marquee-section,
.cta-banner,
.bulk-order-cta,
footer {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  /* ✅ Removed overflow-x: hidden */
  position: relative;
}

/* Apply overflow control ONLY on body/html */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: var(--section-padding);
  position: relative;
  width: 100%;
}

.bg-light {
  background-color: var(--light);
}

.bg-dark-green {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
}

/* ============================================================
   4. REUSABLE COMPONENTS
   ============================================================ */

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.section-tag i {
  font-size: 0.8rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.75);
}

/* --- Text Highlights --- */
.text-highlight {
  color: var(--primary);
  position: relative;
}

.text-highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(var(--primary-rgb), 0.12);
  border-radius: 4px;
  z-index: -1;
}

.text-highlight-light {
  color: var(--secondary);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-white-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
}

.btn-white-sm:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 16px 38px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

.center-cta {
  text-align: center;
  margin-top: 50px;
}

/* ============================================================
   5. NAVBAR — ✅ FIXED CENTERING
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.logo:hover .logo-icon {
  background: var(--secondary);
  transform: rotate(10deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar:not(.scrolled) .logo-main {
  color: var(--white);
}

.navbar:not(.scrolled) .logo-sub {
  color: var(--secondary);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.navbar:not(.scrolled) .nav-link.active::after {
  background: var(--secondary);
}

.nav-cta {
  margin-left: 12px;
  padding: 10px 24px;
  font-size: 0.85rem;
}

.navbar:not(.scrolled) .nav-cta {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-trigger i {
  font-size: 0.65rem;
  transition: var(--transition);
}

.nav-dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 240px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1100;
  border: 1px solid var(--gray-100);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-right: none;
  border-bottom: none;
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--light);
  color: var(--primary);
  transform: translateX(5px);
}

.dropdown-menu a i {
  color: var(--primary);
  width: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--gray-700);
  border-radius: 3px;
  transition: var(--transition);
}

.navbar:not(.scrolled) .hamburger span {
  background: var(--white);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(6px) translateX(6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px) translateX(6px);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   6. HERO SECTION — ✅ FIXED
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(var(--dark-rgb), 0.85) 0%,
    rgba(var(--primary-rgb), 0.7) 50%,
    rgba(var(--dark-rgb), 0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 100px 20px 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-heading .text-highlight {
  color: var(--secondary);
}

.hero-heading .text-highlight::after {
  display: none;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Hero Stats — ✅ FIXED */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0 32px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  display: inline;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--secondary);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  font-weight: 400;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 1px;
  animation: scrollBounce 2s infinite;
}

.scroll-dot {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  position: relative;
}

.scroll-dot::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--secondary);
  border-radius: 4px;
  animation: scrollDotMove 2s infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes scrollDotMove {
  0%,
  100% {
    top: 6px;
    opacity: 1;
  }
  100% {
    top: 16px;
    opacity: 0.3;
  }
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dots .dot.active {
  background: var(--secondary);
  width: 32px;
  border-radius: 8px;
}

/* ============================================================
   7. MARQUEE SECTION — ✅ FIXED
   ============================================================ */
.marquee-section {
  background: var(--primary);
  padding: 16px 0;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  gap: 0;
  animation: marqueeScroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-content span {
  padding: 0 30px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.marquee-content span i {
  color: var(--secondary);
  margin-right: 6px;
  font-size: 0.5rem;
  vertical-align: middle;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   8. ABOUT PREVIEW SECTION — ✅ FIXED
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 400px;
}

.img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.img-main:hover img {
  transform: scale(1.05);
}

.img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 200px;
  height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--white);
}

.img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-badge-box {
  position: absolute;
  top: 30px;
  right: 0;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.about-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.about-slide.active {
  opacity: 1;
  z-index: 2;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.about-slider-btn:hover {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
}

.about-slider-prev {
  left: 12px;
}

.about-slider-next {
  right: 12px;
}

/* About Slider Dots */
.about-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.about-slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  display: block;
}

.about-slider-dots .dot.active {
  background: var(--secondary, #f4a340);
  border-color: var(--secondary, #f4a340);
  width: 32px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .about-slider-dots {
    bottom: 12px;
    gap: 8px;
  }
  .about-slider-dots .dot {
    width: 10px;
    height: 10px;
  }
  .about-slider-dots .dot.active {
    width: 24px;
  }
}

.badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.badge-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-900);
}

.badge-info span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.experience-badge {
  position: absolute;
  bottom: -10px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.exp-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  opacity: 0.85;
  line-height: 1.3;
  display: block;
  margin-top: 4px;
}

/* About Content */
.about-content .section-title {
  text-align: left;
}

.about-desc {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.feature-text span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ============================================================
   9. PRODUCT CATEGORIES (HOME) — ✅ FIXED
   ============================================================ */
.product-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  width: 100%;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.category-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-img img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--dark-rgb), 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-info {
  padding: 24px;
}

.category-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.category-info h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.category-info p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.category-tags span {
  padding: 4px 12px;
  background: var(--light);
  color: var(--gray-600);
  font-size: 0.75rem;
  border-radius: 50px;
  font-weight: 500;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
}

.category-link:hover {
  gap: 14px;
  color: var(--primary-dark);
}

/* ============================================================
   10. WHY CHOOSE US — ✅ FIXED
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  width: 100%;
}

.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.why-icon-wrap {
  margin-bottom: 20px;
}

.why-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-rgb), 0.08),
    rgba(var(--primary-rgb), 0.15)
  );
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.why-card h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* ============================================================
   11. PROCESS SECTION — ✅ FIXED
   ============================================================ */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  width: 100%;
}

.process-step {
  text-align: center;
  flex: 1;
  min-width: 150px;
  max-width: 220px;
  padding: 0 10px;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.step-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--secondary);
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.process-step:hover .step-icon-wrap {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
  transform: scale(1.1);
}

.process-step h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.process-connector {
  display: flex;
  align-items: center;
  padding-top: 35px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.connector-line {
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  margin-right: 8px;
}

/* ============================================================
   12. VISION SECTION — ✅ FIXED
   ============================================================ */
.vision-section {
  position: relative;
  min-height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vision-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.vision-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-section .vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(var(--dark-rgb), 0.9) 0%,
    rgba(var(--primary-rgb), 0.85) 100%
  );
  z-index: 1;
}

.vision-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.vision-inner {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.vision-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}

.vision-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.vision-pillars {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.pillar i {
  color: var(--secondary);
}

/* ============================================================
   13. TESTIMONIALS SECTION — ✅ FIXED
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  width: 100%;
}

.testimonial-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  border: 1px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(var(--primary-rgb), 0.1);
}

.quote-icon {
  font-size: 1.8rem;
  color: rgba(var(--primary-rgb), 0.12);
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 3px solid var(--light);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-900);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.author-rating {
  margin-left: auto;
  display: flex;
  gap: 3px;
}

.author-rating i {
  color: #fbbf24;
  font-size: 0.8rem;
}

/* ============================================================
   14. CTA BANNER — ✅ FIXED
   ============================================================ */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-full);
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-full);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================================
   15. PAGE HERO (Inner Pages) — ✅ FIXED
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(var(--dark-rgb), 0.88) 0%,
    rgba(var(--primary-rgb), 0.8) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 100px 20px 50px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb .fa-chevron-right {
  font-size: 0.6rem;
}

.breadcrumb span {
  color: var(--white);
  font-weight: 500;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   16. ABOUT PAGE STYLES — ✅ FIXED
   ============================================================ */

.about-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-main-images {
  position: relative;
  min-height: 450px;
}

.about-img-primary {
  width: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-img-primary img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.img-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--white);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  top: 40%;
  right: 0;
  width: 140px;
  height: 110px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-exp-badge {
  position: absolute;
  bottom: 50px;
  left: -10px;
  background: var(--primary);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.exp-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.exp-info .exp-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.exp-info .exp-label {
  font-size: 0.72rem;
  opacity: 0.8;
  line-height: 1.3;
}

/* About Highlights */
.about-intro-text p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0 36px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.highlight-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.highlight-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-900);
}

.highlight-text span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Mission & Vision */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid transparent;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(var(--primary-rgb), 0.1);
}

.mv-icon-wrap {
  margin-bottom: 20px;
}

.mv-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}

.mv-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--gray-900);
}

.mv-content p {
  margin-bottom: 20px;
}

.mv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.mv-list li i {
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.value-card {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.value-card h4 {
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 50px;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 22px;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-of-type {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -50px;
  top: 0;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  z-index: 2;
  transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
  background: var(--primary);
  color: var(--white);
}

.timeline-dot.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.timeline-content {
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-hover);
  transform: translateX(5px);
}

.timeline-year {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-content h4 {
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.team-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.08);
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  transform: translateY(100%);
  transition: var(--transition);
}

.team-card:hover .team-social {
  transform: translateY(0);
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.team-info {
  padding: 22px;
}

.team-info h4 {
  margin-bottom: 4px;
}

.team-info span {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.team-info p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* Impact Grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.impact-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}

.impact-icon {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.impact-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  display: inline;
}

.impact-plus {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary);
  font-weight: 700;
}

.impact-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

/* ============================================================
   17. PRODUCTS PAGE STYLES — ✅ FIXED
   ============================================================ */

.products-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.filter-title {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-title i {
  color: var(--primary);
}

.filter-subtitle {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.filter-subtitle span {
  color: var(--primary);
  font-weight: 600;
}

.filter-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-dropdown label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
}

.filter-dropdown label i {
  color: var(--primary);
}

.filter-select {
  padding: 10px 36px 10px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.filter-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.filter-search {
  position: relative;
}

.filter-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 0.85rem;
}

.filter-search input {
  padding: 10px 14px 10px 40px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  width: 220px;
  transition: var(--transition);
  background: var(--white);
}

.filter-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

/* Category Pills */
.category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.pill {
  padding: 10px 22px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  white-space: nowrap;
}

.pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.pill i {
  font-size: 0.8rem;
}

/* Active Filter Tag */
.active-filter-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(var(--primary-rgb), 0.06);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 10px;
}

.active-filter-tag span {
  font-size: 0.88rem;
  color: var(--gray-600);
}

.active-filter-tag i {
  color: var(--primary);
}

.clear-filter-btn {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.clear-filter-btn:hover {
  color: var(--primary-dark);
}

/* Products Grid — ✅ FIXED with auto-fit */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  min-height: 300px;
  width: 100%;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid transparent;
  opacity: 0;
  animation: cardFadeIn 0.5s ease forwards;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(var(--primary-rgb), 0.12);
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-card-info {
  padding: 22px;
}

.product-card-category {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-card-info h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.product-card-info p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-actions {
  display: flex;
  gap: 10px;
}

.product-card-actions .btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.8rem;
}

/* Loading */
.products-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* No Results */
.no-results {
  text-align: center;
  padding: 60px 20px;
}

.no-results-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gray-400);
}

/* Product Modal */
.product-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.product-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 850px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-slow);
}

.product-modal-overlay.active .product-modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-600);
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.modal-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-info {
  padding: 40px 36px;
}

.modal-category {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.modal-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.modal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.modal-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.modal-feature i {
  color: var(--primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.modal-actions {
  display: flex;
  gap: 12px;
}

.modal-actions .btn {
  flex: 1;
}

/* Category Detail */
.categories-detail-grid {
  display: grid;
  gap: 28px;
  width: 100%;
}

.category-detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  align-items: start;
}

.category-detail-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.cd-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cd-content h3 {
  margin-bottom: 10px;
}

.cd-content p {
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.cd-products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.cd-tag {
  padding: 6px 16px;
  background: var(--light);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}

.cd-tag:hover {
  background: var(--primary);
  color: var(--white);
}

/* Why Products */
.why-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.wp-card {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.wp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.wp-num {
  position: absolute;
  top: 10px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(var(--primary-rgb), 0.05);
  line-height: 1;
}

.wp-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.wp-card h4 {
  margin-bottom: 10px;
}

.wp-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* Bulk Order */
.bulk-order-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  width: 100%;
}

.bulk-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bulk-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bulk-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(var(--dark-rgb), 0.92),
    rgba(var(--primary-rgb), 0.88)
  );
}

.bulk-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.bulk-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.bulk-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.bulk-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.bulk-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.bulk-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.88rem;
}

.bulk-feat i {
  color: var(--secondary);
}

.bulk-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  font-size: 0.85rem;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray-600);
}

/* ============================================================
   18. SERVICES PAGE STYLES — ✅ FIXED
   ============================================================ */

.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-intro-content .section-title {
  text-align: left;
}

.services-intro-highlights {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.si-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.si-highlight:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.si-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.si-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--gray-900);
}

.si-text span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.services-intro-image {
  position: relative;
}

.si-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.si-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.si-img-secondary {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 180px;
  height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-xl);
}

.si-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.si-floating-badge {
  position: absolute;
  top: 30px;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}

.si-floating-badge i {
  font-size: 1.3rem;
  color: var(--secondary);
}

.si-floating-badge strong {
  font-size: 1.4rem;
  color: var(--white);
  display: block;
  line-height: 1;
}

.si-floating-badge span {
  font-size: 0.72rem;
  opacity: 0.8;
}

/* Service Detail Card */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.service-detail-card:last-child {
  margin-bottom: 0;
}

.service-detail-card:hover {
  box-shadow: var(--shadow-hover);
}

.service-detail-card.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.service-detail-card.reverse .sdc-image {
  order: 2;
}

.service-detail-card.reverse .sdc-content {
  order: 1;
}

.sdc-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sdc-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}

.service-detail-card:hover .sdc-image img {
  transform: scale(1.05);
}

.sdc-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
}

.sdc-icon-wrap {
  margin-bottom: 16px;
}

.sdc-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.sdc-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.sdc-content p {
  margin-bottom: 20px;
}

.sdc-features {
  margin-bottom: 24px;
}

.sdc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.sdc-features li i {
  color: var(--primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Service Flow */
.flow-chain {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
}

.flow-step {
  text-align: center;
  flex: 1;
  min-width: 100px;
  max-width: 150px;
  padding: 0 8px;
}

.flow-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.4rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.flow-step:hover .flow-icon {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}

.flow-step h4 {
  color: var(--white);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.flow-step p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}

.flow-arrow {
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Additional Services */
.add-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.add-service-card {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
}

.add-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.asc-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.add-service-card h4 {
  margin-bottom: 10px;
}

.add-service-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.advantage-card {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  align-items: flex-start;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.adv-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(var(--primary-rgb), 0.12);
  line-height: 1;
  flex-shrink: 0;
}

.advantage-card:hover .adv-number {
  color: var(--primary);
}

.adv-content h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.adv-content p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.partner-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.partner-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
}

.partner-card h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.partner-card p {
  font-size: 0.82rem;
  margin-bottom: 0;
}

/* ============================================================
   19. CONTACT PAGE STYLES — ✅ FIXED
   ============================================================ */

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.contact-info-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: 1px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(var(--primary-rgb), 0.1);
}

.cic-icon-wrap {
  margin-bottom: 16px;
}

.cic-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  transition: var(--transition);
}

.contact-info-card:hover .cic-icon {
  transform: rotateY(180deg);
}

.cic-icon.whatsapp-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-info-card h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.contact-info-card p {
  margin-bottom: 6px;
}

.contact-info-card p a {
  color: var(--gray-700);
  font-weight: 500;
}

.contact-info-card p a:hover {
  color: var(--primary);
}

.cic-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.cic-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.cic-link:hover {
  gap: 12px;
}

.cic-link.whatsapp-link {
  color: #25d366;
}

/* Contact Form & Map */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-status {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-status.success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.form-status.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.form-status i {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.form-status strong {
  display: block;
  margin-bottom: 4px;
}

.form-status p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group label i {
  color: var(--primary);
  font-size: 0.8rem;
}

.required {
  color: #ef4444;
}

.optional {
  font-weight: 400;
  color: var(--gray-400);
  font-size: 0.78rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.08);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-error-msg {
  display: block;
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 6px;
  min-height: 18px;
}

.char-counter {
  text-align: right;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 6px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--gray-600);
  padding: 8px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  transition: var(--transition);
}

.checkbox-label:hover {
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.btn-text,
.btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 16px;
  justify-content: center;
}

.form-privacy i {
  font-size: 0.72rem;
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.map-container iframe {
  display: block;
  width: 100%;
}

.map-info-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.map-info-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--light);
}

.map-info-card h3 i {
  color: var(--primary);
}

.map-info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.map-info-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.map-info-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.map-info-item p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 2px;
}

.map-info-item a {
  color: var(--gray-600);
}

.map-info-item a:hover {
  color: var(--primary);
}

.map-social {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
}

.map-social span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
}

/* Enquiry Cards */
.enquiry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.enquiry-card {
  background: var(--white);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
}

.enquiry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.eq-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.enquiry-card h4 {
  margin-bottom: 10px;
}

.enquiry-card p {
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.eq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
}

.eq-link:hover {
  gap: 14px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  left: 72px;
  background: var(--white);
  color: var(--gray-700);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   20. FOOTER — ✅ FIXED
   ============================================================ */
.footer {
  background: var(--gray-900);
  padding-top: 80px;
  color: var(--gray-400);
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand .logo-main {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.footer-links a i {
  font-size: 0.6rem;
  color: var(--gray-600);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-contact-list li i {
  color: var(--secondary);
  margin-top: 4px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: var(--gray-400);
}

.footer-contact-list a:hover {
  color: var(--secondary);
}

.footer-tagline {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-tagline i {
  color: var(--secondary);
  font-size: 0.8rem;
}

.footer-tagline em {
  color: var(--gray-300);
  font-size: 0.88rem;
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* ============================================================
   21. BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.35);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* ============================================================
   22. ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   23. RESPONSIVE — ✅ FULLY FIXED
   ============================================================ */

/* ---- Large Screens (1400px+) ---- */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* ---- Extra Large Screens (1600px+) ---- */
@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }
}

/* ---- Tablet (max 1024px) ---- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px;
    gap: 0;
    z-index: 1000;
    transition: right 0.4s ease;
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    color: var(--gray-700) !important;
    padding: 14px 16px;
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary) !important;
    background: var(--light);
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding: 0 0 0 20px;
    display: none;
    min-width: auto;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 10px 16px;
    border-bottom: 1px solid var(--gray-50);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
    text-align: center;
    background: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
  }

  /* Grids */
  .about-grid,
  .about-main-grid,
  .services-intro-grid {
    gap: 40px;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .service-detail-card.reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-card.reverse .sdc-image {
    order: 0;
  }

  .service-detail-card.reverse .sdc-content {
    order: 0;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .modal-image {
    min-height: 250px;
  }

  .modal-image img {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }
}

/* ---- Mobile (max 768px) ---- */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 16px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Hero */
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stat-item {
    padding: 0;
  }

  .hero-dots {
    right: 20px;
    bottom: 20px;
  }

  .scroll-indicator {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Page Hero */
  .page-hero {
    min-height: 300px;
  }

  /* About */
  .about-grid,
  .about-main-grid,
  .services-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-main-images {
    min-height: auto;
  }

  .about-img-primary img {
    height: 300px;
  }

  .img-secondary {
    width: 150px;
    height: 120px;
    right: 0;
    bottom: -20px;
  }

  .about-slider {
    height: 300px;
  }

  .about-slide img {
    height: 300px;
  }

  .about-img-secondary {
    width: 140px;
    height: 140px;
  }

  .about-img-accent {
    display: none;
  }

  .about-features,
  .about-highlights {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    max-width: 300px;
    margin-bottom: 20px;
  }

  .process-connector {
    transform: rotate(90deg);
    padding: 0;
    margin: -10px 0;
  }

  /* Vision */
  .vision-pillars {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Timeline */
  .timeline {
    padding-left: 40px;
  }

  .timeline-dot {
    left: -40px;
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  .timeline-line {
    left: 17px;
  }

  /* Flow */
  .flow-chain {
    flex-direction: column;
    align-items: center;
  }

  .flow-step {
    max-width: 250px;
  }

  .flow-arrow {
    transform: rotate(90deg);
    padding: 0;
    margin: -6px 0;
  }

  /* Contact */
  .contact-info-grid {
    margin-top: -40px;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .checkbox-group {
    flex-direction: column;
    gap: 10px;
  }

  .modal-features {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    flex-direction: column;
  }

  /* CTA */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Bulk */
  .bulk-features {
    flex-direction: column;
    align-items: center;
  }

  .bulk-buttons {
    flex-direction: column;
    align-items: center;
  }

  .bulk-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Category Detail */
  .category-detail-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Products Filter */
  .products-filter-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .filter-controls {
    flex-direction: column;
    gap: 12px;
  }

  .filter-search input {
    width: 100%;
  }

  .category-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .pill {
    flex-shrink: 0;
  }

  /* Footer */
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* WhatsApp */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    left: 20px;
    font-size: 1.4rem;
  }

  .whatsapp-tooltip {
    display: none;
  }

  /* Back to Top */
  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
  }
}

/* ---- Small Mobile (max 480px) ---- */
@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 8px 16px;
  }

  .nav-links {
    width: 100%;
  }

  .si-img-secondary {
    display: none;
  }

  .si-floating-badge {
    display: none;
  }

  .about-exp-badge {
    left: 0;
  }

  .img-badge-box {
    display: none;
  }

  .experience-badge {
    left: 10px;
  }

  .sdc-image img {
    height: 220px;
  }
}

/* ============================================================
   NAVBAR HEIGHT INCREASE — Add to your style.css
   ============================================================ */

/* Default state (transparent — before scroll) */
.navbar {
  padding: 24px 0; /* ⬆️ Increased from 16px to 24px */
}

/* Scrolled state (white background) */
.navbar.scrolled {
  padding: 16px 0; /* ⬆️ Increased from 10px to 16px */
}

/* Logo icon — make bigger */
.logo-icon {
  width: 50px; /* ⬆️ Increased from 42px to 50px */
  height: 50px; /* ⬆️ Increased from 42px to 50px */
  font-size: 1.3rem; /* ⬆️ Increased from 1.1rem */
}

/* Logo text — make bigger */
.logo-main {
  font-size: 1.5rem; /* ⬆️ Increased from 1.35rem */
}

.logo-sub {
  font-size: 0.82rem; /* ⬆️ Increased from 0.75rem */
}

/* Nav links — more padding */
.nav-link {
  padding: 14px 20px; /* ⬆️ Increased from 10px 18px */
  font-size: 0.95rem; /* ⬆️ Increased from 0.9rem */
}

/* CTA button */
.nav-cta {
  padding: 12px 28px; /* ⬆️ Increased from 10px 24px */
  font-size: 0.9rem; /* ⬆️ Increased from 0.85rem */
}

/* Adjust hero padding-top so content doesn't hide behind navbar */
.hero-content {
  padding-top: 120px; /* ⬆️ Increased from 100px */
}

.page-hero-content {
  padding-top: 120px; /* ⬆️ Increased from 100px */
}

/* ============================================================
   SPRINTOFY — Designed & Developed by Credit
   ============================================================ */

.designed-by {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 0;
  flex-wrap: wrap;
}

.sprintofy-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(141, 195, 59, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(141, 195, 59, 0.2);
}

.sprintofy-link:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(141, 195, 59, 0.4);
  border-color: var(--secondary);
}

.sprintofy-link i {
  font-size: 0.78rem;
  transition: transform 0.4s ease;
}

.sprintofy-link:hover i {
  transform: rotate(360deg);
}

@media (max-width: 768px) {
  .designed-by {
    justify-content: center;
  }
}

/* ============================================================
   FLOATING ACTION ICONS — FULL FIX FOR ALL SCREENS
   ============================================================ */

.floating-icons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  pointer-events: none;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* WhatsApp */
.float-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Call */
.float-call {
  background: linear-gradient(135deg, #086e3e, #0a8a4e);
}

/* Back to Top */
.float-top {
  background: linear-gradient(135deg, #103d27, #086e3e);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.float-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Tooltip */
.float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--gray-700);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.float-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--white);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Pulse animation — only on WhatsApp */
.float-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  z-index: -1;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .floating-icons {
    bottom: 20px;
    right: 16px;
    gap: 10px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .floating-icons {
    bottom: 16px;
    right: 12px;
    gap: 8px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  }

  .float-tooltip {
    display: none !important;
  }

  /* Reduce pulse on mobile */
  .float-whatsapp::before {
    animation: pulseRingSmall 2s ease-out infinite;
  }

  @keyframes pulseRingSmall {
    0% {
      transform: scale(1);
      opacity: 0.5;
    }
    100% {
      transform: scale(1.3);
      opacity: 0;
    }
  }
}

@media (max-width: 480px) {
  .floating-icons {
    bottom: 12px;
    right: 10px;
    gap: 8px;
  }

  .float-btn {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .floating-icons {
    bottom: 10px;
    right: 8px;
    gap: 6px;
  }

  .float-btn {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}

/* ============================================================
   ABOUT STORY SECTION — UNIQUE STYLING
   ============================================================ */

.about-story {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, var(--light) 100%);
}

/* Header */
.story-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.story-header .section-title {
  margin-bottom: 0;
}

/* Image Strip */
.story-image-strip {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 20px;
  margin-bottom: 70px;
  position: relative;
}

.story-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  height: 320px;
}

.story-img-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.story-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-img-card:hover img {
  transform: scale(1.08);
}

.story-img-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.story-img-featured {
  height: 380px;
  margin-top: -30px;
  border: 5px solid var(--white);
}

.story-img-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.story-img-tag i {
  color: var(--primary);
  font-size: 0.9rem;
}

.story-floating-stat {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  z-index: 3;
  box-shadow: 0 6px 20px rgba(8, 110, 62, 0.4);
}

.story-floating-stat .stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.story-floating-stat .stat-text {
  font-size: 0.7rem;
  opacity: 0.9;
  line-height: 1.3;
  display: block;
  margin-top: 4px;
}

/* Content Grid Below Images */
.story-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Side — Text */
.story-text {
  position: relative;
  padding-left: 60px;
}

.story-quote-mark {
  position: absolute;
  top: -10px;
  left: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(8, 110, 62, 0.3);
}

.story-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 2px dashed var(--gray-200);
}

.story-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.story-cta {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Right Side — Feature Cards */
.story-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-feature-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--primary);
}

.story-feature-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--secondary);
}

.story-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(8, 110, 62, 0.05), transparent);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.sfc-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(8, 110, 62, 0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.story-feature-card:hover .sfc-number {
  color: var(--primary);
}

.sfc-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.story-feature-card:hover .sfc-icon {
  transform: rotate(360deg);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.sfc-content {
  flex: 1;
}

.sfc-content h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.sfc-content p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .story-image-strip {
    grid-template-columns: 1fr 1fr;
  }

  .story-img-3 {
    display: none;
  }

  .story-img-featured {
    margin-top: 0;
  }

  .story-content-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .story-image-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 50px;
  }

  .story-img-card {
    height: 240px;
  }

  .story-img-featured {
    height: 280px;
    margin-top: 0;
  }

  .story-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-text {
    padding-left: 0;
  }

  .story-quote-mark {
    position: relative;
    margin-bottom: 20px;
  }

  .story-lead {
    font-size: 1rem;
  }

  .story-feature-card {
    padding: 18px 20px;
  }

  .story-cta {
    flex-direction: column;
  }

  .story-cta .btn {
    width: 100%;
  }

  .story-floating-stat {
    padding: 10px 14px;
  }

  .story-floating-stat .stat-num {
    font-size: 1.4rem;
  }
}

/* ============================================================
   WHAT WE DO SECTION — NEW MODERN UI
   ============================================================ */

.what-we-do {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9f4 100%);
  overflow: hidden;
}

/* Background decorations */
.wwd-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.wwd-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 110, 62, 0.08), transparent 70%);
}

.wwd-circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -150px;
}

.wwd-circle-2 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(
    circle,
    rgba(141, 195, 59, 0.08),
    transparent 70%
  );
}

/* Header */
.wwd-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

/* Main Grid */
.wwd-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ========== LEFT SIDE ========== */

.wwd-left {
  padding-right: 20px;
}

.wwd-intro-text {
  margin-bottom: 35px;
}

.wwd-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 18px;
  font-weight: 500;
}

.wwd-lead strong {
  color: var(--primary);
  font-weight: 700;
}

.wwd-desc {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Stats Row */
.wwd-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 35px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(8, 110, 62, 0.08);
  border: 1px solid rgba(8, 110, 62, 0.06);
}

.wwd-stat-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-right: 1px solid var(--gray-200);
}

.wwd-stat-box:last-child {
  border-right: none;
}

.wwd-stat-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.wwd-stat-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.wwd-stat-info strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
}

.wwd-stat-info span {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* CTA Button */
.wwd-btn {
  margin-top: 10px;
}

.wwd-btn i {
  transition: transform 0.3s ease;
}

.wwd-btn:hover i {
  transform: translateY(4px);
}

/* ========== RIGHT SIDE — Service Cards Stack ========== */

.wwd-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wwd-service-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.wwd-service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: top;
}

.wwd-service-item:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(8, 110, 62, 0.15);
  border-color: rgba(8, 110, 62, 0.1);
}

.wwd-service-item:hover::before {
  transform: scaleY(1);
}

.wwd-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.wwd-service-item:hover .wwd-icon-wrap {
  transform: rotate(-10deg) scale(1.08);
}

.wwd-item-content {
  flex: 1;
}

.wwd-item-content h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--gray-900);
  font-weight: 700;
}

.wwd-item-content p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.5;
}

.wwd-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  transition: all 0.4s ease;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-10px);
}

.wwd-service-item:hover .wwd-arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--primary);
  color: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .wwd-split-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .wwd-left {
    padding-right: 0;
    text-align: center;
  }

  .wwd-stats-row {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .wwd-right {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wwd-circle-1,
  .wwd-circle-2 {
    width: 200px;
    height: 200px;
  }

  .wwd-stats-row {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 12px;
  }

  .wwd-stat-box {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 12px;
    justify-content: center;
  }

  .wwd-stat-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .wwd-service-item {
    padding: 18px 20px;
    gap: 14px;
  }

  .wwd-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .wwd-item-content h4 {
    font-size: 0.95rem;
  }

  .wwd-item-content p {
    font-size: 0.78rem;
  }

  .wwd-arrow {
    display: none;
  }

  .wwd-lead {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .wwd-service-item {
    padding: 16px;
  }

  .wwd-stats-row {
    padding: 18px 14px;
  }

  .wwd-stat-info strong {
    font-size: 1.2rem;
  }
}

/* ============================================================
   WHY CHOOSE US — WHITE CARDS WITH GREEN BORDER
   ============================================================ */

.why-choose-cards {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-cards::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(141, 195, 59, 0.05),
    transparent 70%
  );
  border-radius: 50%;
  transform: translateY(-50%);
}

.why-choose-cards::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(8, 110, 62, 0.05), transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Cards Wrapper */
.promise-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Individual Promise Card — WHITE with GREEN BORDER */
.promise-card {
  position: relative;
  padding: 40px 28px;
  border-radius: 20px;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--gray-700);
  text-align: center;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(8, 110, 62, 0.08);
}

/* Top decorative line */
.promise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.promise-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(8, 110, 62, 0.2);
  border-color: var(--secondary);
}

.promise-card:hover::before {
  transform: scaleX(1);
}

/* Stagger heights for visual interest */
.promise-card:nth-child(1) {
  margin-top: 0;
}

.promise-card:nth-child(2) {
  margin-top: 30px;
}

.promise-card:nth-child(3) {
  margin-top: 60px;
}

.promise-card:nth-child(4) {
  margin-top: 30px;
}

/* Icon — GREEN BACKGROUND */
.promise-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.8rem;
  color: var(--white);
  border: 3px solid rgba(8, 110, 62, 0.1);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(8, 110, 62, 0.25);
}

.promise-card:hover .promise-icon {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 10px 25px rgba(141, 195, 59, 0.4);
}

/* Title — DARK COLOR */
.promise-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.promise-card:hover .promise-title {
  color: var(--primary-dark);
}

/* Description — GRAY COLOR */
.promise-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  font-weight: 400;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .promise-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .promise-card:nth-child(1),
  .promise-card:nth-child(2),
  .promise-card:nth-child(3),
  .promise-card:nth-child(4) {
    margin-top: 0;
  }

  .promise-card {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .promise-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }

  .promise-card {
    min-height: auto;
    padding: 36px 24px;
  }

  .promise-card:hover {
    transform: translateY(-8px);
  }

  .promise-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .promise-title {
    font-size: 1.25rem;
  }

  .promise-desc {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .promise-card {
    padding: 32px 22px;
  }

  .promise-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
}
/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .promise-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .promise-card:nth-child(1),
  .promise-card:nth-child(2),
  .promise-card:nth-child(3),
  .promise-card:nth-child(4) {
    margin-top: 0;
  }

  .promise-card {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .promise-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }

  .promise-card {
    min-height: auto;
    padding: 36px 24px;
  }

  .promise-card:hover {
    transform: translateY(-8px) scale(1.02);
  }

  .promise-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .promise-title {
    font-size: 1.25rem;
  }

  .promise-desc {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .promise-card {
    padding: 32px 22px;
  }

  .promise-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
}

/* ============================================================
   HERO OVERLAY — REDUCED GREEN INTENSITY
   ============================================================ */

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(var(--dark-rgb), 0.45) 0%,
    rgba(var(--primary-rgb), 0.35) 50%,
    rgba(var(--dark-rgb), 0.45) 100%
  ) !important;
}

/* Add subtle text shadow for readability on lighter overlay */
.hero-heading,
.hero-sub,
.hero-badge {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   WHY CHOOSE US — WHITE CARDS WITH GREEN BORDER (Like About Page)
   ============================================================ */

.why-us {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(141, 195, 59, 0.05),
    transparent 70%
  );
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.why-us::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(8, 110, 62, 0.05), transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Why Cards Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Individual Why Card — WHITE with GREEN BORDER */
.why-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--primary);
  padding: 40px 28px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(8, 110, 62, 0.08);
}

/* Top decorative gradient line */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.why-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(8, 110, 62, 0.2);
  border-color: var(--secondary);
}

.why-card:hover::before {
  transform: scaleX(1);
}

/* Icon Wrapper */
.why-icon-wrap {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

/* Icon — Green Background Circle */
.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  border: 3px solid rgba(8, 110, 62, 0.1);
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(8, 110, 62, 0.25);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 10px 25px rgba(141, 195, 59, 0.4);
}

/* Title — Green Color */
.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.why-card:hover h4 {
  color: var(--primary-dark);
}

/* Description — Gray */
.why-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  font-weight: 400;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }

  .why-card {
    padding: 36px 24px;
  }

  .why-card:hover {
    transform: translateY(-8px);
  }

  .why-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .why-card h4 {
    font-size: 1.1rem;
  }

  .why-card p {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .why-card {
    padding: 32px 22px;
  }

  .why-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }
}

/* ============================================================
   FIX: Lighter Vision Section Overlay
   ============================================================ */

.vision-section .vision-overlay {
  background: linear-gradient(
    135deg,
    rgba(var(--dark-rgb), 0.55) 0%,
    rgba(var(--primary-rgb), 0.45) 100%
  ) !important;
}

/* Add subtle text shadow for readability on lighter overlay */
.vision-title,
.vision-desc,
.vision-section .section-tag.light,
.pillar {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   CTA PREMIUM SECTION — Modern Glass Card Design
   ============================================================ */

.cta-premium-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.cta-premium-card {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  border-radius: 32px;
  padding: 70px 60px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(8, 110, 62, 0.25);
  border: 1px solid rgba(141, 195, 59, 0.15);
}

/* Background Glow Effect */
.cta-bg-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    ellipse at center top,
    rgba(141, 195, 59, 0.4) 0%,
    rgba(8, 110, 62, 0.2) 30%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

/* Background Pattern */
.cta-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    rgba(141, 195, 59, 0.08) 1.5px,
    transparent 1.5px
  );
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}

/* Grid Layout */
.cta-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ============================================================
   LEFT SIDE — Main Content
   ============================================================ */

.cta-premium-left {
  color: var(--white);
}

/* Badge */
.cta-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(141, 195, 59, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(141, 195, 59, 0.3);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.cta-premium-badge i {
  font-size: 0.7rem;
  color: var(--secondary);
}

/* Title */
.cta-premium-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.cta-highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), #b3e055);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.cta-premium-desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 460px;
}

/* Buttons */
.cta-premium-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.cta-btn-primary {
  background: linear-gradient(135deg, var(--secondary), #a0d44f);
  color: var(--dark);
  box-shadow: 0 6px 20px rgba(141, 195, 59, 0.4);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(141, 195, 59, 0.6);
  background: linear-gradient(135deg, #a0d44f, var(--secondary));
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  border-color: var(--white);
}

.cta-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: translateX(3px);
}

/* ============================================================
   RIGHT SIDE — Info Card (Glassmorphism)
   ============================================================ */

.cta-premium-right {
  position: relative;
}

.cta-info-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.cta-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(141, 195, 59, 0.3);
}

/* Stars */
.cta-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.cta-stars i {
  color: #fbbf24;
  font-size: 1rem;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.5));
}

/* Quote */
.cta-quote {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  font-weight: 400;
  font-style: italic;
}

.cta-quote-highlight {
  color: var(--secondary);
  font-weight: 600;
  font-style: normal;
}

/* Author */
.cta-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.cta-author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(141, 195, 59, 0.4);
}

.cta-author-info {
  flex: 1;
}

.cta-author-info strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 2px;
  font-weight: 600;
}

.cta-author-info span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.cta-verified {
  color: var(--secondary);
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 6px rgba(141, 195, 59, 0.5));
}

/* Mini Stats */
.cta-mini-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cta-mini-stat {
  flex: 1;
  text-align: center;
}

.cta-mini-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 4px;
}

.cta-mini-stat span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-mini-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .cta-premium-card {
    padding: 50px 40px;
  }

  .cta-premium-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .cta-premium-section {
    padding: 60px 0;
  }

  .cta-premium-card {
    padding: 40px 28px;
    border-radius: 24px;
  }

  .cta-premium-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-premium-left {
    text-align: center;
  }

  .cta-premium-buttons {
    justify-content: center;
  }

  .cta-premium-desc {
    margin: 0 auto 28px;
  }

  .cta-bg-pattern {
    width: 100%;
    opacity: 0.3;
  }

  .cta-info-card {
    padding: 28px 24px;
  }

  .cta-mini-stat strong {
    font-size: 1.1rem;
  }

  .cta-mini-stat span {
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  .cta-premium-card {
    padding: 32px 22px;
    border-radius: 20px;
  }

  .cta-premium-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn {
    justify-content: center;
    padding: 12px 24px;
  }

  .cta-mini-stats {
    gap: 6px;
  }

  .cta-mini-divider {
    height: 24px;
  }
}
/* ============================================================
   TESTIMONIALS PREMIUM SECTION
   ============================================================ */

.testimonials-premium {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--light) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Background Decorations */
.tp-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.tp-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.tp-circle-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(141, 195, 59, 0.15),
    transparent 70%
  );
}

.tp-circle-2 {
  width: 350px;
  height: 350px;
  bottom: 10%;
  right: -120px;
  background: radial-gradient(circle, rgba(8, 110, 62, 0.12), transparent 70%);
}

/* Header */
.tp-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

/* Grid */
.tp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
}

/* ============================================================
   INDIVIDUAL TESTIMONIAL CARD
   ============================================================ */

.tp-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: 0 10px 40px rgba(8, 110, 62, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  overflow: hidden;
}

/* Top decorative gradient line */
.tp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

/* Bottom right corner decoration */
.tp-card::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(141, 195, 59, 0.08),
    transparent 70%
  );
  border-radius: 50%;
  transition: all 0.4s ease;
}

.tp-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(8, 110, 62, 0.18);
  border-color: rgba(8, 110, 62, 0.15);
}

.tp-card:hover::before {
  transform: scaleX(1);
}

.tp-card:hover::after {
  background: radial-gradient(
    circle,
    rgba(141, 195, 59, 0.18),
    transparent 70%
  );
}

/* ============================================================
   FEATURED CARD (Middle One)
   ============================================================ */

.tp-card-featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--secondary);
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(8, 110, 62, 0.3);
}

.tp-card-featured::before {
  background: linear-gradient(90deg, var(--secondary), #b3e055);
  transform: scaleX(1);
}

.tp-card-featured::after {
  background: radial-gradient(
    circle,
    rgba(141, 195, 59, 0.15),
    transparent 70%
  );
}

.tp-card-featured:hover {
  transform: translateY(-22px);
  box-shadow: 0 30px 70px rgba(8, 110, 62, 0.45);
}

/* Featured Badge */
.tp-featured-badge {
  position: absolute;
  top: 20px;
  right: -40px;
  background: linear-gradient(135deg, var(--secondary), #a0d44f);
  color: var(--dark);
  padding: 6px 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(141, 195, 59, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.tp-featured-badge i {
  font-size: 0.7rem;
}

/* ============================================================
   QUOTE ICON
   ============================================================ */

.tp-quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(8, 110, 62, 0.08),
    rgba(141, 195, 59, 0.08)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  transition: all 0.4s ease;
  z-index: 2;
}

.tp-card:hover .tp-quote-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  transform: rotate(360deg);
}

.tp-card-featured .tp-quote-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--secondary);
  backdrop-filter: blur(10px);
}

.tp-card-featured:hover .tp-quote-icon {
  background: var(--secondary);
  color: var(--dark);
}

/* ============================================================
   STARS
   ============================================================ */

.tp-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.tp-stars i {
  color: #fbbf24;
  font-size: 0.95rem;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.4));
}

.tp-card-featured .tp-stars i {
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.6));
}

/* ============================================================
   QUOTE TEXT
   ============================================================ */

.tp-text {
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 28px;
  font-weight: 400;
  position: relative;
  z-index: 2;
  min-height: 110px;
}

.tp-card-featured .tp-text {
  color: rgba(255, 255, 255, 0.92);
}

.tp-highlight {
  color: var(--primary);
  font-weight: 700;
  position: relative;
}

.tp-card-featured .tp-highlight {
  color: var(--secondary);
}

/* ============================================================
   AUTHOR
   ============================================================ */

.tp-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px dashed rgba(8, 110, 62, 0.15);
  position: relative;
  z-index: 2;
}

.tp-card-featured .tp-author {
  border-top-color: rgba(255, 255, 255, 0.2);
}

/* Avatar */
.tp-avatar {
  position: relative;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.tp-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tp-card-featured .tp-avatar img {
  border-color: rgba(255, 255, 255, 0.3);
}

/* Verified Badge */
.tp-verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.6rem;
  border: 2px solid var(--white);
  box-shadow: 0 2px 6px rgba(141, 195, 59, 0.4);
}

.tp-card-featured .tp-verified-badge {
  border-color: var(--primary-dark);
}

/* Author Info */
.tp-author-info {
  flex: 1;
}

.tp-author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-900);
  margin-bottom: 4px;
  font-weight: 700;
}

.tp-card-featured .tp-author-info strong {
  color: var(--white);
}

.tp-author-info span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--gray-500);
}

.tp-card-featured .tp-author-info span {
  color: rgba(255, 255, 255, 0.65);
}

.tp-author-info i {
  font-size: 0.7rem;
  color: var(--primary);
}

.tp-card-featured .tp-author-info i {
  color: var(--secondary);
}

/* ============================================================
   BOTTOM STATS BAR
   ============================================================ */

.tp-bottom-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--white);
  border-radius: 24px;
  padding: 28px 40px;
  box-shadow: 0 15px 40px rgba(8, 110, 62, 0.08);
  border: 1px solid rgba(8, 110, 62, 0.06);
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.tp-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

.tp-stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(8, 110, 62, 0.25);
  transition: transform 0.3s ease;
}

.tp-stat-item:hover .tp-stat-icon {
  transform: scale(1.1) rotate(-10deg);
}

.tp-stat-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 4px;
}

.tp-stat-text span {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
}

.tp-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .tp-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
    margin: 0 auto 60px;
  }

  .tp-card-featured {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .tp-bottom-stats {
    padding: 24px 30px;
  }

  .tp-stat-item {
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .testimonials-premium {
    padding: 70px 0;
  }

  .tp-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    gap: 24px;
  }

  .tp-card,
  .tp-card-featured {
    transform: translateY(0);
    padding: 30px 24px;
  }

  .tp-card:hover,
  .tp-card-featured:hover {
    transform: translateY(-8px);
  }

  .tp-text {
    min-height: auto;
    font-size: 0.92rem;
  }

  .tp-quote-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  /* Bottom stats responsive */
  .tp-bottom-stats {
    padding: 20px;
    gap: 16px;
  }

  .tp-stat-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
    justify-content: flex-start;
  }

  .tp-stat-divider {
    display: none;
  }

  .tp-stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .tp-stat-text strong {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .tp-card,
  .tp-card-featured {
    padding: 26px 20px;
  }

  .tp-featured-badge {
    right: -45px;
    padding: 5px 45px;
    font-size: 0.65rem;
  }

  .tp-stat-item {
    flex: 1 1 100%;
    justify-content: center;
  }

  .tp-bottom-stats {
    padding: 18px 16px;
  }
}

/* ============================================================
   PRODUCTION PROCESS — PREMIUM TIMELINE DESIGN
   ============================================================ */

.process-premium {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--primary-dark) 50%,
    var(--dark) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Background Effects */
.pp-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.pp-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.pp-glow-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(141, 195, 59, 0.15),
    transparent 70%
  );
}

.pp-glow-2 {
  width: 450px;
  height: 450px;
  bottom: -100px;
  right: -150px;
  background: radial-gradient(circle, rgba(8, 110, 62, 0.2), transparent 70%);
}

/* Dot pattern background */
.pp-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    rgba(141, 195, 59, 0.05) 1.5px,
    transparent 1.5px
  );
  background-size: 30px 30px;
  opacity: 0.6;
}

/* Header */
.pp-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   TIMELINE CONTAINER
   ============================================================ */

.pp-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
  z-index: 1;
}

/* Animated Connecting Line */
.pp-line {
  position: absolute;
  top: 110px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  z-index: 0;
  overflow: hidden;
}

.pp-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--secondary),
    var(--primary-light),
    var(--secondary)
  );
  background-size: 200% 100%;
  animation: lineFlow 3s ease-in-out infinite;
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(141, 195, 59, 0.5);
}

@keyframes lineFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ============================================================
   PROCESS STEP
   ============================================================ */

.pp-step {
  position: relative;
  z-index: 2;
}

.pp-step-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pp-step-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(141, 195, 59, 0.4);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(141, 195, 59, 0.2);
}

/* ============================================================
   NUMBER BADGE
   ============================================================ */

.pp-number-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary), #a0d44f);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  border: 4px solid var(--dark);
  box-shadow: 0 6px 20px rgba(141, 195, 59, 0.5);
  transition: all 0.4s ease;
  z-index: 3;
}

.pp-step-card:hover .pp-number-badge {
  transform: translateX(-50%) scale(1.15) rotate(360deg);
  box-shadow: 0 8px 30px rgba(141, 195, 59, 0.7);
}

.pp-number-final {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: var(--dark);
}

/* ============================================================
   ICON CONTAINER
   ============================================================ */

.pp-icon-container {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 30px auto 24px;
}

.pp-icon-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(141, 195, 59, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.pp-step-card:hover .pp-icon-ring {
  border-color: var(--secondary);
  animation-duration: 5s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.pp-icon-inner {
  position: absolute;
  inset: 8px;
  background: linear-gradient(
    135deg,
    rgba(141, 195, 59, 0.15),
    rgba(8, 110, 62, 0.15)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.8rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(141, 195, 59, 0.2);
}

.pp-step-card:hover .pp-icon-inner {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(141, 195, 59, 0.4);
}

/* ============================================================
   CONTENT
   ============================================================ */

.pp-step-content {
  flex: 1;
  width: 100%;
}

.pp-step-label {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  padding: 4px 12px;
  background: rgba(141, 195, 59, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(141, 195, 59, 0.2);
}

.pp-step-content h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.pp-step-content p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 18px;
  min-height: 70px;
}

/* Features */
.pp-step-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.pp-step-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.pp-step-features i {
  color: var(--secondary);
  font-size: 0.7rem;
  background: rgba(141, 195, 59, 0.15);
  padding: 3px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   ARROW DOWN INDICATOR
   ============================================================ */

.pp-arrow-down {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border: 3px solid var(--dark);
  box-shadow: 0 4px 12px rgba(141, 195, 59, 0.4);
  transition: all 0.3s ease;
  animation: arrowBounce 2s ease-in-out infinite;
}

.pp-step-card:hover .pp-arrow-down {
  transform: translateX(-50%) scale(1.2);
  background: var(--white);
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(4px);
  }
}

.pp-final-check {
  background: #ffd700;
  font-size: 0.95rem;
  width: 36px;
  height: 36px;
  animation: pulseFinal 2s ease-in-out infinite;
}

@keyframes pulseFinal {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow:
      0 4px 12px rgba(255, 215, 0, 0.4),
      0 0 0 0 rgba(255, 215, 0, 0.5);
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    box-shadow:
      0 4px 20px rgba(255, 215, 0, 0.6),
      0 0 0 12px rgba(255, 215, 0, 0);
  }
}

/* ============================================================
   FOOTER TAGLINE
   ============================================================ */

.pp-footer {
  text-align: center;
  margin-top: 70px;
  position: relative;
  z-index: 1;
}

.pp-footer-content {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  background: rgba(141, 195, 59, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(141, 195, 59, 0.25);
  border-radius: 50px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.pp-footer-content:hover {
  background: rgba(141, 195, 59, 0.15);
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(141, 195, 59, 0.2);
}

.pp-footer-content i {
  color: var(--secondary);
  font-size: 1.2rem;
  animation: leafSway 3s ease-in-out infinite;
}

@keyframes leafSway {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .pp-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 24px;
  }

  .pp-line {
    display: none;
  }

  .pp-arrow-down {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-premium {
    padding: 70px 0;
  }

  .pp-header {
    margin-bottom: 60px;
  }

  .pp-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
  }

  .pp-step-card {
    padding: 28px 22px 24px;
  }

  .pp-icon-container {
    width: 80px;
    height: 80px;
    margin: 26px auto 20px;
  }

  .pp-icon-inner {
    font-size: 1.6rem;
  }

  .pp-number-badge {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    top: -18px;
  }

  .pp-step-content p {
    min-height: auto;
    font-size: 0.85rem;
  }

  .pp-footer-content {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .pp-step-card {
    padding: 24px 18px 22px;
  }

  .pp-step-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .pp-step-features span {
    font-size: 0.72rem;
  }
}

/* ============================================================
   CORE VALUES — PREMIUM UNIQUE DESIGN
   ============================================================ */

.values-premium {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Background Decorations */
.vp-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.vp-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.vp-shape-1 {
  width: 350px;
  height: 350px;
  top: 10%;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(141, 195, 59, 0.12),
    transparent 70%
  );
}

.vp-shape-2 {
  width: 400px;
  height: 400px;
  bottom: 5%;
  left: -120px;
  background: radial-gradient(circle, rgba(8, 110, 62, 0.1), transparent 70%);
}

/* Subtle pattern */
.vp-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    rgba(8, 110, 62, 0.04) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  opacity: 0.6;
}

/* Header */
.vp-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 1;
  padding-top: 30px;
}

.vp-header-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, var(--secondary));
  border-radius: 4px;
}

/* ============================================================
   GRID
   ============================================================ */

.vp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ============================================================
   INDIVIDUAL CARD
   ============================================================ */

.vp-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid rgba(8, 110, 62, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

/* Animated background */
.vp-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.vp-card:hover {
  transform: translateY(-15px);
  border-color: var(--secondary);
  box-shadow: 0 30px 60px rgba(8, 110, 62, 0.25);
}

.vp-card:hover .vp-card-bg {
  opacity: 1;
}

/* Top right number */
.vp-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(8, 110, 62, 0.06);
  z-index: 1;
  transition: all 0.4s ease;
  letter-spacing: -2px;
}

.vp-card:hover .vp-number {
  color: rgba(255, 255, 255, 0.15);
  transform: scale(1.1) rotate(-5deg);
}

/* Bottom left corner decoration */
.vp-card-corner {
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent var(--secondary) transparent;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.vp-card:hover .vp-card-corner {
  opacity: 1;
}

/* ============================================================
   ICON HEXAGON
   ============================================================ */

.vp-icon-wrap {
  position: relative;
  width: 80px;
  height: 92px;
  margin-bottom: 28px;
  z-index: 2;
}

.vp-icon-hex {
  position: relative;
  width: 80px;
  height: 92px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(8, 110, 62, 0.25);
}

.vp-card:hover .vp-icon-hex {
  background: linear-gradient(135deg, var(--secondary), #a0d44f);
  transform: rotate(360deg) scale(1.05);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(141, 195, 59, 0.5);
}

/* Icon glow effect */
.vp-icon-glow {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle, rgba(141, 195, 59, 0.3), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  filter: blur(20px);
}

.vp-card:hover .vp-icon-glow {
  opacity: 1;
}

/* ============================================================
   CONTENT
   ============================================================ */

.vp-content {
  position: relative;
  z-index: 2;
}

.vp-content h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  transition: color 0.4s ease;
}

.vp-card:hover .vp-content h4 {
  color: var(--white);
}

.vp-content p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 22px;
  transition: color 0.4s ease;
  min-height: 80px;
}

.vp-card:hover .vp-content p {
  color: rgba(255, 255, 255, 0.85);
}

/* Tags */
.vp-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px dashed rgba(8, 110, 62, 0.15);
  transition: border-color 0.4s ease;
}

.vp-card:hover .vp-tags {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.vp-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(8, 110, 62, 0.06);
  border: 1px solid rgba(8, 110, 62, 0.12);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  transition: all 0.4s ease;
}

.vp-tags span i {
  font-size: 0.65rem;
  color: var(--secondary);
}

.vp-card:hover .vp-tags span {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.vp-card:hover .vp-tags span i {
  color: var(--secondary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .vp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .values-premium {
    padding: 70px 0;
  }

  .vp-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    gap: 20px;
  }

  .vp-card {
    padding: 32px 26px;
  }

  .vp-card:hover {
    transform: translateY(-8px);
  }

  .vp-icon-wrap,
  .vp-icon-hex {
    width: 70px;
    height: 80px;
  }

  .vp-icon-hex {
    font-size: 1.6rem;
  }

  .vp-number {
    font-size: 3rem;
    top: 20px;
    right: 22px;
  }

  .vp-content h4 {
    font-size: 1.2rem;
  }

  .vp-content p {
    font-size: 0.88rem;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .vp-card {
    padding: 28px 22px;
  }

  .vp-number {
    font-size: 2.5rem;
  }

  .vp-tags span {
    font-size: 0.7rem;
    padding: 4px 10px;
  }
}

/* ============================================================
   FIX: Lighter Hero Section Overlay
   ============================================================ */

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(var(--dark-rgb), 0.45) 0%,
    rgba(var(--primary-rgb), 0.35) 50%,
    rgba(var(--dark-rgb), 0.45) 100%
  ) !important;
}

/* Add subtle text shadow for readability on lighter overlay */
.hero-heading,
.hero-sub,
.hero-badge {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   FIX: Reduce Page Hero Overlay (Products/About/Services/Contact)
   ============================================================ */

.page-hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(var(--dark-rgb), 0.5) 0%,
    rgba(var(--primary-rgb), 0.4) 100%
  ) !important;
}

.page-hero-title,
.page-hero-sub,
.breadcrumb {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   PRODUCT IMAGES — CONSISTENT SIZE & CENTER
   ============================================================ */

.products-grid .product-card-img {
  height: 280px;
  background: linear-gradient(135deg, #f4f9f4, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.products-grid .product-card-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.products-grid .product-card:hover .product-card-img img {
  transform: scale(1.08);
}

/* ============================================================
   BULK ORDER — PREMIUM REDESIGN
   ============================================================ */

.bulk-premium {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Background decorations */
.bp-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bp-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.bp-glow-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(141, 195, 59, 0.1), transparent 70%);
}

.bp-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(8, 110, 62, 0.1), transparent 70%);
}

.bp-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    rgba(8, 110, 62, 0.04) 1.5px,
    transparent 1.5px
  );
  background-size: 28px 28px;
  opacity: 0.5;
}

/* Main Card */
.bp-card {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  border-radius: 32px;
  padding: 60px 50px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(8, 110, 62, 0.25);
  border: 1px solid rgba(141, 195, 59, 0.15);
  z-index: 1;
}

.bp-card::before {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(141, 195, 59, 0.2) 0%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
}

.bp-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ============================================================
   LEFT CONTENT
   ============================================================ */

.bp-content {
  color: var(--white);
}

.bp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(141, 195, 59, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(141, 195, 59, 0.3);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.bp-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.bp-highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), #b3e055);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bp-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 520px;
}

/* Features Grid */
.bp-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.bp-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.bp-feature:hover {
  background: rgba(141, 195, 59, 0.12);
  border-color: rgba(141, 195, 59, 0.3);
  transform: translateY(-3px);
}

.bp-feat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(141, 195, 59, 0.3);
}

.bp-feat-text {
  flex: 1;
}

.bp-feat-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 2px;
  font-weight: 700;
}

.bp-feat-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Buttons */
.bp-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
}

.bp-btn-primary {
  background: linear-gradient(135deg, var(--secondary), #a0d44f);
  color: var(--dark);
  box-shadow: 0 6px 20px rgba(141, 195, 59, 0.4);
}

.bp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(141, 195, 59, 0.6);
}

.bp-btn-outline {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.bp-btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ============================================================
   RIGHT SIDE CARD
   ============================================================ */

.bp-side-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 36px 32px;
  text-align: center;
  position: relative;
}

.bp-side-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(141, 195, 59, 0.4);
}

.bp-side-card h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.bp-side-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Side Stats */
.bp-side-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 22px;
}

.bp-stat {
  flex: 1;
  text-align: center;
}

.bp-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 4px;
}

.bp-stat span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bp-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Side Features */
.bp-side-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.bp-side-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.bp-side-feat i {
  color: var(--secondary);
  font-size: 0.95rem;
  filter: drop-shadow(0 2px 4px rgba(141, 195, 59, 0.4));
}

/* ============================================================
   RESPONSIVE — Bulk Premium
   ============================================================ */

@media (max-width: 1024px) {
  .bp-card {
    padding: 50px 40px;
  }

  .bp-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bp-content {
    text-align: center;
  }

  .bp-desc {
    margin: 0 auto 32px;
  }

  .bp-buttons {
    justify-content: center;
  }

  .bp-side-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .bulk-premium {
    padding: 60px 0;
  }

  .bp-card {
    padding: 40px 28px;
    border-radius: 24px;
  }

  .bp-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bp-feature {
    padding: 14px;
  }

  .bp-side-card {
    padding: 28px 22px;
  }

  .bp-side-stats {
    gap: 8px;
  }

  .bp-stat strong {
    font-size: 1.2rem;
  }

  .bp-stat span {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .bp-buttons {
    flex-direction: column;
  }

  .bp-btn {
    justify-content: center;
    width: 100%;
  }

  .bp-side-features {
    align-items: center;
  }
}

/* ============================================================
   CTA PREMIUM SECTION (Bottom CTA)
   ============================================================ */

.cta-premium-section {
  padding: 80px 0;
  background: var(--light);
  position: relative;
}

.cta-premium-card {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  border-radius: 32px;
  padding: 70px 60px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(8, 110, 62, 0.25);
  border: 1px solid rgba(141, 195, 59, 0.15);
}

.cta-bg-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    ellipse at center top,
    rgba(141, 195, 59, 0.4) 0%,
    rgba(8, 110, 62, 0.2) 30%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.cta-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: radial-gradient(
    circle,
    rgba(141, 195, 59, 0.08) 1.5px,
    transparent 1.5px
  );
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}

.cta-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-premium-left {
  color: var(--white);
}

.cta-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(141, 195, 59, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(141, 195, 59, 0.3);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.cta-premium-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.cta-highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), #b3e055);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-premium-desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 460px;
}

.cta-premium-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
}

.cta-btn-primary {
  background: linear-gradient(135deg, var(--secondary), #a0d44f);
  color: var(--dark);
  box-shadow: 0 6px 20px rgba(141, 195, 59, 0.4);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(141, 195, 59, 0.6);
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.cta-info-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.cta-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(141, 195, 59, 0.3);
}

.cta-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.cta-stars i {
  color: #fbbf24;
  font-size: 1rem;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.5));
}

.cta-quote {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  font-style: italic;
}

.cta-quote-highlight {
  color: var(--secondary);
  font-weight: 600;
  font-style: normal;
}

.cta-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.cta-author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(141, 195, 59, 0.4);
}

.cta-author-info {
  flex: 1;
}

.cta-author-info strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 2px;
  font-weight: 600;
}

.cta-author-info span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.cta-verified {
  color: var(--secondary);
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 6px rgba(141, 195, 59, 0.5));
}

.cta-mini-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cta-mini-stat {
  flex: 1;
  text-align: center;
}

.cta-mini-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 4px;
}

.cta-mini-stat span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-mini-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* CTA Premium Responsive */
@media (max-width: 1024px) {
  .cta-premium-card {
    padding: 50px 40px;
  }

  .cta-premium-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-premium-left {
    text-align: center;
  }

  .cta-premium-buttons {
    justify-content: center;
  }

  .cta-premium-desc {
    margin: 0 auto 28px;
  }
}

@media (max-width: 768px) {
  .cta-premium-section {
    padding: 60px 0;
  }

  .cta-premium-card {
    padding: 40px 28px;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .cta-premium-card {
    padding: 32px 22px;
  }

  .cta-premium-buttons {
    flex-direction: column;
  }

  .cta-btn {
    justify-content: center;
  }
}
/* ============================================================
   HERO — CLEAN & PROFESSIONAL DESIGN
   ============================================================ */

/* Lighter overlay - shows image clearly */
.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(16, 61, 39, 0.65) 0%,
    rgba(8, 110, 62, 0.55) 100%
  ) !important;
}

/* ============================================================
   HERO BADGE — Clean Pill Style
   ============================================================ */
.hero-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  background: rgba(141, 195, 59, 0.15) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 22px !important;
  border-radius: 50px !important;
  color: var(--white) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  margin-bottom: 24px !important;
  border: 1px solid rgba(141, 195, 59, 0.4) !important;
  letter-spacing: 0.3px;
}

.hero-badge i {
  color: var(--secondary) !important;
  font-size: 0.85rem !important;
}

/* ============================================================
   HERO HEADING — Subtle Highlight
   ============================================================ */
.hero-heading {
  font-weight: 700 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-heading .text-highlight {
  color: var(--secondary) !important;
  position: relative;
  display: inline-block;
}

.hero-heading .text-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  border-radius: 4px;
  opacity: 0.7;
}

/* ============================================================
   HERO SUBTITLE
   ============================================================ */
.hero-sub {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   HERO BUTTONS — Clean Professional
   ============================================================ */
.hero-buttons .btn-primary {
  background: var(--secondary) !important;
  color: var(--dark) !important;
  border: none !important;
  font-weight: 600 !important;
}

.hero-buttons .btn-primary:hover {
  background: #a0d44f !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(141, 195, 59, 0.4) !important;
}

.hero-buttons .btn-primary i {
  color: var(--dark) !important;
}

.hero-buttons .btn-outline-white {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  font-weight: 500 !important;
}

.hero-buttons .btn-outline-white:hover {
  background: var(--white) !important;
  color: var(--primary) !important;
  border-color: var(--white) !important;
  transform: translateY(-2px) !important;
}

/* ============================================================
   MARQUEE STRIP — PREMIUM DESIGN
   ============================================================ */

.marquee-premium {
  background: linear-gradient(
    90deg,
    var(--dark) 0%,
    var(--primary) 50%,
    var(--dark) 100%
  );
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(141, 195, 59, 0.2);
  border-bottom: 1px solid rgba(141, 195, 59, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Static Label on Left */
.marquee-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--dark);
  padding: 18px 28px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  padding-right: 40px;
}

.marquee-label i {
  color: var(--dark);
  font-size: 1rem;
}

/* Scrolling Track */
.marquee-track-premium {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 16px 0;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

.marquee-content-premium {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-content-premium:hover {
  animation-play-state: paused;
}

.marquee-content-premium span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.marquee-content-premium span:hover {
  color: var(--secondary);
}

.marquee-content-premium span i {
  color: var(--secondary);
  font-size: 0.85rem;
}

/* Divider dots between items */
.marquee-divider {
  color: var(--secondary) !important;
  font-size: 1.2rem !important;
  padding: 0 4px !important;
  opacity: 0.6;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .marquee-label {
    padding: 14px 20px 14px 18px;
    padding-right: 30px;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
  }

  .marquee-label i {
    font-size: 0.9rem;
  }

  .marquee-track-premium {
    padding: 12px 0;
  }

  .marquee-content-premium span {
    font-size: 0.8rem;
    padding: 0 14px;
  }

  .marquee-content-premium {
    animation-duration: 40s;
  }
}

@media (max-width: 480px) {
  .marquee-label {
    padding: 12px 16px 12px 14px;
    padding-right: 26px;
    font-size: 0.72rem;
  }

  .marquee-content-premium span {
    font-size: 0.75rem;
    padding: 0 12px;
  }
}

/* ============================================================
   FOOTER — WHITE BACKGROUND VERSION
   ============================================================ */

.footer {
  background: var(--white) !important;
  color: var(--gray-700) !important;
  border-top: 1px solid var(--gray-200);
}

/* Brand Section */
.footer-brand .logo-main {
  color: var(--dark) !important;
}

.footer-brand p {
  color: var(--gray-600) !important;
}

/* Footer Headings */
.footer-heading {
  color: var(--gray-900) !important;
}

.footer-heading::after {
  background: var(--primary) !important;
}

/* Footer Links */
.footer-links a {
  color: var(--gray-600) !important;
}

.footer-links a:hover {
  color: var(--primary) !important;
}

.footer-links a i {
  color: var(--gray-400) !important;
}

/* Contact List */
.footer-contact-list li {
  color: var(--gray-600) !important;
}

.footer-contact-list li i {
  color: var(--primary) !important;
}

.footer-contact-list a {
  color: var(--gray-600) !important;
}

.footer-contact-list a:hover {
  color: var(--primary) !important;
}

/* Social Links */
.social-link {
  background: var(--light) !important;
  color: var(--gray-600) !important;
  border: 1px solid var(--gray-200);
}

.social-link:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-color: var(--primary);
}

/* Footer Tagline */
.footer-tagline {
  background: var(--light) !important;
  border: 1px solid var(--gray-200);
}

.footer-tagline i {
  color: var(--primary) !important;
}

.footer-tagline em {
  color: var(--gray-700) !important;
}

/* Border between sections */
.footer-grid {
  border-bottom: 1px solid var(--gray-200) !important;
}

/* Footer Bottom */
.footer-bottom p {
  color: var(--gray-500) !important;
}

.footer-bottom p strong {
  color: var(--gray-800) !important;
}

/* Designed By Sprintofy */
.designed-by {
  color: var(--gray-500) !important;
}

.sprintofy-link {
  color: var(--primary) !important;
  background: rgba(8, 110, 62, 0.08) !important;
  border-color: rgba(8, 110, 62, 0.2) !important;
}

.sprintofy-link:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
}

/* Navbar always white — never transparent */
.navbar {
  background: #ffffff !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: none !important;
}

/* Make nav links visible (dark color on white bg) */
.navbar .nav-link {
  color: #1a1a1a !important;
}

.navbar .nav-link:hover {
  color: #086e3e !important;
}

.navbar .nav-link.active {
  color: #086e3e !important;
}

/* Hamburger lines visible on white */
.navbar .hamburger span {
  background: #1a1a1a !important;
}

/* Dropdown arrow visible */
.navbar .dropdown-trigger i {
  color: #1a1a1a !important;
}

/* ============================================================
   INNER PAGE HERO — Increase height for better visibility
   ============================================================ */

/* Target inner page hero (page-hero / sub-hero / breadcrumb-hero etc.) */
.page-hero,
.sub-hero,
.inner-hero,
.breadcrumb-hero {
  min-height: 450px !important; /* desktop height */
  padding-top: 160px !important; /* push content below navbar */
  padding-bottom: 100px !important; /* extra space at bottom */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tablet */
@media (max-width: 992px) {
  .page-hero,
  .sub-hero,
  .inner-hero,
  .breadcrumb-hero {
    min-height: 380px !important;
    padding-top: 140px !important;
    padding-bottom: 80px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero,
  .sub-hero,
  .inner-hero,
  .breadcrumb-hero {
    min-height: 320px !important;
    padding-top: 120px !important;
    padding-bottom: 60px !important;
  }
}

/* Mobile small */
@media (max-width: 480px) {
  .page-hero,
  .sub-hero,
  .inner-hero,
  .breadcrumb-hero {
    min-height: 280px !important;
    padding-top: 110px !important;
    padding-bottom: 50px !important;
  }
}

/* ============================================================
   WHY CHOOSE US — Farm Background Image + White Text
============================================================ */
.why-choose-cards {
  background-image:
    linear-gradient(
      135deg,
      rgba(16, 61, 39, 0.45) 0%,
      rgba(8, 110, 62, 0.45) 100%
    ),
    url("../Images/home/farming.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* Header text - white on dark background */
.why-choose-cards .section-tag {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-choose-cards .section-tag i {
  color: #8dc33b !important;
}

.why-choose-cards .section-title {
  color: #ffffff !important;
}

.why-choose-cards .section-title .text-highlight {
  color: #8dc33b !important;
}

.why-choose-cards .section-title .text-highlight::after {
  background: rgba(141, 195, 59, 0.25) !important;
}

.why-choose-cards .section-subtitle {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* Mobile - disable parallax */
@media (max-width: 768px) {
  .why-choose-cards {
    background-attachment: scroll;
  }
}

/* ============================================================
   SERVICE ADVANTAGES — Farm Background Image
============================================================ */
.service-advantages {
  background-image:
    linear-gradient(
      135deg,
      rgba(16, 61, 39, 0.45) 0%,
      rgba(8, 110, 62, 0.45) 100%
    ),
    url("../Images/home/farming1.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

/* Header text - white on dark background */
.service-advantages .section-tag {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-advantages .section-tag i {
  color: #8dc33b !important;
}

.service-advantages .section-title {
  color: #ffffff !important;
}

.service-advantages .section-title .text-highlight {
  color: #8dc33b !important;
}

.service-advantages .section-title .text-highlight::after {
  background: rgba(141, 195, 59, 0.25) !important;
}

.service-advantages .section-subtitle {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* Glass-effect cards on dark bg */
.service-advantages .advantage-card {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.service-advantages .advantage-card:hover {
  background: #ffffff !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35) !important;
}

/* Mobile - disable parallax */
@media (max-width: 768px) {
  .service-advantages {
    background-attachment: scroll !important;
  }
}

/* ============================================================
   MISSION & VISION — Farm Background Image
============================================================ */
.mission-vision {
  background-image:
    linear-gradient(
      135deg,
      rgba(16, 61, 39, 0.45) 0%,
      rgba(8, 110, 62, 0.45) 100%
    ),
    url("../Images/about/lemon.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

/* Header text - white on dark background */
.mission-vision .section-tag {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-vision .section-tag i {
  color: #8dc33b !important;
}

.mission-vision .section-title {
  color: #ffffff !important;
}

.mission-vision .section-title .text-highlight {
  color: #8dc33b !important;
}

.mission-vision .section-title .text-highlight::after {
  background: rgba(141, 195, 59, 0.25) !important;
}

.mission-vision .section-subtitle {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* Glass-effect cards on dark bg */
.mission-vision .mv-card {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.mission-vision .mv-card:hover {
  background: #ffffff !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35) !important;
}

/* ============================================================
   NUCLEAR FIX — Mission & Vision Icons (Circle, no square)
============================================================ */
.mission-vision .mv-icon-wrap,
.mission-vision .mv-icon-wrap::before,
.mission-vision .mv-icon-wrap::after {
  all: unset !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 0 20px 0 !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  padding: 0 !important;
}

/* Perfect circle icon - default state */
.mission-vision .mv-icon {
  width: 70px !important;
  height: 70px !important;
  min-width: 70px !important;
  min-height: 70px !important;
  background: linear-gradient(135deg, #086e3e, #065a32) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 1.5rem !important;
  box-shadow: 0 8px 20px rgba(8, 110, 62, 0.35) !important;
  transition: all 0.4s ease !important;
  border: none !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: relative !important;
}

/* Hover - beautiful gradient circle */
.mission-vision .mv-card:hover .mv-icon {
  background: linear-gradient(
    135deg,
    #8dc33b 0%,
    #086e3e 50%,
    #065a32 100%
  ) !important;
  background-image: linear-gradient(
    135deg,
    #8dc33b 0%,
    #086e3e 50%,
    #065a32 100%
  ) !important;
  transform: scale(1.1) rotate(-5deg) !important;
  box-shadow:
    0 12px 30px rgba(8, 110, 62, 0.5),
    0 0 0 6px rgba(141, 195, 59, 0.2) !important;
}

.mission-vision .mv-icon i {
  color: #ffffff !important;
}

/* Mobile - disable parallax */
@media (max-width: 768px) {
  .mission-vision {
    background-attachment: scroll !important;
  }
}

/* ============================================================
   FLOATING ACTION BUTTONS — Call, WhatsApp, Back to Top
============================================================ */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Call Button - Primary green */
.float-call {
  background: var(--primary);
  animation: pulseCall 2s infinite;
}

.float-call:hover {
  background: var(--primary-dark);
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.5);
  animation: none;
}

/* WhatsApp Button - WhatsApp brand green */
.float-whatsapp {
  background: #25d366;
  animation: pulseWhatsApp 2s infinite;
  animation-delay: 1s;
}

.float-whatsapp:hover {
  background: #128c7e;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  animation: none;
}

/* Back to Top Button - Hidden by default */
.float-top {
  background: var(--dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.float-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-top:hover {
  background: var(--primary);
  box-shadow: 0 10px 25px rgba(var(--dark-rgb), 0.5);
}

/* Tooltip on hover */
.float-tooltip {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--gray-900);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.float-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--gray-900);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Pulse animations - attention grabbing */
@keyframes pulseCall {
  0%,
  100% {
    box-shadow:
      0 6px 20px rgba(var(--primary-rgb), 0.3),
      0 0 0 0 rgba(var(--primary-rgb), 0.5);
  }
  50% {
    box-shadow:
      0 6px 20px rgba(var(--primary-rgb), 0.3),
      0 0 0 12px rgba(var(--primary-rgb), 0);
  }
}

@keyframes pulseWhatsApp {
  0%,
  100% {
    box-shadow:
      0 6px 20px rgba(37, 211, 102, 0.3),
      0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow:
      0 6px 20px rgba(37, 211, 102, 0.3),
      0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .float-tooltip {
    display: none; /* Hide tooltips on mobile */
  }
}

/* Disable old back-to-top styles */
.back-to-top {
  display: none !important;
}
/* ============================================================
   NAVBAR HEIGHT FIX - Balanced & Professional
============================================================ */

/* Navbar - moderate padding */
.navbar {
  padding: 12px 0 !important;
}

/* Tighten the nav container */
.navbar .nav-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: auto !important;
}

/* Logo - clean alignment */
.navbar .logo {
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 0;
}

/* Logo image - balanced size */
.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

/* Align nav links with logo */
.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar .nav-link {
  padding: 8px 4px !important;
  line-height: 1.2;
}

/* CTA button */
.navbar .nav-cta {
  padding: 11px 24px !important;
  font-size: 0.92rem;
}

/* Sticky/scrolled state - slightly smaller */
.navbar.scrolled {
  padding: 8px 0 !important;
}

.navbar.scrolled .logo-img {
  height: 58px;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .logo-img {
    height: 55px;
  }
  .navbar {
    padding: 10px 0 !important;
  }
}

/* ============================================================
   15. PAGE HERO (Inner Pages) — ✅ IMAGE FIT FIXED
============================================================ */
.page-hero {
  position: relative;
  min-height: 500px; /* ⬆ increased from 400px for better image display */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%; /* ✅ KEY FIX — shows top portion (faces) instead of cutting */
  display: block;
}

/* Overlay */
.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(var(--dark-rgb), 0.65) 0%,
    rgba(var(--primary-rgb), 0.55) 100%
  );
}

/* Content */
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 100px 20px 60px;
}

/* ============================================================
   RESPONSIVE — Page Hero Image Adjustments
============================================================ */
@media (max-width: 992px) {
  .page-hero {
    min-height: 420px;
  }
  .page-hero-bg img {
    object-position: center 25%; /* slightly higher on tablets */
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 360px;
  }
  .page-hero-bg img {
    object-position: center 20%; /* even higher on mobile */
  }
  .page-hero-content {
    padding: 90px 20px 50px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 320px;
  }
  .page-hero-bg img {
    object-position: center 15%;
  }
}

/* ============================================================
   15. PAGE HERO (Inner Pages) — FULLY RESPONSIVE
============================================================ */
.page-hero {
  position: relative;
  min-height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%; /* shows upper portion (faces) */
  display: block;
}

/* Overlay */
.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(var(--dark-rgb), 0.65) 0%,
    rgba(var(--primary-rgb), 0.55) 100%
  );
}

/* Content */
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 100px 20px 60px;
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb .fa-chevron-right {
  font-size: 0.6rem;
}

.breadcrumb span {
  color: var(--white);
  font-weight: 500;
}

/* Title */
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Subtitle */
.page-hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
============================================================ */

/* Large Tablet / Small Desktop (1024px and below) */
@media (max-width: 1024px) {
  .page-hero {
    min-height: 460px;
  }
  .page-hero-bg img {
    object-position: center 28%;
  }
  .page-hero-content {
    padding: 95px 24px 55px;
  }
}

/* Tablet (992px and below) */
@media (max-width: 992px) {
  .page-hero {
    min-height: 420px;
  }
  .page-hero-bg img {
    object-position: center 25%;
  }
  .page-hero-content {
    padding: 90px 24px 50px;
  }
  .breadcrumb {
    font-size: 0.82rem;
    margin-bottom: 16px;
  }
}

/* Mobile Landscape / Small Tablet (768px and below) */
@media (max-width: 768px) {
  .page-hero {
    min-height: 360px;
  }
  .page-hero-bg img {
    object-position: center 22%;
  }
  .page-hero-content {
    padding: 85px 20px 45px;
  }
  .page-hero-title {
    margin-bottom: 12px;
  }
  .page-hero-sub {
    font-size: 0.92rem;
    padding: 0 10px;
  }
  .breadcrumb {
    font-size: 0.78rem;
    margin-bottom: 14px;
    gap: 8px;
  }
}

/* Mobile (600px and below) */
@media (max-width: 600px) {
  .page-hero {
    min-height: 320px;
  }
  .page-hero-bg img {
    object-position: center 20%;
  }
  .page-hero-content {
    padding: 80px 18px 40px;
  }
  .page-hero-title {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
  .page-hero-sub {
    font-size: 0.88rem;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .page-hero {
    min-height: 290px;
  }
  .page-hero-bg img {
    object-position: center 18%;
  }
  .page-hero-content {
    padding: 75px 16px 35px;
  }
  .page-hero-title {
    font-size: 1.5rem;
    line-height: 1.25;
  }
  .page-hero-sub {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .breadcrumb {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
  .breadcrumb .fa-chevron-right {
    font-size: 0.55rem;
  }
}

/* Extra Small Mobile (380px and below) */
@media (max-width: 380px) {
  .page-hero {
    min-height: 270px;
  }
  .page-hero-bg img {
    object-position: center 15%;
  }
  .page-hero-content {
    padding: 70px 14px 30px;
  }
  .page-hero-title {
    font-size: 1.35rem;
  }
  .page-hero-sub {
    font-size: 0.8rem;
  }
}
/* ============================================================
   MOBILE — Focus on ONE Person (Centered Face)
============================================================ */

/* Tablet (992px and below) */
@media (max-width: 992px) {
  .page-hero {
    min-height: 420px;
  }
  .page-hero-bg img {
    object-position: center 25%;
  }
  .page-hero-content {
    padding: 90px 24px 50px;
  }
}

/* Mobile Landscape (768px and below) — start focusing */
@media (max-width: 768px) {
  .page-hero {
    min-height: 380px;
  }
  .page-hero-bg img {
    object-fit: cover;
    object-position: 35% 25%; /* ✅ shifts to LEFT — shows older farmer's face */
  }
  .page-hero-content {
    padding: 85px 20px 45px;
  }
}

/* Mobile (600px and below) — zoom into one face */
@media (max-width: 600px) {
  .page-hero {
    min-height: 340px;
  }
  .page-hero-bg img {
    object-fit: cover;
    object-position: 30% 25%; /* ✅ more focus on left person */
    transform: scale(1.1); /* ✅ slight zoom for better framing */
  }
  .page-hero-content {
    padding: 80px 18px 40px;
  }
  .page-hero-title {
    font-size: 1.7rem;
  }
  .page-hero-sub {
    font-size: 0.88rem;
  }
}

/* Small Mobile (480px and below) — single person focus */
@media (max-width: 480px) {
  .page-hero {
    min-height: 320px;
  }
  .page-hero-bg img {
    object-fit: cover;
    object-position: 28% 22%; /* ✅ centered on older farmer's face */
    transform: scale(1.15); /* ✅ zoom in more */
  }
  .page-hero-content {
    padding: 75px 16px 35px;
  }
  .page-hero-title {
    font-size: 1.5rem;
  }
}

/* Extra Small (380px and below) */
@media (max-width: 380px) {
  .page-hero {
    min-height: 290px;
  }
  .page-hero-bg img {
    object-fit: cover;
    object-position: 28% 20%;
    transform: scale(1.2); /* ✅ maximum zoom for tiny screens */
  }
  .page-hero-content {
    padding: 70px 14px 30px;
  }
}

/* ============================================================
   FIX — Keep Navbar Same Size When Scrolling (No Shrinking)
============================================================ */

/* Force navbar padding to stay the same when scrolled */
.navbar.scrolled,
.navbar {
  padding: 12px 0 !important;        /* same padding always */
}

/* Force logo size to stay the same when scrolled */
.navbar.scrolled .logo-img,
.navbar .logo-img {
  height: 70px !important;           /* same logo height always */
  width: auto !important;
}

/* Force nav container height stays same */
.navbar.scrolled .nav-container,
.navbar .nav-container {
  min-height: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Force nav links stay same */
.navbar.scrolled .nav-link,
.navbar .nav-link {
  padding: 8px 4px !important;
  font-size: inherit !important;
}

/* Force CTA button stays same */
.navbar.scrolled .nav-cta,
.navbar .nav-cta {
  padding: 11px 24px !important;
  font-size: 0.92rem !important;
}