/* ============================================================
   NOMA SERVICE CONSOLIDATED LIMITED
   Brand System CSS — v1.0
   Primary Color: Pigment Green #3AAE51
   Black: #000000 | Wheat: #F5E0B7 | White: #FFFFFF
   Typography: Outfit (Headlines + Body)
   ============================================================ */

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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --color-green: #3AAE51;
  --color-green-dark: #2a8f3f;
  --color-green-light: #4fc464;
  --color-green-subtle: rgba(58,174,81,0.08);
  --color-green-subtle2: rgba(58,174,81,0.15);
  --color-black: #000000;
  --color-black-90: #0d0d0d;
  --color-black-80: #1a1a1a;
  --color-black-70: #262626;
  --color-black-60: #333333;
  --color-wheat: #F5E0B7;
  --color-wheat-dark: #e8c98a;
  --color-wheat-light: #faf0e0;
  --color-white: #FFFFFF;
  --color-white-90: rgba(255,255,255,0.9);
  --color-white-70: rgba(255,255,255,0.7);
  --color-white-50: rgba(255,255,255,0.5);
  --color-white-20: rgba(255,255,255,0.2);
  --color-white-10: rgba(255,255,255,0.1);

  /* Typography */
  --font-headline: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-serif: 'Alegreya', serif;

  /* Sizing */
  --container-max: 1280px;
  --container-wide: 1440px;
  --section-padding: 120px;
  --section-padding-sm: 80px;
  --section-padding-xs: 60px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.24);
  --shadow-green: 0 8px 32px rgba(58,174,81,0.25);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Z-Index Scale */
  --z-base: 1;
  --z-above: 10;
  --z-nav: 1000;
  --z-overlay: 2000;
  --z-modal: 3000;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-black-80);
  background: var(--color-white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.text-display {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.text-hero {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.text-h1 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-h2 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.018em;
}

.text-h3 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.text-h4 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.3;
}

.text-h5 {
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.4;
}

.text-body-lg {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.7;
  font-weight: 400;
}

.text-body {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.7;
  font-weight: 400;
}

.text-body-sm {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.text-caption {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-pad {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.section-pad-sm {
  padding-top: var(--section-padding-sm);
  padding-bottom: var(--section-padding-sm);
}

.section-pad-xs {
  padding-top: var(--section-padding-xs);
  padding-bottom: var(--section-padding-xs);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

/* ============================================================
   COLOR UTILITIES
   ============================================================ */
.bg-black { background-color: var(--color-black); }
.bg-black-90 { background-color: var(--color-black-90); }
.bg-black-80 { background-color: var(--color-black-80); }
.bg-green { background-color: var(--color-green); }
.bg-wheat { background-color: var(--color-wheat); }
.bg-wheat-light { background-color: var(--color-wheat-light); }
.bg-white { background-color: var(--color-white); }

.text-white { color: var(--color-white); }
.text-green { color: var(--color-green); }
.text-wheat { color: var(--color-wheat); }
.text-black { color: var(--color-black); }
.text-muted { color: rgba(0,0,0,0.55); }
.text-white-70 { color: var(--color-white-70); }

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
  box-shadow: 0 4px 20px rgba(58,174,81,0.3);
}

.btn-primary:hover {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(58,174,81,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}

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

.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.btn-dark:hover {
  background: var(--color-black-60);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-green {
  background: transparent;
  color: var(--color-green);
  border-color: var(--color-green);
}

.btn-outline-green:hover {
  background: var(--color-green);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-wheat {
  background: var(--color-wheat);
  color: var(--color-black);
  border-color: var(--color-wheat);
}

.btn-wheat:hover {
  background: var(--color-wheat-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 12px;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 15px;
}

.btn-xl {
  padding: 22px 52px;
  font-size: 16px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ============================================================
   SECTION LABELS / EYEBROWS
   ============================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 18px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--color-green);
  border-radius: 2px;
}

.section-eyebrow-light {
  color: var(--color-wheat);
}

.section-eyebrow-light::before {
  background: var(--color-wheat);
}

.section-eyebrow-white {
  color: var(--color-white);
}

.section-eyebrow-white::before {
  background: var(--color-white);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid rgba(0,0,0,0.06);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-dark {
  background: var(--color-black-70);
  border-color: rgba(255,255,255,0.08);
}

.card-dark:hover {
  border-color: var(--color-green);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.card-green {
  background: var(--color-green);
  border-color: transparent;
}

.card-wheat {
  background: var(--color-wheat-light);
  border-color: rgba(245,224,183,0.5);
}

.card-body {
  padding: 32px;
}

.card-body-lg {
  padding: 44px;
}

/* ============================================================
   STAT BLOCKS
   ============================================================ */
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-green);
}

.stat-number-white {
  color: var(--color-white);
}

.stat-number-wheat {
  color: var(--color-wheat);
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-label-light {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   DIVIDERS
   ============================================================ */
.divider {
  width: 60px;
  height: 3px;
  background: var(--color-green);
  border-radius: 2px;
  margin: 20px 0;
}

.divider-center { margin-left: auto; margin-right: auto; }
.divider-wheat { background: var(--color-wheat); }
.divider-white { background: var(--color-white); }

/* ============================================================
   TAGS / BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-green {
  background: var(--color-green-subtle2);
  color: var(--color-green-dark);
}

.badge-wheat {
  background: rgba(245,224,183,0.3);
  color: #8a6220;
}

.badge-dark {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
}

.badge-black {
  background: var(--color-black);
  color: var(--color-white);
}

/* ============================================================
   ICON SYSTEM — Monochrome, brand-consistent
   ============================================================ */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-green);
  flex-shrink: 0;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-green-subtle);
  color: var(--color-green);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.icon-box:hover {
  background: var(--color-green);
  color: var(--color-white);
}

.icon-box-dark {
  background: rgba(255,255,255,0.08);
  color: var(--color-green);
}

.icon-box-dark:hover {
  background: var(--color-green);
  color: var(--color-white);
}

.icon-box-lg {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-black-60);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-label-light {
  color: var(--color-white-70);
}

.form-control {
  padding: 14px 18px;
  background: rgba(0,0,0,0.04);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-black-80);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-green);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(58,174,81,0.12);
}

.form-control-dark {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: var(--color-white);
}

.form-control-dark::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-control-dark:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(58,174,81,0.15);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-green {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(58,174,81,0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(58,174,81,0);
  }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.animate-fade-up { animation: fadeInUp 0.7s var(--transition-slow) both; }
.animate-fade-left { animation: fadeInLeft 0.7s var(--transition-slow) both; }
.animate-fade-right { animation: fadeInRight 0.7s var(--transition-slow) both; }
.animate-fade-in { animation: fadeIn 0.5s ease both; }
.animate-scale-in { animation: scaleIn 0.5s ease both; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   PATTERN OVERLAYS
   ============================================================ */
.pattern-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pattern-overlay-img {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: var(--color-black);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-white-50);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--color-white-70);
  transition: color var(--transition-fast);
}

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

.breadcrumb-sep {
  color: var(--color-white-30);
}

/* ============================================================
   TABLE STYLES
   ============================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-black-90);
  color: var(--color-white);
  border-bottom: 2px solid var(--color-green);
}

.data-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  vertical-align: middle;
}

.data-table tbody tr {
  transition: background var(--transition-fast);
}

.data-table tbody tr:hover {
  background: var(--color-green-subtle);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--color-black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band-green {
  background: var(--color-green);
}

.cta-band-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* ============================================================
   PROGRESS / STATUS INDICATORS
   ============================================================ */
.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(0,0,0,0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--color-green);
  border-radius: var(--radius-full);
  transition: width 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.progress-fill-wheat {
  background: var(--color-wheat);
}

/* ============================================================
   TOOLTIP
   ============================================================ */
.tooltip-wrapper {
  position: relative;
}

.tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-black);
  color: var(--color-white);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.tooltip-wrapper:hover .tooltip {
  opacity: 1;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 600px;
  width: 90%;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-slow);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-backdrop.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* ============================================================
   LOADING / SKELETON
   ============================================================ */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--color-green);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-green-dark);
}

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: var(--color-green);
  color: var(--color-white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  :root {
    --section-padding: 90px;
  }
  .container { padding: 0 32px; }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 72px;
    --section-padding-sm: 60px;
  }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --section-padding-sm: 48px;
    --section-padding-xs: 40px;
  }
  .container { padding: 0 20px; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .page-header { padding: 140px 0 60px; }
}

@media (max-width: 480px) {
  .btn-xl { padding: 16px 32px; font-size: 14px; }
  .btn-lg { padding: 14px 28px; font-size: 13px; }
}
