
:root {
  --gold: #C9A84C;
  --gold-light: #E4C97A;
  --gold-dark: #9A7A2E;
  --earth: #2E1F0F;
  --earth-mid: #4A3018;
  --cream: #FAF6EE;
  --sage: #5A7A5A;
  --sage-light: #8AAD8A;
  --rust: #B55A3A;
  --charcoal: #1A1A1A;
  --text-muted: #6B6B6B;
  --border: rgba(201,168,76,0.25);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ─────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── TYPOGRAPHY ────────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; }
.serif-italic { font-family: 'Playfair Display', serif; font-style: italic; }

/* ── NAVBAR ────────────────────────────────────────── */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
  background: #fff !important;
}
#mainNav.scrolled {
  background:white;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-brand-icon {
  width: 80px; height: 80px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white;
  flex-shrink: 0;
}
.nav-brand-text {
  line-height: 1;
}
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--earth);
  letter-spacing: 0.02em;
  display: block;
}
.nav-brand-tagline {
  font-size: 0.62rem;
  color: var(--gold-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.navbar-nav .nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--earth);
  padding: 0.4rem 1rem;
  position: relative;
  transition: color 0.3s;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 1rem; right: 1rem;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.navbar-nav .nav-link:hover { color: var(--gold-dark); }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }
.btn-nav-donate {
  background: var(--gold);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border-radius: 0;
  border: none;
  transition: all 0.3s;
}
.btn-nav-donate:hover {
  background: var(--gold-dark);
  color: white;
  transform: translateY(-1px);
}
.navbar-toggler { border: 1px solid var(--gold); color: var(--gold); }

/* ── HERO ──────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--earth);
}
.hero-bg-image {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(46,31,15,0.88) 0%, rgba(46,31,15,0.6) 50%, rgba(90,122,90,0.55) 100%),
    url('https://images.unsplash.com/photo-1509099836639-18ba1795216d?w=1800&auto=format&fit=crop') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-grain {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.07'/%3E%3C/svg%3E");
  opacity: 0.5; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold-light);
  display: inline-block;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-cta-wrap {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.btn-gold {
  background: var(--gold);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 0;
  transition: all 0.35s;
  text-decoration: none;
  display: inline-block;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--earth);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}
.btn-outline-cream {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 0;
  transition: all 0.35s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-cream:hover {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: white;
}
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(201,168,76,0.1);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 1.5rem 0;
}
.hero-stat {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  right: 40px;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 0.5rem;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── SECTION BASE ──────────────────────────────────── */
section { padding: 6rem 0; }
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--earth);
  line-height: 1.15;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.gold-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}
.text-muted-custom {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.85;
}

/* ── MARQUEE BAND ──────────────────────────────────── */
.marquee-band {
  background: var(--gold);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* ── ABOUT ─────────────────────────────────────────── */
#about { background: var(--cream); }
.about-image-wrap {
  position: relative;
}
.about-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.about-accent-img {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--cream);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-frame {
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  right: 2rem; bottom: 2rem;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.experience-badge {
  position: absolute;
  top: 1.5rem; left: -1.5rem;
  background: var(--gold);
  color: white;
  padding: 1.2rem 1.5rem;
  text-align: center;
}
.experience-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.experience-badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.value-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white;
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--earth);
  margin: 0.25rem;
  font-weight: 500;
}
.value-pill i { color: var(--gold); font-size: 0.8rem; }

/* ── PROGRAMS ──────────────────────────────────────── */
#programs { background: var(--earth); }
#programs .section-title { color: white; }
#programs .section-eyebrow { color: var(--gold-light); }
#programs .section-eyebrow::before { background: var(--gold-light); }
.program-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2.5rem;
  transition: all 0.4s ease;
  height: 100%;
  cursor: default;
}
.program-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.program-card:hover { border-color: rgba(201,168,76,0.6); transform: translateY(-4px); }
.program-card:hover::before { opacity: 1; }
.program-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white;
  margin-bottom: 1.5rem;
}
.program-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  pointer-events: none;
}
.program-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.75rem;
}
.program-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.program-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.program-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.25rem 0.7rem;
  text-transform: uppercase;
}

/* ── IMPACT NUMBERS ────────────────────────────────── */
#impact {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#impact::before {
  content: 'IMPACT';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  color: rgba(201,168,76,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
}
.impact-num-card {
  text-align: center;
  padding: 2.5rem 1rem;
}
.impact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
  display: block;
}
.impact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.impact-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ── FOUNDER ───────────────────────────────────────── */
#founder {
  background: white;
  position: relative;
  overflow: hidden;
}
.founder-bg-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(201,168,76,0.04) 30px,
      rgba(201,168,76,0.04) 31px
    );
  pointer-events: none;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.founder-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--gold);
  line-height: 0.6;
  display: block;
  margin-bottom: 1rem;
}
.founder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--earth);
  line-height: 1.6;
}
.founder-signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-dark);
}
.founder-role {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── GET INVOLVED ──────────────────────────────────── */
#involved { background: var(--cream); }
.involve-card {
  background: white;
  border: 1px solid var(--border);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.involve-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.involve-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.involve-card:hover::after { transform: scaleX(1); }
.involve-icon {
  width: 72px; height: 72px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  transition: all 0.4s;
}
.involve-card:hover .involve-icon {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}
.involve-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--earth);
  margin-bottom: 0.75rem;
}
.involve-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.btn-gold-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: white;
}

/* ── DONATE ────────────────────────────────────────── */
#donate {
  background: var(--earth);
  position: relative;
  overflow: hidden;
}
.donate-bg-art {
  position: absolute;
  top: -10%; right: -5%;
  width: 55%;
  height: 120%;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.15), transparent 70%),
    radial-gradient(ellipse at 30% 70%, rgba(90,122,90,0.1), transparent 70%);
  pointer-events: none;
}
#donate .section-title { color: white; }
#donate .section-eyebrow { color: var(--gold-light); }
#donate .section-eyebrow::before { background: var(--gold-light); }
.donate-area-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: all 0.3s;
  cursor: pointer;
}
.donate-area-card:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.5);
}
.donate-area-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.donate-area-text h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.15rem;
}
.donate-area-text p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.mpesa-box {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 2rem;
  text-align: center;
}
.mpesa-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.mpesa-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}

/* ── CONTACT ───────────────────────────────────────── */
#contact { background: var(--cream); }
.contact-card {
  background: white;
  border: 1px solid var(--border);
  padding: 2.5rem;
  height: 100%;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-info-val {
  font-size: 0.95rem;
  color: var(--earth);
  font-weight: 500;
}
.form-control-custom {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--earth);
  outline: none;
  transition: border-color 0.3s;
  margin-bottom: 1.5rem;
}
.form-control-custom::placeholder { color: rgba(107,107,107,0.5); }
.form-control-custom:focus { border-color: var(--gold); }
textarea.form-control-custom { resize: none; min-height: 100px; }

/* ── FOOTER ────────────────────────────────────────── */
#footer {
  background: var(--charcoal);
  padding: 4rem 0 2rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 0.25rem;
}
.footer-slogan {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-link {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.footer-link:hover { color: white; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  margin-right: 0.4rem;
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  margin-top: 3rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ── WHATSAPP FAB ──────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: white;
  text-decoration: none;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

/* ── ANIMATED ENTRANCE ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── MOBILE ────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .about-accent-img { display: none; }
  .about-frame { display: none; }
  .experience-badge { left: 0; top: auto; bottom: 1rem; }
  .scroll-indicator { display: none; }
  .hero-stats .col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

@media(max-width:576px){
  #mainNav{
    /* width: 90%; */
    margin-left: 0px;
  }
  .nav-brand-logo img{
    height: 60px;
    width: auto;
  }
}

/* ── COUNTER ANIMATION ─────────────────────────────── */
.count-up { transition: all 0.1s; }

.nav-brand-logo img{
  height: 80px;
  width: auto;
}