/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a5276;
  --primary-dark: #154360;
  --primary-light: #2e86c1;
  --accent: #e67e22;
  --accent-dark: #ca6f1e;
  --green: #1e8449;
  --light-bg: #f4f6f8;
  --white: #ffffff;
  --text: #2c3e50;
  --text-light: #5d6d7e;
  --border: #d5d8dc;
  --shadow: 0 4px 24px rgba(26,82,118,0.10);
  --shadow-hover: 0 8px 32px rgba(26,82,118,0.18);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.3s ease;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-heading: 'Merriweather', 'Georgia', serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--primary-dark); line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-alt { background: var(--light-bg); }
.section-dark { background: var(--primary-dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-header { margin-bottom: 3rem; }
.section-header p { font-size: 1.05rem; max-width: 620px; }
.section-header.text-center p { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; border: 2px solid transparent;
  transition: all var(--transition); letter-spacing: 0.02em;
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,126,34,0.3); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: #196f3d; border-color: #196f3d; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,132,73,0.3); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.topbar a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.topbar a:hover { color: var(--accent); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar-social { display: flex; gap: 0.6rem; }
.topbar-social a {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem;
  transition: all var(--transition);
}
.topbar-social a:hover { background: var(--accent); color: var(--white); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,82,118,0.10);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(26,82,118,0.16); }
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-heading); }
.nav-logo-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem; flex-shrink: 0;
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-text strong { display: block; font-size: 1rem; color: var(--primary-dark); }
.nav-logo-text span { font-size: 0.72rem; color: var(--text-light); font-family: var(--font); font-weight: 400; }

/* Logo image (replaces icon+text combo) */
.nav-logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
@media (max-width: 480px) {
  .nav-logo-img { height: 38px; max-width: 160px; }
}

/* ===== NAV LINKS & DROPDOWN ===== */
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.6rem 0.85rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--text);
  transition: all var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(26,82,118,0.07); }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-hover);
  border: 1px solid var(--border); padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition); z-index: 200;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 0.6rem 0.9rem; border-radius: var(--radius-sm);
  font-size: 0.875rem; color: var(--text); transition: all var(--transition);
}
.dropdown a:hover { background: var(--light-bg); color: var(--primary); padding-left: 1.2rem; }

.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 0.4rem; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--primary); border-radius: 2px; transition: all var(--transition);
}
.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 nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(21,67,96,0.97); flex-direction: column;
  padding: 5rem 2rem 2rem; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white); font-size: 1.1rem; padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1); display: block; font-weight: 500;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-sub { padding-left: 1rem; }
.mobile-nav-sub a { font-size: 0.95rem; color: rgba(255,255,255,0.75); border-bottom-style: dashed; }
.mobile-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1400&q=80') center/cover no-repeat;
  opacity: 0.12;
}
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; padding: 5rem 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); font-size: 0.8rem; font-weight: 600;
  padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; max-width: 680px; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; margin-top: 0.3rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 4rem 0 3rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--primary); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-item { text-align: center; color: var(--white); padding: 0.5rem; }
.stat-num { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 0.4rem; letter-spacing: 0.04em; text-transform: uppercase; }

/* ===== CARDS ===== */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: all var(--transition); border: 1px solid rgba(0,0,0,0.05);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.5rem; }
.card-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.5rem; display: block; }
.card-title { font-size: 1.1rem; color: var(--primary-dark); margin-bottom: 0.6rem; font-family: var(--font-heading); }
.card-text { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }
.card-link { color: var(--primary-light); font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 1rem; }
.card-link:hover { color: var(--accent); }

/* Service cards */
.service-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; border: 1px solid rgba(0,0,0,0.05); transition: all var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.service-icon { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.6rem; margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.15rem; color: var(--primary-dark); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.875rem; color: var(--text-light); }
.service-card .learn-more { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--primary-light); font-size: 0.85rem; font-weight: 600; margin-top: 1rem; transition: gap var(--transition); }
.service-card .learn-more:hover { gap: 0.7rem; color: var(--accent); }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

/* ===== ACCORDION ===== */
.accordion { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; background: var(--white); border: none;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: var(--primary-dark); cursor: pointer; text-align: left; gap: 1rem;
  transition: background var(--transition);
}
.accordion-header:hover { background: var(--light-bg); }
.accordion-header.active { background: var(--primary-dark); color: var(--white); }
.accordion-icon { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition); font-size: 1rem; }
.accordion-header.active .accordion-icon { border-color: rgba(255,255,255,0.4); transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.45s ease, padding 0.3s ease; background: var(--light-bg); }
.accordion-body.open { max-height: 1200px; }
.accordion-content { padding: 1.5rem; }
.accordion-content p { font-size: 0.925rem; margin-bottom: 0.75rem; }
.accordion-content ul { padding-left: 1.2rem; list-style: disc; }
.accordion-content ul li { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.4rem; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--primary), var(--primary-light)); border-radius: 3px; }
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.45rem; top: 0.35rem; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--accent); }
.timeline-year { font-size: 0.78rem; font-weight: 700; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.3rem; }
.timeline-item h4 { font-size: 1rem; color: var(--primary-dark); margin-bottom: 0.4rem; }
.timeline-item p { font-size: 0.875rem; color: var(--text-light); }

/* ===== OFFICE CARDS ===== */
.office-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--border); transition: all var(--transition); }
.office-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); transform: translateY(-3px); }
.office-card.head { border-color: var(--accent); border-width: 2px; }
.office-name { font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.office-badge { font-size: 0.7rem; background: var(--accent); color: var(--white); padding: 0.15rem 0.6rem; border-radius: 50px; font-weight: 600; }
.office-detail { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: var(--text-light); margin-bottom: 0.5rem; }
.office-detail a { color: var(--primary-light); }
.office-detail a:hover { color: var(--accent); }
.office-icon { font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }

/* ===== TEAM / TESTIMONIAL ===== */
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border-top: 4px solid var(--accent); }
.testimonial-quote { font-size: 2.5rem; color: var(--accent); line-height: 1; margin-bottom: 0.5rem; font-family: Georgia, serif; }
.testimonial-text { font-size: 0.95rem; color: var(--text); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--primary-dark); }
.testimonial-role { font-size: 0.78rem; color: var(--text-light); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.07) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== DONATE HIGHLIGHT ===== */
.donate-highlight { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); padding: 3rem 0; }
.donate-highlight .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.donate-highlight h2 { color: var(--white); margin-bottom: 0.5rem; }
.donate-highlight p { color: rgba(255,255,255,0.9); margin: 0; }
.donate-highlight .btn-outline { border-color: var(--white); color: var(--white); }
.donate-highlight .btn-outline:hover { background: var(--white); color: var(--accent); }

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.form-control {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.925rem;
  color: var(--text); background: var(--white); transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(46,134,193,0.12); }
.form-control::placeholder { color: #aab; }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235d6d7e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

/* ===== FOOTER ===== */
.footer { background: #0d2035; color: rgba(255,255,255,0.8); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-logo-icon { width: 42px; height: 42px; border-radius: 8px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.3rem; flex-shrink: 0; }
.footer-logo-text strong { display: block; font-size: 0.95rem; color: var(--white); font-family: var(--font-heading); }
.footer-logo-text span { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
/* Logo image in footer */
.footer-logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
@media (max-width: 480px) {
  .footer-logo-img { height: 36px; }
}
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: rgba(255,255,255,0.7); transition: all var(--transition); }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { font-size: 0.9rem; color: var(--white); margin-bottom: 1.25rem; font-family: var(--font); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: all var(--transition); display: inline-flex; align-items: center; gap: 0.3rem; }
.footer-col ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-contact-icon { color: var(--accent); font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.55); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--accent); }
.footer-reg { display: flex; gap: 1.5rem; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { content: '🔍'; position: absolute; inset: 0; background: rgba(26,82,118,0.5); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover::after { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; color: var(--white); font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; }

/* ===== TRAINING CARDS ===== */
.training-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--border); box-shadow: var(--shadow); transition: all var(--transition); }
.training-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.training-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }
.training-card h3 { font-size: 1rem; color: var(--primary-dark); margin-bottom: 0.6rem; }
.training-card p { font-size: 0.85rem; color: var(--text-light); }
.training-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.training-meta-item { display: flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; color: var(--text-light); }
.training-meta-item strong { color: var(--text); }

/* ===== BANKING DETAILS ===== */
.bank-card { background: var(--white); border-radius: var(--radius); padding: 2rem; border: 2px solid var(--primary-light); box-shadow: var(--shadow); }
.bank-card h3 { color: var(--primary-dark); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.bank-row { display: flex; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.bank-row:last-child { border-bottom: none; }
.bank-label { font-size: 0.8rem; color: var(--text-light); width: 160px; flex-shrink: 0; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 0.1rem; }
.bank-value { font-size: 0.925rem; color: var(--text); font-weight: 500; }

/* ===== ALERT / NOTICE ===== */
.notice { border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1.5rem; }
.notice-info { background: rgba(46,134,193,0.08); border-left: 4px solid var(--primary-light); }
.notice-success { background: rgba(30,132,73,0.08); border-left: 4px solid var(--green); }
.notice-warning { background: rgba(230,126,34,0.1); border-left: 4px solid var(--accent); }
.notice-icon { font-size: 1.2rem; flex-shrink: 0; }
.notice p { font-size: 0.9rem; margin: 0; }

/* ===== TABS ===== */
.tabs { border-bottom: 2px solid var(--border); display: flex; gap: 0.25rem; margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn { padding: 0.75rem 1.25rem; border: none; background: none; font-family: var(--font); font-size: 0.9rem; font-weight: 500; color: var(--text-light); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all var(--transition); border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.tab-btn:hover { color: var(--primary); background: var(--light-bg); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 700; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar .nav-menu, .navbar .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.6rem; }
  .donate-highlight .container { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-reg { justify-content: center; }
  .topbar { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
  .page-hero h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions .btn { width: auto; }
  .tabs { gap: 0; }
  .tab-btn { padding: 0.6rem 0.9rem; font-size: 0.82rem; }
  .bank-row { flex-direction: column; gap: 0.25rem; }
  .bank-label { width: auto; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-in { animation: fadeInUp 0.6s ease both; }
.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  border: none; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; opacity: 0; pointer-events: none;
  transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--accent); transform: translateY(-3px); }

/* ===== MISC ===== */
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.pill { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.pill-blue { background: rgba(26,82,118,0.1); color: var(--primary); }
.pill-green { background: rgba(30,132,73,0.1); color: var(--green); }
.pill-orange { background: rgba(230,126,34,0.1); color: var(--accent-dark); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col-text-img { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .two-col, .two-col-text-img { grid-template-columns: 1fr; gap: 2rem; } }
.img-rounded { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hover); }
.img-rounded img { width: 100%; height: 100%; object-fit: cover; }
.highlight-box { background: var(--light-bg); border-radius: var(--radius); padding: 2rem; border-left: 4px solid var(--primary-light); }
.highlight-box h3 { color: var(--primary-dark); margin-bottom: 0.5rem; }
