:root {
  --green: #16875A;
  --green-dark: #0f6a45;
  --blue: #173F73;
  --blue-dark: #10233E;
  --gold: #F7A928;
  --header: #173F73;
  --footer: #10233E;
  --text: #1f2933;
  --muted: #5b6773;
  --bg: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(16, 35, 62, 0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
a { color: var(--blue); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.top-strip {
  background: var(--blue-dark);
  color: #fff;
  font-size: 14px;
}
.strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  gap: 12px;
}
.social-links { display: flex; gap: 8px; }
.social-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255,255,255,.12); color: #fff;
}
.strip-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.lang-switch { display: flex; background: rgba(255,255,255,.12); border-radius: 999px; overflow: hidden; }
.lang-switch button {
  border: 0; background: transparent; color: #fff; padding: 5px 12px;
  cursor: pointer; font: inherit; font-weight: 700;
}
.lang-switch button.is-active { background: var(--gold); color: #1a1a1a; }
.strip-donate {
  background: var(--gold); color: #1a1a1a; font-weight: 700;
  padding: 6px 14px; border-radius: 999px;
}

.site-header { background: var(--header); position: sticky; top: 0; z-index: 50; box-shadow: 0 4px 18px rgba(0,0,0,.18); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; background: #fff; }
.brand strong { font-size: 16px; line-height: 1.25; }
.menu-toggle { display: none; background: none; border: 0; width: 40px; }
.menu-toggle span { display: block; height: 3px; background: #fff; margin: 6px 0; }
.main-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.main-nav > a, .nav-group > button {
  color: #fff; background: none; border: 0; font: inherit; cursor: pointer;
  padding: 10px 12px; border-radius: 8px;
}
.main-nav > a:hover, .nav-group > button:hover { background: rgba(255,255,255,.12); }
.nav-group { position: relative; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0; min-width: 230px;
  background: #fff; border-radius: 10px; box-shadow: var(--shadow); padding: 8px;
  z-index: 20;
}
.dropdown a { display: block; padding: 9px 12px; color: var(--text); border-radius: 8px; }
.dropdown a:hover { background: #eef4fb; color: var(--blue); }
.nav-group:hover .dropdown, .nav-group:focus-within .dropdown { display: block; }

.hero {
  background: linear-gradient(100deg, rgba(16,35,62,.82), rgba(22,135,90,.45)),
    url("../images/camp-team.jpg") center/cover no-repeat;
  color: #fff; padding: 72px 0 56px;
}
.hero-inner { display: grid; grid-template-columns: 1.4fr .8fr; gap: 28px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: var(--gold); font-weight: 700; }
.hero h1 { font-size: clamp(28px, 4vw, 46px); margin: 8px 0 18px; }
.hero-actions, .page-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px;
  border-radius: 999px; font-weight: 700; border: 0; cursor: pointer;
}
.btn-primary { background: var(--gold); color: #1a1a1a; }
.btn-green { background: var(--green); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 1px solid #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.impact-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 28px; }
.impact-stat { background: rgba(255,255,255,.12); padding: 14px; border-radius: 12px; text-align: center; }
.impact-stat strong { display: block; font-size: 24px; }
.hero-panel { background: rgba(16,35,62,.72); border-radius: 16px; padding: 22px; }
.news-list { margin-top: 10px; padding-left: 18px; }

.quick-band { background: #fff; border-bottom: 1px solid #e6edf5; }
.quick-actions { display: flex; gap: 10px; overflow: auto; padding: 16px 0; }
.quick-actions .btn { background: #eef5f1; color: var(--blue-dark); white-space: nowrap; }

.section { padding: 56px 0; }
.section-white { background: #fff; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 24px; }
.section-head h2, .page-hero h1, .about-split h2 { font-size: clamp(24px, 3vw, 34px); color: var(--blue-dark); }
.about-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center; }
.about-split img { border-radius: 16px; min-height: 280px; object-fit: cover; width: 100%; }
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card, .obj-card, .team-card, .form-card {
  background: #fff; border-radius: 16px; box-shadow: var(--shadow); overflow: hidden;
}
.card img { height: 180px; width: 100%; object-fit: cover; }
.card-body, .obj-card, .team-card { padding: 18px; }
.obj-card h3, .card h3, .team-card h3 { color: var(--blue); margin-bottom: 8px; }
.icon-badge {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: #e8f6ef; color: var(--green); font-size: 20px; margin-bottom: 12px;
}
.member-cta-band, .donate-cta-band {
  background: linear-gradient(90deg, var(--blue), var(--green));
  color: #fff; border-radius: 18px; padding: 28px; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
}
.member-cta-button, .donate-cta-button {
  background: var(--gold); color: #1a1a1a; font-weight: 800;
  padding: 12px 18px; border-radius: 999px; display: inline-flex; gap: 8px; align-items: center;
}
.team-card { text-align: center; }
.team-photo {
  width: 110px; height: 110px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px;
  background: #d7e4f3;
}
.mission-vision-section { padding: 0 0 56px; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mission-vision-card { background: #fff; padding: 28px; border-radius: 16px; box-shadow: var(--shadow); }
.mission-vision-card span { color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.office-map-section iframe { width: 100%; height: 320px; border: 0; display: block; }

.page-hero {
  background: linear-gradient(100deg, var(--blue-dark), var(--blue));
  color: #fff; padding: 42px 0;
}
.page-hero p { max-width: 720px; opacity: .92; margin-top: 8px; }
.breadcrumb { font-size: 13px; opacity: .85; margin-bottom: 8px; }
.breadcrumb a { color: #fff; }

form { display: grid; gap: 12px; }
label { font-weight: 600; font-size: 14px; }
input, select, textarea {
  width: 100%; padding: 11px 12px; border: 1px solid #d5dee8; border-radius: 10px; font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #e8eef5; }
th { background: var(--blue); color: #fff; }
.note { background: #fff7e6; border-left: 4px solid var(--gold); padding: 14px 16px; border-radius: 8px; }

.site-footer { background: var(--footer); color: #d7e0ea; padding-top: 42px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; padding-bottom: 28px; }
.footer-brand { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; color: #fff; }
.footer-brand img { width: 44px; height: 44px; border-radius: 8px; background: #fff; }
.footer-grid h3 { color: #fff; margin-bottom: 12px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin: 6px 0; }
.footer-grid a { color: #d7e0ea; }
.footer-social { display: flex; gap: 8px; margin-top: 12px; }
.footer-social a { width: 32px; height: 32px; display: grid; place-items: center; background: rgba(255,255,255,.1); border-radius: 50%; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 14px 0; font-size: 14px; }
.chip-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 22px; }
.chip-wrap span {
  background: #e8eef6; color: var(--blue-dark); padding: 6px 12px;
  border-radius: 999px; font-size: 14px; font-weight: 600;
}
.faq-list details {
  background: #fff; border-radius: 12px; box-shadow: var(--shadow);
  padding: 14px 18px; margin-bottom: 10px;
}
.faq-list summary { cursor: pointer; font-weight: 700; color: var(--blue); }
.faq-list details p { margin-top: 8px; }
ul.plain { margin: 12px 0 0 18px; }
.seo-lead { max-width: 820px; }

.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; width: 54px; height: 54px;
  background: #25D366; color: #fff; border-radius: 50%; display: grid; place-items: center;
  font-size: 28px; box-shadow: 0 8px 20px rgba(0,0,0,.2); z-index: 40;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; left: 0; right: 0; top: 78px;
    background: var(--blue-dark); flex-direction: column; padding: 12px; align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .dropdown { position: static; box-shadow: none; background: rgba(255,255,255,.06); }
  .dropdown a { color: #fff; }
  .hero-inner, .about-split, .grid-3, .grid-2, .mission-vision-grid, .footer-grid, .member-cta-band, .donate-cta-band {
    grid-template-columns: 1fr; display: grid;
  }
  .impact-stats { grid-template-columns: 1fr 1fr; }
  .member-cta-band, .donate-cta-band { display: grid; }
}

.article-wrap { max-width: 820px; }
.article-wrap h2 { margin: 28px 0 10px; color: var(--blue-dark); }
.article-wrap p { margin-bottom: 14px; }
.article-hero-img { width:100%; border-radius:16px; margin: 8px 0 22px; max-height: 380px; object-fit:cover; }
.lang-block { margin-bottom: 36px; }
.img-pair { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:16px 0 22px; }
.img-pair img { border-radius:12px; height:220px; object-fit:cover; width:100%; }
@media(max-width:700px){ .img-pair{grid-template-columns:1fr;} }
