/* =============================================================================
   YAD AL MA — PROFESSIONAL LANDSCAPE & GARDENING
   Main Stylesheet: Design Tokens, Reset, Typography, Utilities
   © Yad Al Ma. All rights reserved.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ----------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --color-primary: #1B5E20;
  --color-primary-dark: #0D3B10;
  --color-primary-light: #2E7D32;
  --color-secondary: #00796B;
  --color-secondary-light: #00897B;
  --color-accent: #D4AF37;
  --color-accent-dark: #B8960C;

  /* Neutrals */
  --color-dark: #0A1628;
  --color-dark-2: #1A2B40;
  --color-dark-3: #2C3E50;
  --color-gray-600: #4A5568;
  --color-gray-500: #6B7280;
  --color-gray-400: #9CA3AF;
  --color-gray-300: #D1D5DB;
  --color-gray-200: #E5E7EB;
  --color-gray-100: #F3F4F6;
  --color-off-white: #F8FAF7;
  --color-white: #FFFFFF;

  /* Greens Palette */
  --color-green-50: #F1F8F2;
  --color-green-100: #E8F5E9;
  --color-green-200: #C8E6C9;
  --color-green-300: #A5D6A7;

  /* Tints & Backgrounds */
  --bg-section-light: #F8FAF7;
  --bg-section-dark: #0A1628;
  --bg-card: #FFFFFF;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Font Sizes (fluid) */
  --text-xs: clamp(0.7rem, 0.9vw, 0.8rem);
  --text-sm: clamp(0.85rem, 1vw, 0.938rem);
  --text-base: clamp(0.9rem, 1.1vw, 1rem);
  --text-lg: clamp(1.05rem, 1.3vw, 1.125rem);
  --text-xl: clamp(1.1rem, 1.5vw, 1.25rem);
  --text-2xl: clamp(1.3rem, 2vw, 1.5rem);
  --text-3xl: clamp(1.6rem, 2.5vw, 1.875rem);
  --text-4xl: clamp(1.9rem, 3.5vw, 2.25rem);
  --text-5xl: clamp(2.2rem, 5vw, 3rem);
  --text-6xl: clamp(2.8rem, 6vw, 3.75rem);
  --text-hero: clamp(3rem, 7vw, 5rem);

  /* Font Weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-wide: 1440px;
  --container-narrow: 960px;
  --container-padding: clamp(1rem, 5vw, 2.5rem);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-green: 0 8px 32px rgba(27, 94, 32, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-float: 500;
  --z-toast: 600;
}

/* -----------------------------------------------------------------------------
   2. MODERN CSS RESET
   ----------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

svg:not([width]):not([height]) {
  width: 1.25rem;
  height: 1.25rem;
}

/* FontAwesome icon alignment safeguard */
i[class*="fa-"] {
  display: inline-block;
  vertical-align: -0.1em;
  line-height: 1;
  flex-shrink: 0;
}

/* List item icon alignment */
li > i[class*="fa-"]:first-child,
li > svg:first-child {
  display: inline-block;
  vertical-align: -0.1em;
  flex-shrink: 0;
}


a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-fast);
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  appearance: none;
  -webkit-appearance: none;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-dark);
}

p {
  max-width: 72ch;
}

strong { font-weight: var(--fw-semibold); }
em { font-style: italic; }

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track { background: var(--color-gray-100); }
::-webkit-scrollbar-thumb {
  background: var(--color-green-300);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--color-primary-light); }

/* Selection color */
::selection {
  background: var(--color-green-200);
  color: var(--color-primary-dark);
}

/* -----------------------------------------------------------------------------
   3. TYPOGRAPHY SYSTEM
   ----------------------------------------------------------------------------- */
.heading-display {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-1 {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.heading-2 {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.heading-3 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--fw-semibold);
  line-height: 1.25;
}

.heading-4 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
}

.heading-5 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
}

.text-lead {
  font-size: var(--text-xl);
  line-height: 1.65;
  color: var(--color-gray-600);
  font-weight: var(--fw-regular);
}

.text-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Color utilities */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-white { color: var(--color-white); }
.text-muted { color: var(--color-gray-500); }
.text-dark { color: var(--color-dark); }

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--color-accent) 0%, #F5D76E 50%, var(--color-accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* -----------------------------------------------------------------------------
   4. LAYOUT UTILITIES
   ----------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* Grid utilities */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Section Spacing */
.section {
  padding: var(--space-20) 0;
}

.section-lg {
  padding: var(--space-32) 0;
}

.section-sm {
  padding: var(--space-12) 0;
}

/* Background utilities */
.bg-white { background-color: var(--color-white); }
.bg-light { background-color: var(--bg-section-light); }
.bg-dark { background-color: var(--bg-section-dark); }
.bg-primary { background-color: var(--color-primary); }
.bg-green-50 { background-color: var(--color-green-50); }

/* Width utilities */
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 56rem; }
.max-w-4xl { max-width: 64rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }

/* Visually hidden (accessible) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Spacing utilities */
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

/* -----------------------------------------------------------------------------
   5. SECTION HEADER COMPONENT
   ----------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto var(--space-12);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-green-100);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.section-tag.gold {
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-accent-dark);
}

.section-tag.white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.section-title.white {
  color: var(--color-white);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto;
}

.section-subtitle.white {
  color: rgba(255, 255, 255, 0.8);
}

/* Decorative divider */
.section-divider {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-4) auto;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.section-divider .line {
  width: 48px;
  height: 2px;
  background: var(--color-green-300);
  border-radius: 2px;
}

.section-divider .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* -----------------------------------------------------------------------------
   6. BUTTONS
   ----------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: var(--fw-semibold);
  font-size: var(--text-base);
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(27, 94, 32, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27, 94, 32, 0.4);
  color: var(--color-white);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  box-shadow: 0 4px 16px rgba(0, 121, 107, 0.25);
}

.btn-secondary:hover {
  background: var(--color-secondary-light);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-accent) 0%, #E8C84A 50%, var(--color-accent-dark) 100%);
  color: var(--color-dark);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5);
  color: var(--color-dark);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: var(--text-sm);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: var(--text-lg);
}

.btn-xl {
  padding: 1.25rem 3rem;
  font-size: var(--text-xl);
}

/* Arrow icon in button */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-base);
}

.btn-arrow:hover { gap: var(--space-3); }

.btn-arrow svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.btn-arrow:hover svg { transform: translateX(3px); }

/* General button icon sizing & alignment */
.btn svg,
.btn i {
  width: 1.125rem;
  height: 1.125rem;
  font-size: 1.125rem;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.btn-sm svg,
.btn-sm i {
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
}

.btn-lg svg,
.btn-lg i {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 1.25rem;
}

.btn-xl svg,
.btn-xl i {
  width: 1.35rem;
  height: 1.35rem;
  font-size: 1.35rem;
}

/* Button variants */
.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border-color: #25D366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  border-color: #20BA5A;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-full,
.btn-block {
  width: 100%;
  display: flex;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-decoration: none;
  transition: gap var(--transition-base), color var(--transition-fast);
}

.btn-text:hover {
  gap: var(--space-3);
  color: var(--color-primary-dark);
}

.btn-text i,
.btn-text svg {
  font-size: 0.875em;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.btn-text:hover i,
.btn-text:hover svg {
  transform: translateX(3px);
}


/* -----------------------------------------------------------------------------
   7. CARDS
   ----------------------------------------------------------------------------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid var(--color-gray-200);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.card:hover .card-image { transform: scale(1.05); }

.card-body {
  padding: var(--space-6);
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  background: var(--color-green-100);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.card-text {
  color: var(--color-gray-600);
  font-size: var(--text-base);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
  transition: gap var(--transition-base);
}

.card-link:hover { gap: var(--space-2); }

.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.card-link:hover svg { transform: translateX(3px); }

/* -----------------------------------------------------------------------------
   8. BADGE & TAG
   ----------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
}

.badge-green,
.badge-primary {
  background: var(--color-green-100);
  color: var(--color-primary);
}

.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-accent-dark);
}

.badge-dark {
  background: var(--color-dark-2);
  color: var(--color-white);
}

.badge-secondary {
  background: rgba(0, 121, 107, 0.12);
  color: var(--color-secondary);
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--color-gray-300);
  color: var(--color-gray-600);
}

/* Section Eyebrow & CTA */
.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.section-eyebrow-light {
  color: var(--color-accent);
}

.section-cta {
  margin-top: var(--space-12);
  text-align: center;
}


/* -----------------------------------------------------------------------------
   9. STATS COMPONENT
   ----------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-8);
}

.stats-section {
  padding: var(--space-20) 0;
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
}

.stat-item {
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition-base);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  transition: all var(--transition-base);
}

.stat-item:hover .stat-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.stat-icon svg,
.stat-icon i {
  width: 26px;
  height: 26px;
  font-size: 26px;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: color var(--transition-base);
}

.stat-item:hover .stat-icon svg,
.stat-item:hover .stat-icon i {
  color: var(--color-white);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-2);
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 0.7em;
  color: var(--color-accent);
  margin-left: 2px;
}

.stat-label {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-sub {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  margin-top: var(--space-1);
}


/* -----------------------------------------------------------------------------
   10. FEATURE LIST
   ----------------------------------------------------------------------------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-gray-600);
}

.feature-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-icon svg {
  width: 12px;
  height: 12px;
  color: var(--color-primary);
}

/* -----------------------------------------------------------------------------
   11. BREADCRUMB
   ----------------------------------------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a,
.breadcrumb-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover,
.breadcrumb-link:hover { color: var(--color-white); }

.breadcrumb-sep,
.breadcrumb-separator {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.breadcrumb-sep svg,
.breadcrumb-separator svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.breadcrumb-current {
  color: var(--color-accent);
  font-weight: var(--fw-semibold);
}

/* Dark breadcrumb variant */
.breadcrumb.dark { color: var(--color-gray-500); }
.breadcrumb.dark a,
.breadcrumb.dark .breadcrumb-link { color: var(--color-gray-600); }
.breadcrumb.dark a:hover,
.breadcrumb.dark .breadcrumb-link:hover { color: var(--color-primary); }
.breadcrumb.dark .breadcrumb-sep,
.breadcrumb.dark .breadcrumb-separator { color: var(--color-gray-400); }


/* -----------------------------------------------------------------------------
   12. IMAGE WITH OVERLAY
   ----------------------------------------------------------------------------- */
.img-overlay {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.img-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.img-overlay:hover img { transform: scale(1.05); }

.img-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.8) 0%, rgba(10, 22, 40, 0.1) 60%, transparent 100%);
}

/* -----------------------------------------------------------------------------
   13. TESTIMONIAL CARD
   ----------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-200);
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-green-200);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.testimonial-text {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  line-height: 1.75;
  font-style: italic;
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-green-200);
}

.testimonial-name {
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
  font-size: var(--text-base);
  display: block;
}

.testimonial-role {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  display: block;
}

.star-rating {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-3);
}

.star-rating svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  fill: var(--color-accent);
}

/* -----------------------------------------------------------------------------
   14. PROCESS / STEPS
   ----------------------------------------------------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-8);
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  box-shadow: var(--shadow-green);
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
  margin-bottom: var(--space-3);
}

.process-step-text {
  color: var(--color-gray-600);
  font-size: var(--text-base);
  line-height: 1.65;
}

/* -----------------------------------------------------------------------------
   15. PAGE HERO (INNER PAGES)
   ----------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(27, 94, 32, 0.55) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-20) 0 var(--space-16);
  width: 100%;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
  line-height: 1.15;
}

.page-hero-subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  max-width: 50rem;
  margin-bottom: var(--space-6);
}

/* -----------------------------------------------------------------------------
   16. UTILITY CLASSES
   ----------------------------------------------------------------------------- */
/* Padding */
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }
.py-20 { padding-top: var(--space-20); padding-bottom: var(--space-20); }

/* Rounded */
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadows */
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Border */
.border { border: 1px solid var(--color-gray-200); }
.border-green { border: 1px solid var(--color-green-200); }

/* Object fit */
.object-cover { object-fit: cover; }
.object-center { object-position: center; }

/* Line clamp */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.w-full {
  width: 100% !important;
}


/* Decorative leaf SVG background pattern */
.leaf-pattern {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* Green gradient background for CTA sections */
.bg-gradient-green {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-secondary) 100%);
}

.bg-gradient-dark {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
}

/* Divider horizontal rule */
.divider {
  border: none;
  height: 1px;
  background: var(--color-gray-200);
  margin: var(--space-8) 0;
}

.divider-green {
  background: linear-gradient(90deg, transparent, var(--color-green-200), transparent);
}

/* -----------------------------------------------------------------------------
   17. RESPONSIVE GRID OVERRIDES
   ----------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .section { padding: var(--space-16) 0; }
  .section-lg { padding: var(--space-20) 0; }

  .section-title { font-size: var(--text-4xl); }
  .page-hero { min-height: 320px; }
  .page-hero-title { font-size: var(--text-4xl); }
}

@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .section { padding: var(--space-12) 0; }
  .section-title { font-size: var(--text-3xl); }
  .btn-xl { padding: 1rem 2rem; font-size: var(--text-base); }
}

/* Print styles */
@media print {
  .nav, .footer, .floating-buttons { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { text-decoration: underline; }
  .page-hero { min-height: auto; padding: 1rem 0; }
}
