/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --red: #C41E3A;
  --red-dark: #9E1830;
  --gold: #D4A017;
  --gold-light: #E8C44A;
  --gold-glow: rgba(212, 160, 23, 0.3);
  --navy: #1B2A4A;
  --navy-deep: #0F1B33;
  --slate: #6B7280;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --cream: #FAF9F6;
  --black: #111827;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }

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

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes shimmer {
  0% { background-position: center top; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes chevronBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-deep);
  transition: background 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: var(--cream);
  padding: 0.75rem 3rem;
  box-shadow: 0 1px 20px rgba(0,0,0,0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 44px;
  transition: all 0.4s var(--ease-smooth);
}

/* Dark navbar: show white-text logo, hide color logo */
.logo-dark  { display: block; }
.logo-light { display: none; }

/* Scrolled (cream) navbar: hide white-text, show color logo */
.navbar.scrolled .logo-dark  { display: none; }
.navbar.scrolled .logo-light { display: block; height: 38px; }



.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
  transition: color 0.4s;
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--navy);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-donate-nav {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.625rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 2px 12px var(--gold-glow);
}

.btn-donate-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-donate-nav::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.navbar.scrolled .nav-hamburger span {
  background: var(--navy);
}

/* Mobile menu - slide from right */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.3s, opacity 0.3s;
}
.mobile-menu.active {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.3s;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 82vw;
  background: var(--navy-deep);
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.active .mobile-menu-panel {
  transform: translateX(0);
}
.mobile-menu-panel a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-panel .mobile-join-btn {
  background: var(--red);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0.5rem;
  border-bottom: none;
}
.mobile-menu-panel .mobile-donate-btn {
  background: var(--gold);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0.25rem;
  border-bottom: none;
}
.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-lang-btn {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.mobile-lang-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* Hamburger X animation */
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
    background-image: url('https://wca-ngo.org/wp-content/uploads/2026/03/hero-bg.webp');
  background-size: cover;
  background-position: 25% 2%;
  background-repeat: no-repeat;
  filter: brightness(0.65) saturate(1.1);
  transform: scale(1.05);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 27, 51, 0.3) 0%,
    rgba(15, 27, 51, 0.1) 40%,
    rgba(15, 27, 51, 0.6) 80%,
    rgba(15, 27, 51, 0.9) 100%
  );
}



.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1.2s var(--ease-out) 0.3s both;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: 100px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-smooth);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--gold-glow);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: chevronBounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   IMPACT NUMBERS
   ============================================ */
.impact {
  background: var(--navy);
  padding: 0.9rem 2rem;
  position: relative;
  overflow: hidden;
}

.impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
}

.impact-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.impact-item {
  text-align: center;
  min-width: 140px;
}

.impact-number {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   ACTION ALERT
   ============================================ */
.action-alert {
  background: var(--red);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  max-height: 80px;
  transition: max-height 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth), opacity 0.3s;
}

.action-alert.dismissed {
  max-height: 0;
  padding: 0 2rem;
  opacity: 0;
  pointer-events: none;
}

.action-alert::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.alert-icon {
  font-size: 1.25rem;
  animation: pulse 2s ease-in-out infinite;
}

.alert-text {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.alert-text strong {
  font-weight: 700;
}

.btn-alert {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.btn-alert:hover {
  background: var(--white);
  color: var(--red);
}

.alert-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.25rem;
  padding: 0.25rem;
  z-index: 2;
  cursor: pointer;
  transition: color 0.3s;
}

.alert-close:hover {
  color: var(--white);
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C41E3A;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   VISION & MISSION
   ============================================ */
.vision {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.vision-watermark {
  position: absolute;
  right: 2%;
  top: 85%;
  transform: translateY(-50%);
  font-size: 10rem;
  color: rgba(212, 160, 23, 0.04);
  direction: rtl;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.vision-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.vision-gallery {
  position: relative;
  width: 100%;
  height: 100%;
}

.vision-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s var(--ease-smooth);
}

.vision-slide.active {
  opacity: 1;
}

.vision-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  line-height: 1;
  padding: 0;
}

.vision-image:hover .vision-nav {
  opacity: 1;
}

.vision-nav:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.vision-nav-prev {
  left: 0.75rem;
}

.vision-nav-next {
  right: 0.75rem;
}

.vision-gallery-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.vision-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.vision-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

.vision-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.vision-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: 12px;
  transform: translate(12px, 12px);
  z-index: -1;
  opacity: 0.3;
}

.vision-quote {
  font-family: var(--font-body);
  font-size: 1.20rem;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.6;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}

.vision-context {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.8;
  margin: 1.5rem 0;
}

.text-link {
  color: var(--red);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s var(--ease-out);
}

.text-link:hover {
  gap: 0.75rem;
}

.news .text-link {
  color: var(--gold);
}

.news .text-link:hover {
  color: var(--gold-light);
}
   ============================================ */
.focus {
  background: var(--white);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.focus-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.focus-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 2.25rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  border: 1px solid transparent;
}

.focus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--gray-200);
}

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

.focus-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--gold);
}

.focus-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.focus-card p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Pillar Cards — Photo style */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.pillar-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.pillar-img {
  height: 200px;
  overflow: hidden;
}

.pillar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.pillar-card:hover .pillar-img img {
  transform: scale(1.05);
}

.pillar-body {
  padding: 1.5rem;
}

.pillar-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.pillar-body p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}

/* Bottom row: 2 cards centered */
.pillars-grid .pillar-card:nth-child(4),
.pillars-grid .pillar-card:nth-child(5) {
  /* handled by grid auto-flow */
}

@media (min-width: 769px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Center the bottom 2 cards */
  .pillars-grid .pillar-card:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: auto;
    width: 100%;
    max-width: calc(100% - 0.875rem);
    justify-self: end;
  }
  .pillars-grid .pillar-card:nth-child(5) {
    grid-column: 2 / 3;
    margin-right: auto;
    width: 100%;
    max-width: calc(100% - 0.875rem);
    justify-self: start;
  }
}

/* ============================================
   ACHIEVEMENTS
   ============================================ */
.achievements {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.achievements::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.06), transparent 70%);
}

.achievements .section-label { color: #C41E3A; }
.achievements .section-title { color: var(--white); }
.achievements .section-subtitle { color: rgba(255,255,255,0.6); }

.achieve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.achieve-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s var(--ease-smooth);
}

.achieve-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.achieve-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.achieve-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ============================================
   NEWS
   ============================================ */
.news {
  background: var(--navy-deep);
}

.news .section-label {
  color: var(--gold) !important;
}

.news .section-title {
  color: var(--white) !important;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.news-img {
  height: 280px;
  overflow: hidden;
  background: var(--gray-100);
  display: block;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.6s var(--ease-out);
}

.news-card:hover .news-img img {
  transform: scale(1.06);
}

.news-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.news-excerpt {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
  flex: 1;
}

.news-read-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red) !important;
  transition: color 0.2s;
}

.news-read-more:hover {
  color: var(--navy) !important;
}

.btn-more-articles {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 6px;
  transition: all 0.3s;
}

.btn-more-articles:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ============================================
   VIP SUPPORTERS
   ============================================ */
.supporters {
  background: var(--white);
  border-top: none;
  border-bottom: none;
}

.supporters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.supporter-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
}

.supporter-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.75;
  margin-bottom: 0.5rem;
  letter-spacing: -0.05em;
}

.supporter-quote {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.supporter-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black);
}

.supporter-title {
  font-size: 0.8rem;
  color: var(--slate);
}

/* ============================================
   DONATE SECTION
   ============================================ */
.donate {
  position: relative;
  padding: 7rem 2rem;
  overflow: hidden;
}







.donate h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.donate h2 em {
  font-style: italic;
  color: var(--gold);
}



.donate-amounts {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.donate-amount {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  font-family: var(--font-display);
}

.donate-amount:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.1);
}

.donate-amount.active {
  background: var(--white);
  border-color: var(--white);
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.25);
}

.donate-impact {
  font-size: 0.95rem;
  color: rgba(255,220,180,0.9);
  margin-bottom: 2rem;
  min-height: 1.5rem;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: opacity 0.3s;
}

.donate-frequency {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  display: inline-flex;
}

.freq-btn {
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: transparent;
  transition: all 0.3s;
  letter-spacing: 0.04em;
}

.freq-btn.active {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}

.btn-donate-main {
  background: var(--white);
  color: var(--red);
  padding: 1.25rem 4rem;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 6px 25px rgba(255,255,255,0.3);
  display: inline-block;
}

.btn-donate-main:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px var(--gold-glow);
}

.donate-trust {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.donate-trust span {
  margin: 0 0.75rem;
}

/* ============================================
   5 REASONS
   ============================================ */
.reasons {
  background: linear-gradient(180deg, #1B2A4A 0%, #0F1B33 100%);
  padding: 4rem 2rem;
  border-top: none;
  border-bottom: none;
}

.reasons .section-label { color: var(--gold); }
.reasons .section-title { color: var(--white); }
.reasons .section-subtitle { color: rgba(255, 255, 255, 0.65); }

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 2rem auto 0;
  justify-items: center;
}

.reasons-grid .reason-item:nth-child(4) {
  grid-column: 1 / 2;
  justify-self: end;
  padding-right: 1rem;
}

.reasons-grid .reason-item:nth-child(5) {
  grid-column: 2 / 3;
  justify-self: start;
  padding-left: 1rem;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.reason-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.reason-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 2px;
  font-family: 'Outfit', sans-serif;
}

.reason-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-weight: 400;
}

.reason-text strong {
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
  color: var(--white);
}

/* ============================================
   NEWSLETTER
   ============================================ */
/* newsletter replaced by join-cta */

.newsletter h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.newsletter p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 280px;
  padding: 0.875rem 1.25rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--gold); }

.newsletter-form button {
  background: var(--gold);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.newsletter-form button:hover {
  background: var(--gold-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0a0e1a;
  padding: 4.5rem 2rem 2rem;
  color: rgba(255,255,255,0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand img {
  height: 56px;
  margin-bottom: 1.5rem;
  filter: brightness(1.6) contrast(0.85) drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: filter 0.3s;
}

.footer-brand img:hover {
  filter: brightness(1.8) contrast(0.9) drop-shadow(0 2px 12px rgba(212,160,23,0.3));
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .achieve-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  #donate [style*='grid-template-columns:1fr 1fr;gap:3rem'] { grid-template-columns: 1fr !important; }
  [style*='grid-template-columns:1fr 1fr;gap:4rem'] { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: 0.75rem 1.5rem; }
  
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  
  .btn-donate-nav {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
  }
  
  .section { padding: 4rem 1.25rem; }
  
  .hero-content { padding: 0 1.25rem; }
  
  .impact-grid { gap: 1.5rem; }
  .impact-item { min-width: 100px; }
  
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .vision-image { max-width: 400px; margin: 0 auto; }
  
  .focus-grid, .focus-grid-5 { grid-template-columns: 1fr 1fr; }
  .focus-grid > :last-child, .focus-grid-5 > :last-child { grid-column: 1 / -1; max-width: 60%; margin: 0 auto; }
  
  /* 5 pillars: 2-2-1 on mobile */
  .pillars-grid { grid-template-columns: 1fr !important; }
  .pillars-grid .pillar-card:nth-child(4),
  .pillars-grid .pillar-card:nth-child(5) { max-width: 100% !important; margin: 0 !important; }
  .achieve-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .supporters-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  
  .donate { padding: 5rem 1.25rem; }
  
  .reasons-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .reason-item { max-width: 100%; }
  
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .donate-amounts { gap: 0.5rem; }
  .donate-amount { padding: 0.75rem 1.25rem; font-size: 1rem; }
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  margin-right: 0.5rem;
}

.lang-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.4s;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.navbar.scrolled .lang-btn {
  color: var(--navy);
  background: rgba(27,42,74,0.08);
  border-color: rgba(27,42,74,0.3);
}

.lang-btn:hover {
  background: rgba(255,255,255,0.2);
}

.navbar.scrolled .lang-btn:hover {
  background: rgba(27,42,74,0.15);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  min-width: 160px;
  z-index: 1001;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.lang-dropdown.open {
  display: block;
  animation: slideDown 0.2s var(--ease-out);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.2s;
}

.lang-option:hover {
  background: var(--cream);
}

.lang-option.active {
  background: var(--cream);
  font-weight: 600;
  color: var(--red);
}

.lang-flag {
  font-size: 1.1rem;
}

/* Membership Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.open {
  display: flex;
  animation: fadeIn 0.3s var(--ease-out);
}

.modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.modal-header {
  background: var(--navy);
  padding: 2rem 2rem 1.5rem;
  border-radius: 16px 16px 0 0;
  text-align: center;
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.modal-header p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.modal-close:hover {
  background: rgba(255,255,255,0.2);
}

.modal-body {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-group label span {
  color: var(--red);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  transition: border-color 0.3s;
  outline: none;
  background: var(--white);
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  outline: none;
}

.form-select:focus {
  border-color: var(--gold);
}

.form-freq {
  display: flex;
  gap: 0.5rem;
}

.form-freq-btn {
  flex: 1;
  padding: 0.6rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.form-freq-btn.active,
.form-freq-btn:hover {
  border-color: var(--gold);
  background: rgba(212,160,23,0.08);
  color: var(--navy);
  font-weight: 600;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.form-note {
  font-size: 0.75rem;
  color: var(--slate);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .modal-body { padding: 1.5rem; }
  .lang-switcher { display: none; }
}


/* Join CTA Section */
.join-cta {
  background: var(--navy);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.join-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.08), transparent 70%);
  pointer-events: none;
}

.join-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.join-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.join-cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.join-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-join-main {
  background: var(--gold);
  color: var(--white);
  padding: 1.1rem 2.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 20px var(--gold-glow);
  display: inline-block;
  width: fit-content;
  border: none;
  cursor: pointer;
}

.btn-join-main:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.join-cta-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.join-cta-meta span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.join-cta-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.join-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}

.join-stat:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold);
}

.join-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 60px;
}

.join-stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

@media (max-width: 768px) {
  [style*='grid-template-columns:auto 1fr'] { grid-template-columns: 1fr !important; text-align: center; }
  /* responsive cleanup */
  .join-cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .join-cta-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .join-stat {
    flex: 1;
    min-width: 140px;
  }
}


.btn-join-nav {
  background: transparent !important;
  color: var(--white) !important;
  padding: 0.575rem 1.5rem !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border: 2px solid var(--gold) !important;
  transition: all 0.4s var(--ease-smooth) !important;
}

.btn-join-nav:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: var(--white) !important;
  transform: translateY(-1px) !important;
}

.btn-join-nav::after { display: none !important; }

.navbar.scrolled .btn-join-nav,
.navbar.scrolled .btn-join-nav:visited {
  color: var(--navy) !important;
  border-color: var(--gold) !important;
  background: transparent !important;
}

.navbar.scrolled .btn-join-nav:hover,
.navbar.scrolled .btn-join-nav:focus {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

/* Override any inline styles on hover */
.btn-join-nav:hover {
  color: #ffffff !important;
}


/* ============================================
   CONTACT MODAL
   ============================================ */
.contact-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 51, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.contact-modal-content {
  background: var(--white);
  border-radius: 16px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.3s var(--ease-out);
}

.contact-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--slate);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 2;
}

.contact-modal-close:hover {
  color: var(--red);
}

.contact-modal-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 2.5rem 2.5rem 2rem;
  border-radius: 16px 16px 0 0;
}

.contact-modal-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-modal-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.contact-modal-header .contact-modal-close {
  color: rgba(255, 255, 255, 0.5);
}

.contact-modal-header .contact-modal-close:hover {
  color: var(--white);
}

.contact-modal-body {
  padding: 2rem 2.5rem 2.5rem;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 0.15rem;
}

.contact-info-value {
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
}

a.contact-info-value:hover {
  color: var(--red);
}

.contact-divider {
  height: 1px;
  background: var(--gray-200);
  margin-bottom: 1.75rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-field {
  margin-bottom: 1rem;
}

.contact-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
  box-sizing: border-box;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.08);
}

.contact-field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-submit-btn {
  width: 100%;
  padding: 0.85rem;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  letter-spacing: 0.03em;
  margin-top: 0.5rem;
}

.contact-submit-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .contact-modal-content {
    margin: 0;
    border-radius: 12px;
  }
  .contact-modal-header {
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 12px 12px 0 0;
  }
  .contact-modal-body {
    padding: 1.5rem;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PRIVACY POLICY MODAL
   ============================================ */
.privacy-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 51, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.privacy-modal-content {
  background: var(--white);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.3s var(--ease-out);
}

.privacy-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--slate);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.privacy-modal-close:hover {
  color: var(--red);
}

.privacy-modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.privacy-modal-body p {
  font-size: 0.9rem;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-modal-body p strong {
  color: var(--navy);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth), visibility 0.3s, background 0.2s;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

.scroll-to-top:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================
   NEWS CARD HOVER LIFT
   ============================================ */
.news-card {
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* ============================================
   SUPPORTER CARD HOVER
   ============================================ */
.supporter-card {
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.supporter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.10);
}

/* ============================================
   FOCUS CARD HOVER GLOW
   ============================================ */
.focus-card {
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(27,42,74,0.13);
  border-color: var(--gold) !important;
}

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.count-up {
  display: inline-block;
}

/* ============================================
   SUBTLE SECTION GOLD ACCENT LINE
   ============================================ */
.section-inner > .reveal:first-child {
  position: relative;
  padding-left: 1.25rem;
}
.section-inner > .reveal:first-child::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  height: 100%;
  max-height: 2.5rem;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}


/* ============================================
   MESSO QUOTE & BANK DETAILS (from inline styles)
   ============================================ */
/* ============================================
   MESSO QUOTE — Editorial Leadership Section
   ============================================ */
.messo-quote-section {
  background: var(--navy-deep);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.messo-quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  z-index: 2;
}

.messo-quote-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212,160,23,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.messo-quote-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  align-items: stretch;
  min-height: 480px;
}

.messo-quote-image-col {
  position: relative;
  overflow: hidden;
}

.messo-image-frame {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.messo-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.messo-image-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--navy-deep), transparent);
  pointer-events: none;
}

.messo-quote-content {
  padding: 4.5rem 4rem 4.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.messo-quote-accent {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 2rem;
  border-radius: 2px;
}

.messo-quote-text {
  font-family: var(--font-body);
font-size: clamp(0.92rem, 1.6vw, 1.2rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  margin: 0 0 2.5rem 0;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  padding: 0;
  position: relative;
}

.messo-quote-text::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.35;
  position: absolute;
  top: -2.2rem;
  left: -0.3rem;
  line-height: 1;
}

.messo-attribution {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.messo-attr-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.messo-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.15rem;
}

.messo-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

@media (max-width: 768px) {
  .messo-quote-inner {
    grid-template-columns: 1fr;
  }
  .messo-image-frame {
    min-height: 280px;
    max-height: 320px;
  }
  .messo-quote-content {
    padding: 2.5rem 1.5rem 3rem;
    text-align: left;
  }
  .messo-quote-text {
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }
  .messo-quote-text::before {
    font-size: 3.5rem;
    top: -1.5rem;
    left: -0.15rem;
  }
  .messo-quote-accent {
    margin-bottom: 1.5rem;
  }
  .messo-name { font-size: 0.9rem; }
  .messo-role { font-size: 0.7rem; }
}

.bank-details-section{background:var(--off-white);padding:3.5rem 2rem}.bank-details-inner{max-width:900px;margin:0 auto}.bank-details-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-top:2rem}.bank-card{background:var(--white);border-radius:14px;padding:2rem;border:1px solid var(--gray-200);position:relative;overflow:hidden;transition:transform 0.35s var(--ease-out),box-shadow 0.35s var(--ease-out),border-color 0.35s}.bank-card:hover{transform:translateY(-4px);box-shadow:0 12px 35px rgba(0,0,0,0.08);border-color:var(--gold)}.bank-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px}.bank-card.intl::before{background:var(--red)}.bank-card.swe::before{background:var(--gold)}.bank-card-header{display:flex;align-items:center;gap:0.6rem;margin-bottom:1.25rem}.bank-card-flag{font-size:1.4rem;line-height:1}.bank-card-title{font-family:var(--font-display);font-size:1.15rem;font-weight:700;color:var(--navy);margin:0}.bank-row{display:flex;justify-content:space-between;align-items:baseline;padding:0.45rem 0;border-bottom:1px solid var(--gray-100)}.bank-row:last-of-type{border-bottom:none}.bank-label{font-size:0.75rem;font-weight:600;color:var(--slate);text-transform:uppercase;letter-spacing:0.06em;min-width:65px}.bank-value{font-size:0.9rem;font-weight:600;color:var(--navy);text-align:right}.bank-action-row{margin-top:1rem;padding-top:0.75rem;border-top:1px solid var(--gray-100)}.bank-action-btn{display:inline-flex;align-items:center;gap:0.4rem;padding:0.5rem 1rem;border-radius:6px;font-size:0.8rem;font-weight:600;cursor:pointer;transition:all 0.25s;text-decoration:none;border:none;color:#fff}.btn-paypal{background:#0070ba}.btn-paypal:hover{background:#005ea6;transform:translateY(-1px);box-shadow:0 4px 12px rgba(0,112,186,0.3)}.btn-swish{background:#59ab46}.btn-swish:hover{background:#4a9639;transform:translateY(-1px);box-shadow:0 4px 12px rgba(89,171,70,0.3)}@media(max-width:768px){.bank-details-grid{grid-template-columns:1fr}}

/* ============================================
   LIGHTBOX — Fullscreen Image Viewer
   ============================================ */
.wca-lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-smooth), visibility 0s 0.35s;
}

.wca-lightbox.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s var(--ease-smooth), visibility 0s;
}

.wca-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.wca-lightbox-img-wrap {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wca-lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-out);
}

.wca-lightbox.active .wca-lightbox-img-wrap img {
  transform: scale(1);
}

.wca-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wca-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: scale(1.1);
}

.wca-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wca-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.wca-lightbox-prev {
  left: 1.5rem;
}

.wca-lightbox-next {
  right: 1.5rem;
}

.wca-lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Hide nav arrows when only 1 image */
.wca-lightbox[data-count="1"] .wca-lightbox-nav,
.wca-lightbox[data-count="1"] .wca-lightbox-counter {
  display: none;
}

@media (max-width: 768px) {
  .wca-lightbox-nav {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
  .wca-lightbox-prev { left: 0.75rem; }
  .wca-lightbox-next { right: 0.75rem; }
  .wca-lightbox-close { top: 1rem; right: 1rem; width: 38px; height: 38px; }
}

/* Make all images on the page clickable for lightbox */
.pillar-img img,
.vision-slide,
.messo-portrait {
  cursor: zoom-in;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.wca-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15000;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}

.wca-cookie-banner.visible {
  transform: translateY(0);
}

.wca-cookie-inner {
  max-width: 680px;
  margin: 0 auto 1.25rem;
  background: var(--navy-deep);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255,255,255,0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.wca-cookie-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.wca-cookie-text {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.wca-cookie-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.wca-cookie-text a:hover {
  color: var(--gold-light);
}

.wca-cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.wca-cookie-accept {
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.wca-cookie-accept:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--gold-glow);
}

@media (max-width: 600px) {
  .wca-cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin: 0 0.75rem 0.75rem;
    padding: 1.25rem 1.5rem;
  }
  .wca-cookie-icon { display: none; }
}

/* ============================================
   TERMS OF USE MODAL
   ============================================ */
.terms-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 51, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.terms-modal-content {
  background: var(--white);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.3s var(--ease-out);
}

.terms-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--slate);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.terms-modal-close:hover {
  color: var(--red);
}

.terms-modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

.terms-modal-body p {
  font-size: 0.9rem;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.terms-modal-body p strong {
  color: var(--navy);
}

/* Disable right-click save / drag on homepage images */
.pillar-img img,
.vision-slide,
.messo-portrait {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.mobile-break { display: none; }

@media (max-width: 768px) {
  .mobile-break { display: block; }
}

/* ============================================
   SITE SEARCH — REPLACE everything from
   "SITE SEARCH — Navbar Icon & Fullscreen Overlay"
   to the end of the search CSS in your style.css
   ============================================ */

/* Search icon button in navbar */
.nav-search-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  padding: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, transform 0.2s;
  position: relative;
}
.nav-search-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-search-btn:hover {
  color: var(--gold);
  transform: scale(1.1);
}
.navbar.scrolled .nav-search-btn {
  color: var(--navy);
}
.navbar.scrolled .nav-search-btn:hover {
  color: var(--red);
}
.nav-search-btn::after { display: none !important; }
.mobile-search-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  display: none;
  align-items: center;
  justify-content: center;
}
.mobile-search-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.navbar.scrolled .mobile-search-btn {
  color: var(--navy);
}

/* Fullscreen search overlay */
.wca-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-smooth), visibility 0s 0.35s;
  overflow-y: auto;
}
.wca-search-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s var(--ease-smooth), visibility 0s;
}
.wca-search-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--slate);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.wca-search-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: scale(1.05);
}
.wca-search-container {
  width: 100%;
  max-width: 680px;
  padding: 0 2rem;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wca-search-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s 0.15s, transform 0.4s 0.15s;
}
.wca-search-overlay.active .wca-search-label {
  opacity: 1;
  transform: translateY(0);
}
.wca-search-input-wrap {
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.2s var(--ease-out), transform 0.5s 0.2s var(--ease-out);
}
.wca-search-overlay.active .wca-search-input-wrap {
  opacity: 1;
  transform: translateY(0);
}
.wca-search-input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.wca-search-input::placeholder {
  color: var(--gray-300);
  font-weight: 400;
}
.wca-search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(212,160,23,0.12);
}
.wca-search-icon {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-300);
  pointer-events: none;
  transition: color 0.3s;
}
.wca-search-input:focus ~ .wca-search-icon {
  color: var(--gold);
}
.wca-search-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Advanced search filters */
.wca-search-filters {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s 0.3s;
}
.wca-search-overlay.active .wca-search-filters {
  opacity: 1;
}
.wca-search-filter-btn {
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--slate);
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.wca-search-filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.wca-search-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.wca-search-exact-wrap {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.2s;
}
.wca-search-exact-wrap:hover {
  border-color: var(--navy);
}
.wca-search-exact-wrap input {
  accent-color: var(--navy);
  margin: 0;
  cursor: pointer;
}

/* Hint */
.wca-search-hint {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  color: var(--gray-300);
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.4s 0.35s;
}
.wca-search-overlay.active .wca-search-hint {
  opacity: 1;
}
.wca-search-hint kbd {
  display: inline-block;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--slate);
  margin: 0 0.15rem;
}

/* Loading */
.wca-search-loading {
  display: none;
  margin-top: 2rem;
  text-align: center;
}
.wca-search-loading.active {
  display: block;
}
.wca-search-spinner {
  width: 28px;
  height: 28px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: searchSpin 0.7s linear infinite;
  margin: 0 auto;
}
@keyframes searchSpin {
  to { transform: rotate(360deg); }
}

/* Results container */
.wca-search-results {
  width: 100%;
  max-width: 680px;
  padding: 0 2rem 3rem;
  margin-top: 1.25rem;
}

/* Result count */
.wca-search-meta {
  font-size: 0.8rem;
  color: var(--slate);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}
.wca-search-meta strong {
  color: var(--navy);
  font-weight: 700;
}

/* Category headers */
.wca-search-category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 1.75rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wca-search-category:first-child {
  margin-top: 0;
}
.wca-search-cat-count {
  font-size: 0.6rem;
  background: var(--red);
  color: var(--white);
  padding: 0.1rem 0.5rem;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0;
}

/* Result card */
.wca-search-item {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.35rem;
  background: var(--white);
}
.wca-search-item:hover {
  border-color: var(--gray-200);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transform: translateY(-1px);
}
.wca-search-item-thumb {
  width: 80px;
  height: 58px;
  min-width: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wca-search-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wca-search-item-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 0.08em;
}
.wca-search-item-body {
  flex: 1;
  min-width: 0;
}
.wca-search-item-date {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}
.wca-search-item-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}
.wca-search-item:hover .wca-search-item-title {
  color: var(--red);
}
.wca-search-item-excerpt {
  font-size: 0.8rem;
  color: var(--slate);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wca-search-item-excerpt mark {
  background: rgba(212,160,23,0.18);
  color: var(--navy);
  font-weight: 600;
  padding: 0.05rem 0.15rem;
  border-radius: 2px;
}

/* Page results */
.wca-search-item-page .wca-search-item-thumb {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.wca-search-item-page .wca-search-item-thumb-placeholder {
  color: var(--gold);
  font-size: 1.1rem;
}

/* No results */
.wca-search-empty {
  text-align: center;
  padding: 3rem 0;
}
.wca-search-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.wca-search-empty h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.wca-search-empty p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-search-btn { display: flex; }
  .wca-search-container {
    margin-top: 3rem;
    padding: 0 1.25rem;
  }
  .wca-search-input {
    font-size: 1rem;
    padding: 0.85rem 3rem 0.85rem 1rem;
  }
  .wca-search-results {
    padding: 0 1.25rem 2rem;
  }
  .wca-search-item-thumb {
    width: 60px;
    height: 44px;
    min-width: 60px;
  }
  .wca-search-item-title {
    font-size: 0.95rem;
  }
  .wca-search-close {
    top: 1rem;
    right: 1.25rem;
    width: 38px;
    height: 38px;
  }
  .wca-search-hint { display: none; }
  .wca-search-filters { gap: 0.35rem; }
  .wca-search-filter-btn { font-size: 0.65rem; padding: 0.25rem 0.6rem; }
}

/* ============================================
   HOMEPAGE: Our Work Dropdown Menu
   ============================================ */
.hp-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.hp-dropdown-trigger {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s;
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
}

.hp-dropdown:hover .hp-dropdown-trigger,
.hp-dropdown-trigger:hover {
    color: #fff;
}

.navbar.scrolled .hp-dropdown-trigger {
    color: var(--navy);
}

.navbar.scrolled .hp-dropdown:hover .hp-dropdown-trigger {
    color: var(--navy);
}

.hp-dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(255,255,255,0.5);
    transition: transform 0.25s ease, border-top-color 0.25s ease;
    margin-top: 1px;
}

.navbar.scrolled .hp-dropdown-arrow {
    border-top-color: var(--navy);
}

.hp-dropdown:hover .hp-dropdown-arrow {
    transform: rotate(180deg);
    border-top-color: var(--gold);
}

/* Gold underline on trigger */
.hp-dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.hp-dropdown:hover .hp-dropdown-trigger::after {
    width: 100%;
}

/* Dropdown panel */
.hp-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 260px;
    background: #0f1d35;
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 10px;
    padding: 0.5rem 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(6px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 9999;
}

/* Invisible bridge so hover doesn't break */
.hp-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

/* Show on hover */
.hp-dropdown:hover .hp-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown links */
.hp-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.25rem;
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.01em;
    transition: all 0.15s ease;
    text-decoration: none !important;
}

.hp-dropdown-menu a::after {
    display: none !important;
}

.hp-dropdown-menu a:hover {
    color: #fff !important;
    background: rgba(212, 160, 23, 0.08);
    padding-left: 1.5rem;
}

/* Gold accent bar on hover */
.hp-dropdown-menu a::before {
    content: '';
    display: block;
    width: 3px;
    height: 0;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
    transition: height 0.2s ease;
}

.hp-dropdown-menu a:hover::before {
    height: 18px;
}

/* Subtle divider between items */
.hp-dropdown-menu a + a {
    border-top: 1px solid rgba(255,255,255,0.04) !important;
}

/* === MOBILE: Our Work accordion === */
.hp-mobile-dropdown-trigger {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
}

.hp-mobile-dropdown-trigger:hover {
    color: var(--gold) !important;
}

.hp-mobile-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(255,255,255,0.5);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.hp-mobile-dropdown-trigger.active .hp-mobile-arrow {
    transform: rotate(180deg);
}

.hp-mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
}

.hp-mobile-submenu.active {
    max-height: 400px;
    margin-top: 0.75rem;
}

.hp-mobile-submenu a {
    color: rgba(255,255,255,0.65) !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    display: block !important;
    padding: 0.45rem 0 0.45rem 1rem !important;
    transition: color 0.2s, padding-left 0.2s;
    text-decoration: none !important;
    border-bottom: none !important;
}

.hp-mobile-submenu a:hover {
    color: var(--gold) !important;
    padding-left: 1.25rem !important;
}

.hp-mobile-submenu a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    margin-right: 0.6rem;
    vertical-align: middle;
    opacity: 0.6;
}

.hp-mobile-submenu a::after {
    display: none !important;
}

/* Fix: mobiel Our Work submenu volledig tonen */
.mobile-menu.active {
    overflow-y: auto !important;
}

.mobile-menu-panel {
    min-height: auto !important;
    padding-bottom: 2rem !important;
}

.hp-mobile-submenu.active {
    max-height: none !important;
    overflow: visible !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.mobile-menu-panel .hp-mobile-submenu a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    padding: 0.5rem 0 0.5rem 1.25rem !important;
    font-size: 0.95rem !important;
    font-family: var(--font-body) !important;
    border-bottom: none !important;
}