:root {
    --primary: #480437;
    --primary-dark: #2d0222;
    --primary-light: #f5eaf3;
    --secondary: #f67a22;
    --secondary-light: #fff3e8;
    --secondary-dark: #d4621a;
    --gold: #e8c44a;
    --white: #ffffff;
    --off-white: #faf8f9;
    --dark: #1a0913;
    --text: #2e1528;
    --muted: #7a5f74;
    --border: #e8d5e4;
    --shadow: 0 8px 40px rgba(72,4,55,0.12);
    --shadow-secondary: 0 8px 32px rgba(246,122,34,0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
#mainNav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(72,4,55,0.09);
    transition: all 0.35s ease;
}
#mainNav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
#mainNav .navbar-brand img {
    height: 44px;
    width: auto;
}
#mainNav .nav-link {
    font-size: 0.87rem; font-weight: 600; color: var(--text) !important;
    padding: 0.4rem 0.9rem !important; border-radius: 6px;
    transition: all 0.25s; letter-spacing: 0.2px;
}
#mainNav .nav-link:hover { color: var(--primary) !important; background: var(--primary-light); }
#mainNav .nav-cta {
    background: var(--primary); color: #fff !important;
    padding: 0.45rem 1.2rem !important; border-radius: 25px;
}
#mainNav .nav-cta:hover { background: var(--secondary); color: #fff !important; }
.navbar-toggler { border-color: var(--primary); }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(72,4,55,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO ===== */
#hero {
    position: relative; height: 100vh; min-height: 620px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
#hero-placeholder {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #1a0913 0%, #480437 55%, #2d0222 100%);
    z-index: 0;
}
#hero-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="75" r="55" fill="rgba(246,122,34,0.06)"/><circle cx="85" cy="25" r="45" fill="rgba(232,196,74,0.05)"/></svg>');
    background-size: cover;
}
#ytPlayer {
    position: absolute; inset: 0; z-index: 1;
    pointer-events: none; overflow: hidden;
}
#ytPlayer iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 177.78vh; height: 100vh;
    min-width: 100%; min-height: 56.25vw;
    transform: translate(-50%, -50%);
}
#hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(135deg, rgba(26,9,19,0.88) 0%, rgba(72,4,55,0.65) 100%);
}
#hero-content {
    position: relative; z-index: 3;
    text-align: center; color: #fff;
    padding: 0 1rem;
}
.hero-badge {
    display: inline-block;
    background: rgba(246,122,34,0.18);
    border: 1.5px solid var(--secondary);
    color: var(--secondary);
    padding: 0.35rem 1.2rem;
    border-radius: 25px; font-size: 0.78rem;
    font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 1.4rem;
    animation: fadeDown 0.8s ease both;
}
#hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700; line-height: 1.08;
    margin-bottom: 1.2rem;
    animation: fadeUp 1s ease 0.2s both;
}
#hero-content h1 span { color: var(--gold); }
#hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 640px; margin: 0 auto 2.2rem;
    opacity: 0.9; font-weight: 300; line-height: 1.75;
    animation: fadeUp 1s ease 0.4s both;
}
.hero-btns {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    animation: fadeUp 1s ease 0.6s both;
}
.btn-hero-primary {
    background: var(--secondary); color: #fff;
    padding: 0.9rem 2.4rem; border-radius: 50px;
    font-weight: 700; font-size: 1rem;
    border: none; cursor: pointer; transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(246,122,34,0.4);
    text-decoration: none; display: inline-block;
}
.btn-hero-primary:hover { transform: translateY(-3px); background: var(--gold); color: var(--dark); text-decoration: none; }
.btn-hero-secondary {
    background: transparent; color: #fff;
    padding: 0.9rem 2.4rem; border-radius: 50px;
    font-weight: 600; border: 2px solid rgba(255,255,255,0.65);
    cursor: pointer; transition: all 0.3s; text-decoration: none;
    display: inline-block; font-size: 1rem;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.12); color: #fff; text-decoration: none; }

/* Hero stats */
.hero-stats {
    position: absolute; bottom: 4.5rem; width: 100%;
    display: flex; justify-content: center; gap: 3rem;
    z-index: 3; flex-wrap: wrap;
    animation: fadeUp 1s ease 0.8s both;
}
.hero-stat { text-align: center; color: #fff; }
.hero-stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.hero-stat span { font-size: 0.73rem; letter-spacing: 1.5px; opacity: 0.82; text-transform: uppercase; }
.hero-scroll {
    position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
    z-index: 3; color: rgba(255,255,255,0.6); text-align: center;
    animation: bounce 2s infinite;
}

/* ===== SECTIONS ===== */
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.section-label {
    display: inline-block;
    font-size: 0.73rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--secondary); margin-bottom: 0.7rem;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700; color: var(--dark);
    line-height: 1.12; margin-bottom: 1rem;
}
.section-title span { color: var(--primary); }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 600px; line-height: 1.75; }

/* ===== BREAKERS ===== */
.breaker-wave { height: 80px; overflow: hidden; line-height: 0; }
.breaker-wave svg { display: block; width: 100%; }

/* ===== FOCUS AREAS ===== */
#focus { background: var(--off-white); }
.focus-card {
    background: #fff; border-radius: 20px;
    padding: 2.5rem 2rem; text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(.175,.885,.32,1.275);
    border-top: 4px solid transparent;
    position: relative; overflow: hidden; height: 100%;
}
.focus-card:hover { transform: translateY(-10px); box-shadow: 0 24px 64px rgba(72,4,55,0.16); }
.focus-card.primary { border-top-color: var(--primary); }
.focus-card.secondary { border-top-color: var(--secondary); }
.focus-card.gold { border-top-color: var(--gold); }
.focus-icon {
    width: 76px; height: 76px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.4rem; font-size: 2rem;
}
.focus-icon.primary { background: var(--primary-light); color: var(--primary); }
.focus-icon.secondary { background: var(--secondary-light); color: var(--secondary); }
.focus-icon.gold { background: #fef9e7; color: #b8922a; }
.focus-card h4 { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.35rem; color: var(--dark); margin-bottom: 0.7rem; }
.focus-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* ===== ABOUT ===== */
#about { background: #fff; }
.about-img-wrap { position: relative; border-radius: 24px; box-shadow: 0 20px 60px rgba(72,4,55,0.18); overflow: hidden; }
.about-img-wrap img { width: 100%; display: block; border-radius: 24px; }
.about-badge {
    position: absolute; bottom: 2rem; left: -1.2rem;
    background: var(--secondary); color: #fff;
    padding: 1rem 1.5rem; border-radius: 16px;
    box-shadow: var(--shadow-secondary);
}
.about-badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; }
.about-badge span { font-size: 0.78rem; opacity: 0.9; }
.value-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--primary-light); color: var(--primary);
    padding: 0.4rem 1rem; border-radius: 20px;
    font-size: 0.82rem; font-weight: 600; margin: 0.25rem;
}
.founding-note {
    background: linear-gradient(135deg, var(--primary-light), #fff);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 1.1rem 1.4rem;
    margin: 1.2rem 0;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
}
.founding-note strong { color: var(--primary); }

/* ===== FOUNDERS ===== */
#founders { background: var(--off-white); }
.founder-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}
.founder-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(72,4,55,0.18); }
.founder-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light), #e8d5e4);
}
.founder-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    transition: transform 0.5s;
}
.founder-card:hover .founder-img-wrap img { transform: scale(1.05); }
.founder-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), #e8d5e4);
}
.founder-placeholder i { font-size: 5rem; color: var(--primary); opacity: 0.35; }
.founder-ribbon {
    position: absolute; top: 1.2rem; right: -0.5rem;
    background: var(--primary); color: #fff;
    padding: 0.3rem 1rem 0.3rem 0.8rem;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; border-radius: 4px 0 0 4px;
}
.founder-body { padding: 1.6rem 1.8rem 2rem; }
.founder-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem;
}
.founder-body .founder-role {
    font-size: 0.78rem; font-weight: 700; color: var(--secondary);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.9rem;
}
.founder-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin: 0; }
.founder-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.founder-social a {
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-light); color: var(--primary); font-size: 0.85rem;
    text-decoration: none; transition: all 0.25s;
}
.founder-social a:hover { background: var(--primary); color: #fff; }


/* Founder modals */
.founder-bio-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.45rem 1.1rem;
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}
.founder-bio-btn:hover { background: var(--primary); color: #fff; }

.founder-modal-content-bs {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    position: relative;
}
.founder-modal-close-bs {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    z-index: 2;
    font-size: 1.5rem;
    line-height: 1;
    background: transparent;
    border: none;
    opacity: 0.6;
}
.founder-modal-close-bs:hover { opacity: 1; }
.founder-modal-inner {
    display: flex;
}
.founder-modal-img-wrap {
    flex: 0 0 240px;
    min-height: 320px;
    position: relative;
    background: linear-gradient(135deg, var(--primary-light), #e8d5e4);
    overflow: hidden;
}
.founder-modal-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    display: block;
}
.founder-modal-body {
    flex: 1;
    padding: 2rem 2rem 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.founder-modal-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 700;
    color: var(--dark); margin-bottom: 0.3rem;
}
.founder-modal-body p {
    font-size: 0.9rem; color: var(--muted);
    line-height: 1.75; margin: 0.9rem 0 0;
}
.modal-open .modal{
    backdrop-filter: blur(8px);
    background: rgba(0,0,0,0.25);
}

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
    max-width: 950px;
    }
}

@media (max-width: 600px) {
    .founder-modal-inner { flex-direction: column; }
    .founder-modal-img-wrap { flex: none; height: 220px; min-height: unset; }
    .founder-modal-body { padding: 1.4rem; }
}

/* ===== PARTNERS ===== */
#partners { background: #fff; }
.partner-logo-wrap {
    display: flex; align-items: center; justify-content: center;
    height: 90px;
    padding: 1rem 1.5rem;
    background: var(--off-white);
    border-radius: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.partner-logo-wrap:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.partner-logo-wrap img { max-height: 52px; max-width: 100%; object-fit: contain; filter: grayscale(40%); transition: filter 0.3s; }
.partner-logo-wrap:hover img { filter: grayscale(0%); }
.partner-name-badge {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; gap: 0.4rem;
}
.partner-name-badge .flag { font-size: 1.5rem; }
.partner-name-badge span { font-size: 0.8rem; font-weight: 700; color: var(--primary); line-height: 1.3; }

/* ===== PROJECTS ===== */
#projects { background: var(--off-white); }
.project-tabs .nav-pills .nav-link {
    border-radius: 25px; padding: 0.55rem 1.5rem;
    font-weight: 600; font-size: 0.87rem;
    color: var(--muted); background: #fff;
    margin: 0.25rem; border: 2px solid transparent;
    transition: all 0.25s;
}
.project-tabs .nav-pills .nav-link.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.project-tabs .nav-pills .nav-link:hover:not(.active) { border-color: var(--primary); color: var(--primary); }

/* Project Cards */
.project-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    box-shadow: var(--shadow); transition: all 0.35s;
    height: 100%; display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 20px 55px rgba(72,4,55,0.18); }
.project-card-img { height: 220px; overflow: hidden; position: relative; }
.project-card-img .swiper { height: 220px; }
.project-card-img .swiper-slide img { width: 100%; height: 220px; object-fit: cover; }
.project-card-img > img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover .project-card-img > img { transform: scale(1.08); }
.project-tag {
    position: absolute; top: 1rem; left: 1rem; z-index: 5;
    padding: 0.3rem 0.85rem; border-radius: 20px;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.tag-past { background: var(--primary); color: #fff; }
.tag-ongoing { background: var(--gold); color: var(--dark); }
.tag-upcoming { background: var(--secondary); color: #fff; }
.project-body { padding: 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.project-body h5 { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.15rem; color: var(--dark); margin-bottom: 0.5rem; }
.project-body p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; flex: 1; }
.project-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.8rem; }
.project-meta span { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 0.3rem; }
.btn-project {
    margin-top: 1rem; background: var(--primary-light); color: var(--primary);
    border: none; border-radius: 20px; padding: 0.45rem 1.2rem;
    font-size: 0.83rem; font-weight: 600; cursor: pointer;
    transition: all 0.25s; text-decoration: none; display: inline-block;
}
.btn-project:hover { background: var(--primary); color: #fff; text-decoration: none; }

/* ===== PROJECT VIDEOS ===== */
.project-video-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  height: 100%;
}
.project-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(72,4,55,0.15);
}
.project-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a0913;
  overflow: hidden;
}
.project-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-video-body {
  padding: 1.4rem 1.6rem 1.8rem;
}
.project-video-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.project-video-body h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.project-video-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Swiper nav in cards */
.card-swiper .swiper-button-next,
.card-swiper .swiper-button-prev {
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
}
.card-swiper .swiper-button-next::after,
.card-swiper .swiper-button-prev::after { font-size: 0.75rem; color: var(--primary); font-weight: 900; }
.card-swiper .swiper-pagination-bullet-active { background: var(--secondary); }

/* Copyright watermark */
.img-copyright {
    position: absolute; bottom: 0.4rem; right: 0.6rem;
    font-size: 0.6rem; color: rgba(255,255,255,0.75);
    background: rgba(0,0,0,0.35);
    padding: 0.15rem 0.5rem; border-radius: 10px;
    z-index: 5; pointer-events: none;
}

/* ===== VOLUNTEER SECTION ===== */
#volunteer { background: linear-gradient(135deg, #1a0913 0%, var(--primary) 100%); color: #fff; position: relative; overflow: hidden; }
#volunteer::before { content: ''; position: absolute; top: -80px; right: -80px; width: 350px; height: 350px; border-radius: 50%; background: rgba(246,122,34,0.08); }
#volunteer::after { content: ''; position: absolute; bottom: -80px; left: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(232,196,74,0.06); }
.volunteer-feature {
    display: flex; gap: 1rem; align-items: flex-start;
    background: rgba(255,255,255,0.07); border-radius: 16px;
    padding: 1.2rem 1.4rem; margin-bottom: 1rem;
    backdrop-filter: blur(6px); transition: all 0.3s;
}
.volunteer-feature:hover { background: rgba(255,255,255,0.13); transform: translateX(6px); }
.volunteer-feature .icon { font-size: 1.6rem; flex-shrink: 0; }
.volunteer-feature h6 { font-weight: 700; margin-bottom: 0.2rem; color: var(--gold); }
.volunteer-feature p { font-size: 0.87rem; opacity: 0.82; margin: 0; }
.vol-form { background: rgba(255,255,255,0.97); border-radius: 24px; padding: 2.5rem; color: var(--text); }
.vol-form h4 { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.6rem; color: var(--dark); margin-bottom: 1.5rem; }
.form-control { border-radius: 10px; border: 2px solid #e8d5e4; padding: 0.7rem 1rem; font-size: 0.92rem; transition: border-color 0.25s; height: auto; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(72,4,55,0.10); outline: none; }
.btn-submit { background: var(--primary); color: #fff; border: none; border-radius: 50px; padding: 0.85rem 2.5rem; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.3s; width: 100%; }
.btn-submit:hover { background: var(--secondary); transform: translateY(-2px); }

/* ===== SPONSORSHIP DOWNLOADS ===== */
.sponsorship-downloads {
  background: #fdf6fb;
  border: 1.5px solid #e8d5e4;
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.2rem;
}
.sponsorship-downloads-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.sponsorship-downloads-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.sponsorship-dl-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  background: #fff;
  border: 1.5px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
}
.sponsorship-dl-btn:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}
.sponsorship-dl-btn i { font-size: 0.85rem; }

/* ===== IMPACT ===== */
#impact { background: #fff; }
.stat-block {
    text-align: center; padding: 2rem;
    border-radius: 20px; background: var(--off-white);
    transition: all 0.35s;
}
.stat-block:hover { transform: translateY(-6px); background: var(--primary); color: #fff; }
.stat-block:hover .stat-num { color: var(--gold); }
.stat-block:hover .stat-label { color: rgba(255,255,255,0.8); }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.84rem; color: var(--muted); font-weight: 600; margin-top: 0.5rem; letter-spacing: 0.5px; }
.testimonial-card {
    background: var(--off-white); border-radius: 20px; padding: 2rem;
    border-left: 5px solid var(--secondary); position: relative;
    transition: all 0.3s; height: 100%;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testimonial-card.alt { border-left-color: var(--primary); }
.testimonial-card.alt2 { border-left-color: var(--gold); }
.testimonial-card blockquote { font-size: 0.94rem; color: var(--text); line-height: 1.8; font-style: italic; margin: 0 0 1.2rem; }
.testimonial-card .cite-wrap { display: flex; gap: 0.8rem; align-items: center; }
.testimonial-card .cite-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.testimonial-card cite { font-size: 0.82rem; font-weight: 700; color: var(--primary); font-style: normal; display: block; }
.testimonial-card .cite-title { font-size: 0.75rem; color: var(--muted); }

/* ===== GALLERY ===== */
#gallery { background: var(--off-white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}
.gallery-item {
    border-radius: 16px; overflow: hidden;
    position: relative; cursor: pointer; aspect-ratio: 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,9,19,0.88) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.35s;
    display: flex; align-items: flex-end; padding: 0.8rem;
    color: #fff; font-size: 0.8rem; font-weight: 600;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-copyright {
    position: absolute; bottom: 0.3rem; right: 0.5rem;
    font-size: 0.58rem; color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.38);
    padding: 0.12rem 0.45rem; border-radius: 8px;
    z-index: 5; pointer-events: none;
}
.gallery-item:nth-child(7) { grid-column: span 2; aspect-ratio: 2/1; }

.btn-view-all-gallery {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-view-all-gallery:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(72,4,55,0.2);
}

/* ===== GET INVOLVED ===== */
#getinvolved { background: #fff; }
.involve-card {
    border-radius: 20px; overflow: hidden;
    padding: 2.5rem 2rem; text-align: center;
    transition: all 0.35s; height: 100%;
}
.involve-card.v1 { background: var(--primary-light); }
.involve-card.v2 { background: var(--secondary-light); }
.involve-card.v3 { background: #fef9e7; }
.involve-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.involve-icon { font-size: 2.8rem; margin-bottom: 1rem; }
.involve-card h4 { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.4rem; color: var(--dark); margin-bottom: 0.7rem; }
.involve-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.btn-involve {
    margin-top: 1.5rem; padding: 0.65rem 2rem; border-radius: 50px;
    font-weight: 700; font-size: 0.88rem; border: none; cursor: pointer;
    transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-involve.primary { background: var(--primary); color: #fff; }
.btn-involve.secondary { background: var(--secondary); color: #fff; }
.btn-involve.gold { background: var(--gold); color: var(--dark); }
.btn-involve:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); text-decoration: none; }

/* ===== CONTACT ===== */
#contact { background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%); }
.contact-box { background: #fff; border-radius: 24px; padding: 3rem; box-shadow: var(--shadow); }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--primary-light); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-item h6 { font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
.contact-info-item p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.contact-map { border-radius: 20px; overflow: hidden; height: 220px; }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ===== DATA PROTECTION ===== */
#data-protection { background: var(--off-white); }
.policy-box {
    background: #fff; border-radius: 20px; padding: 2.5rem;
    box-shadow: var(--shadow); border-top: 4px solid var(--primary);
}
.policy-box h5 { font-family: 'Cormorant Garamond', serif; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; font-size: 1.15rem; }
.policy-box p, .policy-box li { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }
.policy-box ul { padding-left: 1.2rem; margin-top: 0.5rem; }

/* ===== FOOTER ===== */
#footer {
    background: var(--dark);
    color: rgba(255,255,255,0.78);
    padding: 4rem 0 2rem;
}
#footer .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem; font-weight: 700;
    color: #fff; margin-bottom: 0.5rem;
    display: block;
}
#footer .footer-brand img { height: 38px; width: auto; }
#footer p { font-size: 0.87rem; line-height: 1.7; }
#footer h6 { color: #fff; font-weight: 700; margin-bottom: 1.2rem; letter-spacing: 1.5px; text-transform: uppercase; font-size: 0.75rem; }
#footer ul { list-style: none; padding: 0; }
#footer ul li { margin-bottom: 0.55rem; }
#footer ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.86rem; transition: all 0.25s; }
#footer ul li a:hover { color: var(--gold); padding-left: 5px; }
.social-icons { display: flex; gap: 0.75rem; margin-top: 1.2rem; flex-wrap: wrap; }
.social-icon {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: all 0.3s; cursor: pointer; text-decoration: none;
}
.social-icon.fb { background: #1877f2; color: #fff; }
.social-icon.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.social-icon.yt { background: #ff0000; color: #fff; }
.social-icon.li { background: #0077b5; color: #fff; }
.social-icon.wa { background: #25d366; color: #fff; }
.social-icon:hover { transform: translateY(-5px) scale(1.15); box-shadow: 0 8px 20px rgba(0,0,0,0.25); text-decoration: none; }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 2.5rem 0 1.5rem; }
.footer-bottom { font-size: 0.78rem; color: rgba(255,255,255,0.38); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: all 0.75s cubic-bezier(.19,1,.22,1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.22s; }
.animate-delay-3 { transition-delay: 0.34s; }
.animate-delay-4 { transition-delay: 0.46s; }

/* ===== MODALS ===== */
.modal-content { border-radius: 20px; border: none; overflow: hidden; }
.modal-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border: none; padding: 1.5rem 2rem; }
.modal-header .close { color: #fff; opacity: 0.8; font-size: 1.5rem; }
.modal-body { padding: 2rem; }
.modal-img { width: 100%; border-radius: 12px; margin-bottom: 1.2rem; }
.modal-project-tag { display: inline-block; padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.modal-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.modal-meta-item { background: var(--off-white); border-radius: 10px; padding: 0.4rem 0.8rem; font-size: 0.8rem; color: var(--text); display: flex; align-items: center; gap: 0.4rem; }
.modal-meta-item i { color: var(--primary); }
.modal-swiper { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 1.2rem; }
.modal-swiper .swiper-slide img { width: 100%; height: 240px; object-fit: cover; }
.modal-swiper .swiper-button-next::after,
.modal-swiper .swiper-button-prev::after { font-size: 1rem; color: #fff; font-weight: 900; }

/* Misc */
.sticky-sidebar { position: sticky; top: 90px; }
.btn-primary-vc { background: var(--primary); color: #fff; border-radius: 25px; padding: 0.7rem 2rem; font-weight: 700; border: none; transition: all 0.3s; }
.btn-primary-vc:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-secondary-vc { background: var(--secondary); color: #fff; border-radius: 25px; padding: 0.7rem 2rem; font-weight: 700; border: none; transition: all 0.3s; }
.btn-secondary-vc:hover { background: var(--secondary-dark); color: #fff; transform: translateY(-2px); }
.text-primary-vc { color: var(--primary) !important; }
.text-secondary-vc { color: var(--secondary) !important; }


/* Lightbox */
#lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.93); z-index:9000; align-items:center; justify-content:center; flex-direction:column; }

@media (max-width: 768px) {
    .hero-stats { bottom: 5rem; gap: 1.5rem; }
    .hero-stat strong { font-size: 1.6rem; }
    .vol-form { padding: 1.8rem; }
    .contact-box { padding: 1.8rem; }
    .gallery-item:nth-child(7) { grid-column: span 1; aspect-ratio: 1; }
    .about-badge { left: 0; }
}
@media (max-width: 768px) {
  #hero {
    height: auto;
    min-height: 100vh;
    flex-direction: column;      /* stack content + stats instead of side-by-side */
    padding: 7rem 1.25rem 2.5rem;
  }
  /*.hero-badge{*/
  /*  display: none;*/
  /*}*/
  .btn-hero-secondary, .btn-hero-primary{
    padding: 0.6rem 2rem;
    border-radius: 40px;    
    font-size: .8rem;
  }
  #hero-content {
    position: relative;
    width: 100%;
    padding: 0;                  /* padding now lives on #hero */
  }

  .hero-stats {
    position: relative;          /* was: absolute */
    bottom: auto;
    width: 100%;
    margin-top: 2.5rem;
    justify-content: center;
    gap: 1.2rem 1.5rem;
  }

  .hero-stat strong { font-size: 1.6rem; }

  .hero-scroll { display: none; }

  .vol-form { padding: 1.8rem; }
  .contact-box { padding: 1.8rem; }
  .gallery-item:nth-child(7) { grid-column: span 1; aspect-ratio: 1; }
  .about-badge { left: 0; }
}
.form-success-msg {
  background: #eaf7f0;
  border: 1.5px solid #2ecc71;
  color: #1a7a4a;
  border-radius: 10px;
  padding: 0.8rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.form-error-msg {
  background: #fdf0f0;
  border: 1.5px solid #e74c3c;
  color: #a32d2d;
  border-radius: 10px;
  padding: 0.8rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}