/* ============================================================
   Feragat İnsani Yardımlaşma Derneği — Public Website Styles
   Brand: Navy #245A96 | Gold #D7A33F | White #FFFFFF
   Font:  Manrope (Google Fonts)
   ============================================================ */

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

:root {
  --navy:        #245A96;
  --navy-dark:   #173f6f;
  --navy-deeper: #0f2d52;
  --gold:        #D7A33F;
  --gold-light:  #f0c06a;
  --white:       #ffffff;
  --off-white:   #f5f8fc;
  --text:        #0f1f35;
  --text-muted:  #5a6e85;
  --border:      #dde5ef;
  --shadow-sm:   0 2px 8px rgba(36,90,150,.10);
  --shadow-md:   0 8px 28px rgba(36,90,150,.14);
  --shadow-lg:   0 20px 56px rgba(36,90,150,.18);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --transition:  .22s cubic-bezier(.4,0,.2,1);
  --max-w:       1200px;
  --section-gap: 96px;

  /* Glassmorphism tokens */
  --glass-bg:      rgba(255,255,255,.14);
  --glass-bg-dark: rgba(15,45,82,.45);
  --glass-border:  rgba(255,255,255,.28);
  --glass-blur:    blur(20px);

  /* WhatsApp */
  --whatsapp:      #25D366;
  --whatsapp-dark: #1eb757;
}

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

body {
  font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-gap) 0; }
.section-alt { background: var(--off-white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-deeper);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--navy-deeper);
  box-shadow: 0 6px 20px rgba(215,163,63,.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 28px rgba(215,163,63,.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(36,90,150,.3);
}
.btn-navy:hover {
  background: var(--navy-dark);
  box-shadow: 0 10px 28px rgba(36,90,150,.38);
}

/* ── Navigation ───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}

#navbar.scrolled {
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(255,255,255,.4);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(15,45,82,.16);
}

.nav-name {
  display: flex;
  flex-direction: column;
}
.nav-name strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  transition: color var(--transition);
}
.nav-name span {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  transition: color var(--transition);
}

#navbar.scrolled .nav-name strong { color: var(--navy-deeper); }
#navbar.scrolled .nav-name span   { color: var(--text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.16);
}

#navbar.scrolled .nav-link         { color: var(--text-muted); }
#navbar.scrolled .nav-link:hover   { color: var(--navy); background: var(--off-white); }
#navbar.scrolled .nav-link.active  { color: var(--navy); background: rgba(36,90,150,.09); }

.nav-cta {
  margin-left: 8px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--navy-deeper);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 4px 14px rgba(215,163,63,.35);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.nav-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 20px rgba(215,163,63,.45);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--navy); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-deeper);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.mobile-nav .btn-primary { margin-top: 12px; color: var(--navy-deeper); }

/* ── Hero ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deeper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,29,82,.92) 0%, rgba(36,90,150,.75) 55%, rgba(215,163,63,.18) 100%);
  z-index: 1;
}

/* Decorative elements */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  pointer-events: none;
  z-index: 0;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -150px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: var(--navy);
  bottom: -100px; left: -80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(215,163,63,.18);
  border: 1px solid rgba(215,163,63,.35);
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}
.hero-scroll svg { color: rgba(255,255,255,.4); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats Bar ────────────────────────────────────────────── */
#stats {
  background: var(--navy-deeper);
  padding: 0;
  position: relative;
  z-index: 2;
}

.stats-band {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  padding: 52px 0;
  box-shadow: 0 8px 40px rgba(15,29,82,.35);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Skeleton */
.stat-skeleton {
  display: inline-block;
  width: 80px;
  height: 2.4rem;
  background: rgba(255,255,255,.12);
  border-radius: 6px;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0%   { opacity: .5; }
  50%  { opacity: 1; }
  100% { opacity: .5; }
}

/* ── Campaigns ────────────────────────────────────────────── */
#campaigns { padding-top: var(--section-gap); padding-bottom: var(--section-gap); }

.campaigns-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.campaign-card {
  background: linear-gradient(180deg, var(--white) 0%, #fbfcfe 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.campaign-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215,163,63,.45);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon {
  font-size: 3.5rem;
  opacity: .35;
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy-deeper);
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-deeper);
  line-height: 1.3;
}

.card-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.card-trust-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(36,90,150,.07);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
}
.card-trust-note svg { flex: 0 0 auto; color: var(--gold); }

.card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}

.card-footer .btn {
  width: 100%;
  justify-content: center;
  padding: 11px 20px;
}

/* Skeleton cards */
.skeleton-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sk { background: #e9eef6; border-radius: 6px; animation: shimmer 1.5s infinite; }
.sk-img  { height: 200px; border-radius: 0; }
.sk-body { padding: 24px; display: grid; gap: 12px; }
.sk-title { height: 22px; width: 75%; }
.sk-text1 { height: 14px; width: 100%; }
.sk-text2 { height: 14px; width: 60%; }
.sk-bar   { height: 7px; border-radius: 999px; }
.sk-btn   { height: 42px; margin-top: 8px; border-radius: var(--radius-sm); }

/* Empty state */
.campaigns-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
}
.campaigns-empty svg { margin: 0 auto 16px; opacity: .4; }
.campaigns-empty p { font-size: 1rem; }

/* ── About ────────────────────────────────────────────────── */
#about { padding: var(--section-gap) 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-pillars {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.pillar-text h4 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy-deeper);
  margin-bottom: 4px;
}
.pillar-text p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-wrap {
  position: relative;
  width: 280px;
  height: 280px;
}

.about-logo-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px dashed rgba(36,90,150,.2);
  animation: spin 20s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.about-logo-ring::before, .about-logo-ring::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
}
.about-logo-ring::before { top: -6px; left: 50%; transform: translateX(-50%); }
.about-logo-ring::after  { bottom: -6px; left: 50%; transform: translateX(-50%); }

.about-logo-bg {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--off-white), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}

.about-logo-bg img {
  width: 220px;
  height: 220px;
  object-fit: contain;
}

.about-logo-fallback {
  width: 180px;
  height: 180px;
}

.about-stats-chips {
  position: absolute;
  display: grid;
  gap: 12px;
}

.stats-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  min-width: 120px;
}
.stats-chip strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
}
.stats-chip span {
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.chip-1 { top: -20px; right: -60px; }
.chip-2 { bottom: -10px; right: -50px; }

/* ── Contact ──────────────────────────────────────────────── */
#contact { padding: var(--section-gap) 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info { display: grid; gap: 28px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.contact-item-text p {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-item-text a { color: var(--navy); font-weight: 600; }
.contact-item-text a:hover { text-decoration: underline; }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-deeper);
  margin-bottom: 24px;
}

.contact-form { display: grid; gap: 16px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: grid; gap: 6px; }

.form-group label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(36,90,150,.1);
}

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

.form-submit {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  color: #167647;
  font-weight: 700;
  font-size: .9rem;
  background: #dcfae6;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}
.form-success.visible { display: flex; }

/* ── Footer ───────────────────────────────────────────────── */
#footer {
  background: var(--navy-deeper);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon { width: 48px; height: 48px; object-fit: contain; padding: 3px; border-radius: 12px; background: #fff; }

.footer-logo-name strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.footer-logo-name span {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}

.footer-desc {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-btn[hidden] { display: none; }
.social-btn:hover {
  background: var(--gold);
  color: var(--navy-deeper);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: .8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links { display: grid; gap: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-list { display: grid; gap: 10px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
}
.footer-contact-item span:first-child { flex-shrink: 0; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Scroll-reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .campaigns-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { padding: 16px; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); }

  .campaigns-grid { grid-template-columns: 1fr; }
  .campaigns-header { flex-direction: column; align-items: flex-start; }

  .form-row-2 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .chip-1, .chip-2 { display: none; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-logo-wrap { width: 220px; height: 220px; }
  .about-logo-bg { width: 220px; height: 220px; }
  .about-logo-bg img { width: 160px; height: 160px; }
}

/* ============================================================
   MODERN ADDITIONS — hero slider, gallery, news, FAQ, FAB
   ============================================================ */

/* ── Glass panel utility ─────────────────────────────────── */
.glass-panel {
  background: var(--glass-bg-dark);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ── Hero static gradient overlay ────────────────────────── */
#hero-static { position: relative; width: 100%; }
#hero-static::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,45,82,.35) 0%, rgba(36,90,150,.18) 55%, rgba(215,163,63,.12) 100%);
  pointer-events: none;
}

/* ── Hero slider ─────────────────────────────────────────── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero-slider[hidden] { display: none; }

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.hero-slide.active .hero-slide-img {
  animation: slow-zoom 8s ease-out forwards;
}
@keyframes slow-zoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.1); }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,29,52,.78) 0%, rgba(36,90,150,.5) 55%, rgba(215,163,63,.2) 100%);
}

.hero-slide .container { position: relative; z-index: 2; }

.hero-slide-caption {
  max-width: 640px;
  padding: 40px 44px;
  color: var(--white);
}
.hero-slide-title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero-slide-subtitle {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  margin-bottom: 24px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  transition: background var(--transition), transform var(--transition);
}
.slider-arrow:hover { background: rgba(255,255,255,.28); transform: translateY(-50%) scale(1.06); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  transition: background var(--transition), width var(--transition);
}
.slider-dot.active { background: var(--gold); width: 30px; }

/* ── Wavy section divider ────────────────────────────────── */
.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 4;
  color: var(--white);
  line-height: 0;
  pointer-events: none;
}
.wave-divider svg { width: 100%; height: 48px; display: block; }

/* ── Campaign card photo ─────────────────────────────────── */
.card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transition: transform .4s ease;
  will-change: transform;
}
.campaign-card:hover .card-photo { transform: scale(1.06); }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-rows: auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  min-height: 220px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(243,247,252,.94)),
    var(--off-white);
  padding: 0;
  transition: transform var(--transition), box-shadow var(--transition);
  will-change: transform;
}
.gallery-item.is-wide { aspect-ratio: 16 / 9; }
.gallery-item.is-tall { aspect-ratio: 3 / 4; }
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.025); }

.gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(15,45,82,.35);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

.gallery-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  cursor: default;
}
.gallery-tile:nth-child(even) {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-deeper) 100%);
}
.gallery-tile-icon { font-size: 2.6rem; opacity: .85; }
.gallery-tile-label { font-weight: 700; font-size: .95rem; opacity: .9; }

.gallery-skeleton { height: 100%; border-radius: var(--radius-md); }
.gallery-empty {
  grid-column: 1 / -1;
  padding: 48px 24px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  background: var(--off-white);
  color: var(--text-muted);
  text-align: center;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 1100px);
  max-height: 90vh;
}
.lightbox::backdrop {
  background: rgba(10,20,38,.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius-md);
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.lightbox-caption {
  color: var(--white);
  text-align: center;
  margin-top: 14px;
  font-weight: 600;
}
.lightbox-close {
  position: absolute;
  top: -6px;
  right: 0;
  transform: translateY(-100%);
  color: var(--white);
  font-size: 1.4rem;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.28); }

/* ── News / Activities ───────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(36,90,150,.35);
  box-shadow: var(--shadow-lg);
}

.news-media {
  position: relative;
  height: 190px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transition: transform .4s ease;
}
.news-card:hover .news-media img { transform: scale(1.06); }
.news-media-icon { font-size: 3rem; opacity: .35; }

.news-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy-deeper);
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.news-body { padding: 22px 24px 26px; }
.news-date {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.news-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-deeper);
  margin-bottom: 8px;
  line-height: 1.35;
}
.news-desc {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.empty-note {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  font-weight: 600;
}

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: rgba(215,163,63,.5);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-deeper);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer { padding: 0 22px 20px; }
.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .96rem;
}

.faq-skeleton { height: 60px; border-radius: var(--radius-md); }

/* ── WhatsApp FAB ────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  will-change: transform;
}
.whatsapp-fab:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 34px rgba(37,211,102,.55);
}

.fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  opacity: .5;
  animation: fab-pulse 2s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes fab-pulse {
  0%   { transform: scale(1);   opacity: .5; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

.fab-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-deeper);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  box-shadow: var(--shadow-md);
}
.fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-deeper);
}
.whatsapp-fab:hover .fab-tooltip,
.whatsapp-fab:focus-visible .fab-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ── Responsive additions ────────────────────────────────── */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 180px; }
  .slider-arrow { width: 42px; height: 42px; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
  .slider-dots { bottom: 70px; }
  .hero-slide-caption { padding: 28px 24px; margin: 0 4px; }
  .whatsapp-fab { width: 56px; height: 56px; right: 16px; bottom: 16px; }
  .fab-tooltip { display: none; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-slide.active .hero-slide-img { animation: none; transform: none; }
  .fab-pulse { animation: none; opacity: 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
