/* ============================================================
   MY NEST ORG — Global Stylesheet
   Design System: Primary #0000E3 | Background #FFFFFF | Text #000000
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #0000E3;
  --primary-dark: #0000b3;
  --primary-light: #3333ea;
  --primary-xlight: rgba(0, 0, 227, 0.08);
  --primary-border: rgba(0, 0, 227, 0.2);
  --white: #ffffff;
  --black: #000000;
  --text: #111111;
  --text-muted: #444444;
  --border: rgba(0, 0, 227, 0.15);
  --shadow: 0 4px 24px rgba(0, 0, 227, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 227, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 84px;
  --font: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-brand: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; color: var(--text-muted); line-height: 1.8; }
p:last-child { margin-bottom: 0; }

/* ---- Utility Classes ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-primary { background: var(--primary); }
.bg-white { background: var(--white); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.w-100 { width: 100%; }
.hidden { display: none !important; }

/* ---- Section Title ---- */
.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title .subtitle {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-xlight);
  border: 1px solid var(--primary-border);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 14px;
}
.section-title h2 { color: var(--black); margin-bottom: 14px; }
.section-title p { max-width: 560px; margin: 0 auto; color: var(--text-muted); }
.section-title .title-line {
  width: 60px; height: 4px;
  background: var(--primary);
  border-radius: 4px;
  margin: 16px auto 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,227,0.25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,227,0.35);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,227,0.25);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }

/* ---- Header / Navigation ---- */
#site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 227, 0.04);
  transition: box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
  margin-bottom: 0;
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 227, 0.10);
  background: rgba(255, 255, 255, 0.99);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  min-height: var(--header-height);
  max-height: var(--header-height);
  gap: 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 1;
  min-width: 0;
  max-height: var(--header-height);
  line-height: 1;
  text-decoration: none;
}
.site-logo img,
.site-logo .logo-img {
  max-height: 52px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.site-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(0, 0, 227, 0.25);
  flex-shrink: 0;
}
.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  letter-spacing: 0.14em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 1;
  min-width: 0;
}
.brand-wordmark-my {
  color: var(--primary);
}
.brand-wordmark-nest {
  color: var(--black);
  letter-spacing: 0.16em;
}
.brand-wordmark--mobile {
  font-size: clamp(0.85rem, 3.5vw, 1rem);
  letter-spacing: 0.12em;
}
.site-logo .logo-text { line-height: 1.15; }
.site-logo .logo-text strong { display: block; font-size: 1.05rem; color: var(--primary); font-weight: 800; letter-spacing: -0.01em; }
.site-logo .logo-text span { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* Main Navigation */
.desktop-nav { flex: 1; display: flex; justify-content: center; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}
.main-nav > li > a:hover,
.main-nav > li.active > a {
  color: var(--primary);
  background: var(--primary-xlight);
}
.main-nav > li > a .nav-arrow {
  font-size: 0.6rem;
  transition: transform 0.25s var(--ease-out);
  opacity: 0.6;
}
.main-nav > li:hover > a .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s;
  z-index: 100;
}
.main-nav > li:hover .dropdown-menu,
.main-nav > li:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--primary-xlight);
  color: var(--primary);
  padding-left: 18px;
  outline: none;
}
.dropdown-menu a .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
  flex-shrink: 0;
}

/* Header CTA Buttons */
.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Hamburger — hidden on desktop by default */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--primary-xlight); border-color: var(--primary-border); }
.hamburger:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.hamburger-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 18px;
}
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}
.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE NAV — Hidden on desktop, drawer on mobile/tablet only
   ============================================================ */

@media (min-width: 901px) {
  .mobile-nav-overlay,
  .mobile-nav-panel {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (max-width: 900px) {
  /* Mobile Nav Overlay */
  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10050;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out), visibility 0.35s;
  }
  .mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Mobile Nav Panel */
  .mobile-nav-panel {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 100%);
    max-width: 100%;
    height: 100%;
    height: 100dvh;
    background: var(--white);
    z-index: 10060;
    flex-direction: column;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out), visibility 0.35s;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }
  .mobile-nav-panel.open {
    display: flex;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
  }
  .mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
  }
  .mobile-nav-brand .mobile-logo-img {
    max-height: 40px;
    max-width: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }
  .mobile-nav-brand .brand-wordmark {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-nav-brand .logo-icon {
    width: 40px; height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 900;
  }
  .mobile-nav-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--primary-xlight);
    color: var(--primary);
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .mobile-nav-close:hover { background: var(--primary); color: var(--white); }
  .mobile-nav-close:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

  .mobile-nav-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    margin-bottom: 2px;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .mobile-nav-link i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 0.9rem;
    opacity: 0.8;
  }
  .mobile-nav-link:hover,
  .mobile-nav-link.active {
    background: var(--primary-xlight);
    color: var(--primary);
  }
  .mobile-nav-link:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; }

  .mobile-nav-group { margin-bottom: 2px; }
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: var(--font);
  }
  .mobile-nav-toggle span {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .mobile-nav-toggle span i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 0.9rem;
    opacity: 0.8;
  }
  .mobile-nav-toggle .toggle-icon {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.3s var(--ease-out);
  }
  .mobile-nav-group.expanded .mobile-nav-toggle .toggle-icon { transform: rotate(180deg); }
  .mobile-nav-toggle:hover { background: var(--primary-xlight); color: var(--primary); }
  .mobile-nav-toggle:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; }

  .mobile-nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-out);
    padding-left: 8px;
  }
  .mobile-nav-group.expanded .mobile-nav-submenu { max-height: 200px; }
  .mobile-nav-sublink {
    display: block;
    padding: 11px 16px 11px 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    position: relative;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .mobile-nav-sublink::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.4;
  }
  .mobile-nav-sublink:hover,
  .mobile-nav-sublink.active {
    background: var(--primary-xlight);
    color: var(--primary);
  }
  .mobile-nav-sublink:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; }

  .mobile-nav-footer {
    padding: 20px 24px 28px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    background: #fafbff;
  }
  .mobile-nav-footer .btn { justify-content: center; }

  html.nav-open,
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open #site-header {
    z-index: 10070;
  }
}

/* ---- Hero Section (Page Banner) ---- */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.75rem; }
.breadcrumb .current { color: var(--white); font-size: 0.85rem; font-weight: 500; }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
}
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}
.card-meta span { display: flex; align-items: center; gap: 4px; }
.card h3 { margin-bottom: 10px; font-size: 1.1rem; line-height: 1.4; }
.card p { font-size: 0.9rem; margin-bottom: 18px; }

/* ---- Project Card ---- */
.project-card .card-img { height: 200px; }
.project-card .card-body { padding: 20px; }
.project-card .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-ongoing { background: var(--primary-xlight); color: var(--primary); border: 1px solid var(--primary-border); }
.status-upcoming { background: rgba(0,0,0,0.05); color: var(--black); border: 1px solid rgba(0,0,0,0.1); }
.status-finished { background: var(--primary); color: var(--white); }

.project-card .project-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 14px 0;
  font-size: 0.8rem;
}
.project-card .info-item { display: flex; flex-direction: column; gap: 2px; }
.project-card .info-label { color: var(--text-muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; }
.project-card .info-value { font-weight: 600; color: var(--black); }

/* Progress Bar */
.progress-wrapper { margin: 14px 0 18px; }
.progress-label { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.8rem; font-weight: 600; }
.progress-bar {
  height: 8px;
  background: var(--primary-xlight);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}

/* ---- Grid Layouts ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* ---- Country Section ---- */
.country-section { margin-bottom: 60px; }
.country-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary-xlight);
}
.country-flag { font-size: 2rem; }
.country-name h3 { font-size: 1.3rem; color: var(--black); }
.country-name span { font-size: 0.8rem; color: var(--text-muted); }
.country-divider { flex: 1; height: 1px; background: var(--primary-xlight); }

/* ---- Impact Counters ---- */
.counters-section {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.counters-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.counters-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.counter-item { text-align: center; padding: 24px 12px; }
.counter-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  opacity: 0.9;
}
.counter-number {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font);
}
.counter-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

/* ---- News Cards ---- */
.news-card .card-img { height: 200px; }
.news-card .date-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}
.news-card .category-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-xlight);
  border: 1px solid var(--primary-border);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

/* ---- Footer ---- */
#site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo .footer-logo-img {
  max-height: 52px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.footer-logo .logo-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}
.footer-logo .logo-text strong { display: block; font-size: 1rem; color: var(--white); }
.footer-logo .logo-text span { font-size: 0.65rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-desc { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-links a::before { content: '→'; color: rgba(255,255,255,0.4); font-size: 0.7rem; }

.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-info .contact-item { display: flex; align-items: flex-start; gap: 10px; }
.contact-info .contact-item .icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.contact-info .contact-item .text { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input {
  padding: 12px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); }
.newsletter-form button {
  padding: 12px 20px;
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

/* Honeypot anti-bot field (hidden from users) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--white); }

/* ---- Form Styles ---- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0,0,227,0.08);
}
.form-control::placeholder { color: #aaa; }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- Scroll to Top ---- */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
  border: none;
}
#scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ---- Loading Spinner ---- */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.spinner {
  width: 48px; height: 48px;
  border: 4px solid var(--primary-xlight);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Lightbox ---- */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
#lightbox.active { opacity: 1; visibility: visible; }
#lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
#lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
#lightbox-close:hover { background: var(--white); color: var(--black); }
#lightbox-prev, #lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
#lightbox-prev { left: 20px; }
#lightbox-next { right: 20px; }
#lightbox-prev:hover, #lightbox-next:hover { background: var(--white); color: var(--black); }
#lightbox-caption {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  text-align: center;
  padding: 8px 20px;
  background: rgba(0,0,0,0.5);
  border-radius: 100px;
}

/* ---- Pagination ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.page-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.page-btn:hover, .page-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ---- Contact Map Placeholder ---- */
.map-container {
  width: 100%;
  height: 350px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ---- Alert/Success Messages ---- */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: var(--primary-xlight); border: 1px solid var(--primary-border); color: var(--primary); }
.alert-error { background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.1); color: var(--black); }

/* ---- Tags & Badges ---- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.tag-primary { background: var(--primary-xlight); color: var(--primary); border: 1px solid var(--primary-border); }
.tag-dark { background: var(--black); color: var(--white); }

/* ---- Timeline (About Page) ---- */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-xlight) 100%);
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px; top: 4px;
  width: 14px; height: 14px;
  background: var(--primary);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.timeline-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.timeline-desc { font-size: 0.875rem; color: var(--text-muted); }

/* ---- About Page ---- */
.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.about-mv-card {
  padding: 40px;
  border-top: 4px solid var(--primary);
}
.about-mv-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.about-mv-card h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.about-mv-card p {
  color: var(--text-muted);
  line-height: 1.8;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.about-mv-grid > *,
.about-values-grid > * {
  min-width: 0;
}
.about-value-card {
  padding: 30px;
  text-align: center;
}
.about-value-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light, #e6e6ff);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.about-value-card h4 { margin-bottom: 10px; }
.about-value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  color: #fff;
  background: var(--primary);
  border-radius: 16px;
  padding: 50px;
  margin-bottom: 60px;
}
.about-impact-grid > * { min-width: 0; }
.about-impact-number {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
}
.about-impact-label {
  opacity: 0.85;
  margin-top: 5px;
  font-size: 0.95rem;
}

.about-timeline {
  max-width: 700px;
  margin: 0 auto 60px;
  padding-left: 20px;
  border-left: 3px solid var(--primary);
}
.about-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 0 1fr;
  gap: 0;
  margin-bottom: 35px;
  padding-left: 28px;
}
.about-timeline-item:last-child { margin-bottom: 0; }
.about-timeline-marker {
  position: absolute;
  left: -11px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--primary);
  flex-shrink: 0;
}
.about-timeline-year {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}
.about-timeline-content h4 { margin-bottom: 5px; }
.about-timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---- Values Grid ---- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.value-card h4 { margin-bottom: 10px; font-size: 1rem; }
.value-card p { font-size: 0.875rem; }

/* ---- Leadership Cards ---- */
.leader-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.leader-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.leader-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid var(--primary-xlight);
}
.leader-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.leader-role { font-size: 0.8rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---- Job Cards ---- */
.job-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  transition: var(--transition);
}
.job-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateX(4px); }
.job-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.job-meta-item span { color: var(--primary); font-weight: 500; }
.job-desc { font-size: 0.875rem; }

/* ---- Donation Page ---- */
.donation-amounts { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.amount-btn {
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.amount-btn:hover, .amount-btn.selected {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,227,0.2);
}
.payment-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
.payment-method {
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.payment-method:hover, .payment-method.selected { border-color: var(--primary); background: var(--primary-xlight); }
.payment-icon { font-size: 1.5rem; }
.payment-name { font-size: 0.875rem; font-weight: 600; }

/* ---- Gallery Page ---- */
.gallery-grid {
  columns: 4 240px;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,227,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: var(--white); font-size: 0.85rem; font-weight: 500; }
.gallery-zoom {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* ---- Sidebar (News) ---- */
.news-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-xlight);
  color: var(--black);
}
.sidebar-search { display: flex; gap: 0; }
.sidebar-search input {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
}
.sidebar-search input:focus { border-color: var(--primary); }
.sidebar-search button {
  padding: 10px 16px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  font-size: 0.875rem;
  transition: var(--transition);
}
.sidebar-search button:hover { background: var(--primary-dark); }
.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.category-list a:hover { color: var(--primary); padding-left: 4px; }
.category-list .count {
  background: var(--primary-xlight);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.recent-post { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.recent-post img { width: 64px; height: 56px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.recent-post-info .rp-date { font-size: 0.72rem; color: var(--primary); font-weight: 600; }
.recent-post-info .rp-title { font-size: 0.82rem; font-weight: 600; color: var(--black); line-height: 1.4; }

/* ---- CTA Section ---- */
.cta-section {
  background: var(--primary);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto 32px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---- Upload Box ---- */
.upload-box {
  border: 2px dashed var(--primary-border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--primary-xlight);
}
.upload-box:hover { border-color: var(--primary); background: rgba(0,0,227,0.06); }
.upload-icon { font-size: 2.5rem; margin-bottom: 12px; color: var(--primary); opacity: 0.6; }
.upload-box p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0; }
.upload-box input[type="file"] { display: none; }

/* ---- Animations ---- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .counters-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-impact-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 36px 24px;
    gap: 24px;
  }
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .site-logo { gap: 12px; }
  .site-logo .logo-img { max-height: 48px; max-width: 110px; }
  .brand-wordmark { font-size: clamp(0.88rem, 2.4vw, 1.05rem); letter-spacing: 0.12em; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-mv-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-impact-grid {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }
  .about-mv-card { padding: 28px 24px; }
  .about-value-card { padding: 28px 24px; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .job-card { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .site-logo { gap: 10px; }
  .site-logo .logo-img { max-height: 42px; max-width: 84px; }
  .site-logo .logo-icon { width: 38px; height: 38px; font-size: 0.85rem; }
  .brand-wordmark { font-size: 0.82rem; letter-spacing: 0.1em; }
}

/* ============================================================
   HOMEPAGE IMPROVEMENTS — Additional Styles
   ============================================================ */

/* ---- bg-light section background ---- */
.bg-light { background: #f7f8fc; }

/* ---- About Section — Single Column (remove illustration card) ---- */
.about-snippet-grid {
  display: block;
  max-width: 760px;
}
.about-snippet-grid .about-content { width: 100%; }

/* ---- Check-list ---- */
.check-list { padding: 0; margin: 0 0 24px; list-style: none; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--primary); font-size: 0.85rem; flex-shrink: 0; }

/* ---- Section Header ---- */
.section-header { margin-bottom: 48px; }
.section-header .subtitle {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-xlight);
  border: 1px solid var(--primary-border);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--text-muted); }

/* ---- Impact Section (Homepage Counters) ---- */
.impact-section {
  background: var(--primary);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.impact-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.impact-card + .impact-card {
  border-left: 1px solid rgba(255,255,255,0.15);
}
.impact-card .icon {
  font-size: 2.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.impact-card .counter {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font);
}
.impact-card .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

/* ---- Projects Grid (3-column) ---- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

/* ---- News Grid (2-column) ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

/* ---- Project Card (Homepage) ---- */
.project-card .card-image {
  height: 210px;
  position: relative;
  overflow: hidden;
  background: #f0f2f5;
}
.project-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.project-card:hover .card-image img { transform: scale(1.04); }
.project-card .status-badge {
  position: absolute;
  top: 12px; right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.project-card .project-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.project-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.4;
}
.project-card .project-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.project-card .progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-muted);
}

/* ---- News Card (Homepage) ---- */
.news-card .news-image {
  height: 200px;
  overflow: hidden;
  background: #f0f2f5;
}
.news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-image img { transform: scale(1.04); }
.news-card .news-image .news-placeholder {
  height: 100%;
  background: linear-gradient(135deg, #0000aa, #0000E3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card .card-body {
  padding: 20px 24px 24px;
}
.news-card .category-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-xlight);
  border: 1px solid var(--primary-border);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 6px;
}
.news-card .date-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
  margin-left: 8px;
}
.news-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.4;
}
.news-card .news-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- Responsive — Impact Grid ---- */
@media (max-width: 900px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-card + .impact-card { border-left: none; }
  .impact-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .impact-card:nth-child(1),
  .impact-card:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-card + .impact-card { border-left: none; }
  .impact-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .impact-card:nth-child(1),
  .impact-card:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .projects-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
}


/* ================================================================
   HOMEPAGE — FRESH SELF-CONTAINED STYLES (no class conflicts)
   ================================================================ */

/* ------------------------------------------------------------------
   STATISTICS SECTION
   ------------------------------------------------------------------ */
.stats-section {
  background: var(--primary);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.stats-section::after {
  content: '';
  position: absolute;
  top: -60%;
  right: -8%;
  width: 480px;
  height: 480px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 52px 24px;
  position: relative;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-icon {
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  line-height: 1;
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
  font-family: var(--font);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

/* Tablet: 2 × 2 */
@media (max-width: 900px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item + .stat-item {
    border-left: none;
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

/* Mobile: 2 × 2 (same) */
@media (max-width: 480px) {
  .stat-item {
    padding: 36px 16px;
  }
  .stat-number {
    font-size: 2rem;
  }
}

/* ------------------------------------------------------------------
   ABOUT SECTION WRAP
   ------------------------------------------------------------------ */
.about-snippet-wrap {
  max-width: 680px;
}
.about-snippet-wrap .subtitle {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-xlight);
  border: 1px solid var(--primary-border);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 16px;
}
.about-snippet-wrap h2 {
  margin-bottom: 16px;
  color: var(--black);
}
.about-snippet-wrap p {
  margin-bottom: 20px;
}
.about-snippet-wrap .check-list {
  margin-bottom: 28px;
}

/* ------------------------------------------------------------------
   FEATURED PROJECTS GRID
   ------------------------------------------------------------------ */
.hp-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 0;
  align-items: stretch;
}

/* Card */
.hp-project-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: var(--white);
}
.hp-project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
}

/* Image wrapper */
.hp-card-img-wrap {
  display: block;
  height: 210px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0000aa, var(--primary));
  flex-shrink: 0;
}
.hp-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.hp-project-card:hover .hp-card-img-wrap img {
  transform: scale(1.05);
}
.hp-card-img-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 3.5rem;
}

/* Status badge */
.hp-status-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}
.hp-status-ongoing  { background: var(--primary-xlight); color: var(--primary); border: 1px solid var(--primary-border); }
.hp-status-upcoming { background: rgba(0,0,0,0.08); color: var(--black); border: 1px solid rgba(0,0,0,0.12); }
.hp-status-finished { background: var(--primary); color: #fff; }

/* Card body */
.hp-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hp-card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.hp-card-location i { color: var(--primary); font-size: 0.72rem; }

.hp-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 8px;
}

.hp-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Progress bar */
.hp-progress-wrap {
  margin-bottom: 16px;
}
.hp-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.hp-progress-track {
  height: 7px;
  background: var(--primary-xlight);
  border-radius: 100px;
  overflow: hidden;
}
.hp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 100px;
  transition: width 1.2s ease;
}

.hp-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Responsive: 2 col tablet */
@media (max-width: 960px) {
  .hp-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: 1 col mobile */
@media (max-width: 600px) {
  .hp-projects-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------
   NEWS & ARTICLES GRID
   ------------------------------------------------------------------ */
.hp-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 0;
  align-items: stretch;
}

/* Single article: center it at 60% width */
.hp-news-grid.hp-news-single {
  grid-template-columns: minmax(0, 580px);
  justify-content: center;
}

/* Card */
.hp-news-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: var(--white);
}
.hp-news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
}

/* Image */
.hp-news-img-wrap {
  display: block;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0000aa, var(--primary));
  position: relative;
}
.hp-news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.hp-news-card:hover .hp-news-img-wrap img {
  transform: scale(1.05);
}
.hp-news-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.25);
}

/* Card body */
.hp-news-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hp-news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.hp-news-cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--primary-xlight);
  border: 1px solid var(--primary-border);
  border-radius: 100px;
  padding: 3px 10px;
}

.hp-news-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hp-news-date i { color: var(--primary); }

.hp-news-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 8px;
}

.hp-news-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 700px) {
  .hp-news-grid,
  .hp-news-grid.hp-news-single {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------
   EMPTY STATE
   ------------------------------------------------------------------ */
.hp-empty-state {
  text-align: center;
  padding: 56px 24px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  margin-bottom: 0;
}
.hp-empty-state i {
  font-size: 3rem;
  color: var(--border);
  margin-bottom: 16px;
  display: block;
}
.hp-empty-state p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ------------------------------------------------------------------
   COUNTER ANIMATION (stats-section)
   ------------------------------------------------------------------ */
.stat-number[data-target] {
  /* Ensure it stays visible while animating */
  opacity: 1 !important;
  transform: none !important;
}

/* ================================================================
   PREMIUM UI POLISH — Page Headers, Alerts, Forms, Accessibility
   ================================================================ */

/* Unified Page Header (replaces inline styles) */
.page-header {
  padding: 48px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, #f7f8fc 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
}
.page-header .subtitle {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-xlight);
  border: 1px solid var(--primary-border);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 12px;
}
.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  color: var(--black);
  letter-spacing: -0.02em;
}
.page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Alert Messages */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
}
.alert-success {
  background: #ecfdf5;
  color: #047857;
  border-color: #a7f3d0;
}
.alert-danger {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
}
.alert-info {
  background: var(--primary-xlight);
  color: var(--primary-dark);
  border-color: var(--primary-border);
}

/* Form Groups */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}
.form-group label .required { color: #dc2626; margin-left: 2px; }

/* Form Card */
.form-card {
  padding: 36px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  background: var(--white);
}
.form-card h3 {
  margin-bottom: 24px;
  font-size: 1.25rem;
  color: var(--black);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 28px;
  font-size: 1.35rem;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item i {
  font-size: 1.2rem;
  width: 24px;
  flex-shrink: 0;
  opacity: 0.9;
  margin-top: 2px;
}
.contact-info-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.82rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Focus visible for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Button loading state */
.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* Skeleton loading placeholder */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Responsive page layouts */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 24px; }
  .page-header { padding: 36px 0 32px; }
}

@media (max-width: 640px) {
  .page-header h1 { font-size: 1.75rem; }
  .form-card { padding: 24px 20px; }
}

