/* ===================================================
   CFO - Creativity Future Organization
   Main Stylesheet
   Palette derived from the CFO logo (blue / red / green)
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap');

:root {
  --primary:     #0B4A78;   /* Deep CFO Blue */
  --primary-dark:#072F4D;
  --primary-light:#0F76BB;  /* Logo Blue */
  --accent:      #E51D39;   /* Logo Red */
  --accent-light:#F15C71;
  --gold:        #25B05D;   /* Logo Green (fills the "warm highlight" role) */
  --gold-light:  #4FCB80;
  --light:       #F2F7FB;
  --white:       #FFFFFF;
  --text:        #23303D;
  --text-muted:  #64758A;
  --border:      #E1E9F1;
  --shadow:      0 4px 24px rgba(11,74,120,0.10);
  --shadow-lg:   0 12px 48px rgba(11,74,120,0.16);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
}

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-light); }

img { max-width: 100%; display: block; }

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ============ UTILITY ============ */
.text-accent    { color: var(--accent) !important; }
.text-gold      { color: var(--gold) !important; }
.text-primary-c { color: var(--primary) !important; }
.bg-primary-c   { background: var(--primary) !important; }
.bg-accent      { background: var(--accent) !important; }
.bg-light-c     { background: var(--light) !important; }
.fw-800         { font-weight: 800; }
.fw-700         { font-weight: 700; }
.lh-sm          { line-height: 1.4; }

.divider-accent {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 2px;
  margin: 12px 0 20px;
}
.divider-accent.center { margin: 12px auto 20px; }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============ BUTTONS ============ */
.btn-saho {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-saho:hover {
  background: var(--accent-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,57,45,0.35);
}

.btn-saho-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-saho-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.btn-saho-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-saho-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,92,0.35);
}

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: var(--gold-light); }
.top-bar .sep { margin: 0 10px; opacity: 0.4; }

/* ============ NAVIGATION ============ */
.navbar-saho {
  background: var(--white);
  padding: 0;
  box-shadow: 0 2px 20px rgba(26,58,92,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar-saho.scrolled {
  box-shadow: 0 4px 28px rgba(26,58,92,0.14);
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  text-decoration: none;
}
.navbar-brand-wrap img { width: 58px; height: 58px; object-fit: contain; }
.navbar-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.navbar-brand-text .org-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.navbar-brand-text .org-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link-saho {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text) !important;
  padding: 28px 16px !important;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav-link-saho::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px 2px 0 0;
}
.nav-link-saho:hover,
.nav-link-saho.active { color: var(--accent) !important; }
.nav-link-saho:hover::after,
.nav-link-saho.active::after { transform: scaleX(1); }

.nav-donate {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: var(--radius);
  margin-left: 8px;
  font-weight: 700;
}
.nav-donate::after { display: none !important; }
.nav-donate:hover { background: var(--accent-light) !important; color: #fff !important; }

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 12px 0;
  min-width: 230px;
}
.dropdown-item {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 20px;
  color: var(--text);
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--light);
  color: var(--accent);
  padding-left: 28px;
}

/* ============ HERO ============ */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-field.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.35);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero-section:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15,37,64,0.92) 0%,
    rgba(26,58,92,0.75) 50%,
    rgba(200,57,45,0.3) 100%
  );
}

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

.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,57,45,0.18);
  border: 1px solid rgba(200,57,45,0.4);
  color: #f5a5a0;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-label .dot {
  width: 7px; height: 7px;
  background: var(--accent-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title .highlight {
  color: var(--gold-light);
  position: relative;
}

.hero-desc {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 540px;
}
.hero-stat {
  flex: 1;
  text-align: center;
  padding: 18px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.hero-scroll .arrow {
  width: 30px; height: 30px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

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

/* ============ MARQUEE BAR ============ */
.marquee-bar {
  background: var(--accent);
  padding: 12px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 600;
}
.marquee-item .dot { color: var(--gold-light); font-size: 1rem; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTION HEADERS ============ */
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0; }

/* ============ ABOUT STRIP ============ */
.about-strip {
  padding: 90px 0;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--accent);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
  min-width: 130px;
  box-shadow: var(--shadow-lg);
}
.about-img-badge .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.about-img-badge .txt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.9;
}
.about-img-badge2 {
  position: absolute;
  top: 24px; right: -20px;
  background: var(--white);
  color: var(--primary);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}
.about-img-badge2 .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.about-img-badge2 .txt {
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.about-text { padding-left: 48px; }

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.value-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  transition: var(--transition);
}
.value-item:hover .value-icon {
  background: var(--accent);
  color: #fff;
}
.value-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}
.value-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============ PROGRAMS ============ */
.programs-section { padding: 90px 0; background: var(--light); }

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.program-card-icon {
  padding: 36px 28px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}
.program-card-icon::before {
  content: '';
  position: absolute;
  right: -30px; bottom: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.program-card-icon i {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.9);
}
.program-card-icon.accent-bg {
  background: linear-gradient(135deg, var(--accent) 0%, #e85);
}
.program-card-icon.gold-bg {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light));
}
.program-card-icon.green-bg {
  background: linear-gradient(135deg, #1a7a4a 0%, #2ecc71);
}
.program-card-icon.teal-bg {
  background: linear-gradient(135deg, #166370 0%, #1abc9c);
}
.program-card-icon.purple-bg {
  background: linear-gradient(135deg, #5c1a72 0%, #9b59b6);
}

.program-card-body { padding: 26px 28px; flex: 1; }
.program-card-body h4 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.program-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.program-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.program-card-link:hover { gap: 10px; }

/* ============ IMPACT COUNTER ============ */
.impact-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.impact-card {
  text-align: center;
  padding: 24px 16px;
  position: relative;
  z-index: 1;
}
.impact-card .count {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.impact-card .count-unit {
  font-size: 1.4rem;
  color: var(--gold-light);
}
.impact-card .count-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  display: block;
}
.impact-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
}

/* ============ PROJECTS ============ */
.projects-section { padding: 90px 0; }

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.project-card-body { padding: 24px; }
.project-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--light);
  color: var(--accent);
  margin-bottom: 10px;
}
.project-card-body h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.project-card-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.65;
}
.project-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.project-meta span { display: flex; align-items: center; gap: 5px; }

/* ============ NEWS ============ */
.news-section { padding: 90px 0; background: var(--light); }

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.news-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
}
.news-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.news-card-body h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-card-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.65;
  margin-bottom: 16px;
}
.read-more {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.read-more:hover { gap: 10px; }

/* ============ OFFICES ============ */
.offices-section { padding: 80px 0; }

.office-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.office-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent);
}
.office-flag {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.office-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary);
}
.office-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.office-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700;
  color: #1a7a4a;
}
.office-status .dot-green {
  width: 7px; height: 7px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ============ PARTNERS ============ */
.partners-section { padding: 70px 0; background: var(--light); }
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: var(--transition);
  height: 80px;
}
.partner-logo:hover {
  box-shadow: var(--shadow);
  transform: scale(1.04);
}
.partner-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.partner-logo:hover .partner-logo-text { color: var(--primary); }

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #b02d22 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  left: -60px; bottom: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.08rem; margin-bottom: 32px; }
.cta-inner { position: relative; z-index: 1; }

/* ============ FOOTER ============ */
.footer-main {
  background: var(--primary-dark);
  padding: 70px 0 40px;
  color: rgba(255,255,255,0.75);
}
.footer-brand img { width: 70px; height: 70px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.8;
  max-width: 280px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-social {
  display: flex; gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--accent);
  color: #fff;
}

.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 7px;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.footer-contact-item .icon {
  width: 34px; height: 34px; min-width: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-top: 2px;
}
.footer-contact-item .info span {
  display: block;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.footer-contact-item .info a {
  color: rgba(255,255,255,0.6);
  font-size: 0.83rem;
}
.footer-contact-item .info a:hover { color: var(--gold-light); }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============ PAGE HERO (INNER PAGES) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/activity-5.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  position: relative;
}
.page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  position: relative;
}
.page-hero .breadcrumb-item { font-size: 0.87rem; color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb-item.active { color: var(--gold-light); }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============ ABOUT PAGE ============ */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 2rem;
  color: rgba(255,255,255,0.8);
}
.team-card h5 { font-size: 1rem; margin-bottom: 4px; color: var(--primary); }
.team-card span { font-size: 0.82rem; color: var(--accent); font-weight: 600; }

/* ============ CONTACT PAGE ============ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  height: 100%;
}
.contact-icon {
  width: 54px; height: 54px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.35rem;
  margin-bottom: 16px;
  transition: var(--transition);
}
.contact-card:hover .contact-icon {
  background: var(--accent);
  color: #fff;
}
.contact-card h5 { font-size: 1rem; margin-bottom: 8px; color: var(--primary); }
.contact-card p, .contact-card a {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  display: block;
  line-height: 1.7;
}

.form-saho .form-control, .form-saho .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}
.form-saho .form-control:focus, .form-saho .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.12);
}
.form-saho label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

/* ============ GALLERY / ACTIVITIES ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,92,0.7), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 0.85rem; font-weight: 600; }

/* ============ DONATE PAGE ============ */
.donate-amount-btn {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  background: var(--white);
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}
.donate-amount-btn:hover,
.donate-amount-btn.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

/* ============ TIMELINE ============ */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--gold));
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-dot {
  position: absolute;
  left: -26px; top: 4px;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-item h5 { font-size: 0.95rem; margin-bottom: 4px; color: var(--primary); }
.timeline-item p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* ============ LIGHTBOX (simple) ============ */
#lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#lightbox-overlay.open { display: flex; }
#lightbox-overlay img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ============ BACK TO TOP ============ */
#back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  z-index: 999;
}
#back-to-top:hover { background: var(--primary); transform: translateY(-3px); }
#back-to-top.show { display: flex; }

/* ============ MOBILE NAV ============ */
.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); display: block; }

/* ============ AOS OVERRIDES ============ */
[data-aos] { will-change: transform, opacity; }

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .about-text { padding-left: 0; margin-top: 40px; }
  .about-img-badge2 { right: 10px; }
  .nav-link-saho { padding: 12px 16px !important; }
  .nav-link-saho::after { display: none; }
  .hero-stats { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .hero-section { min-height: 80vh; }
  .hero-title { font-size: 2.2rem; }
  .hero-stat { min-width: 50%; }
  .hero-actions { justify-content: center; }
  .hero-content { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
}
@media (max-width: 576px) {
  .hero-stat { min-width: 50%; }
  .top-bar .d-flex { flex-direction: column; gap: 4px; align-items: flex-start; }
}

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0;
  background: var(--primary-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.5s ease;
}
#preloader.done { opacity: 0; pointer-events: none; }
.preloader-logo { width: 80px; animation: preloaderPulse 1.2s ease-in-out infinite; }
.preloader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden; }
.preloader-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--gold)); border-radius: 2px; animation: preloaderLoad 1.5s ease-in-out forwards; }

@keyframes preloaderPulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.7;transform:scale(0.95)} }
@keyframes preloaderLoad { from{width:0} to{width:100%} }

/* ============ COOKIE NOTICE ============ */
.cookie-notice {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 16px 0;
  z-index: 9000;
  font-size: 0.84rem;
  display: none;
  border-top: 3px solid var(--accent);
}
.cookie-notice.show { display: block; }
