/* ============================================
   ETOSA - Main Stylesheet
   Colors: Green #1a7a2e, Yellow #f5c518, White #fff
   Font: Playfair Display + Nunito
============================================ */

:root {
    --green: #1a7a2e;
    --green-dark: #105a1f;
    --green-light: #2da048;
    --yellow: #f5c518;
    --yellow-dark: #d4a800;
    --yellow-light: #ffe566;
    --white: #ffffff;
    --black: #111111;
    --gray: #f8f9fa;
    --gray-dark: #6c757d;
    --text-dark: #1a1a1a;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito', sans-serif;
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--green); }

/* ====== ANNOUNCEMENT BAR ====== */
.announcement-bar {
    background: var(--green-dark);
    color: white;
    padding: 6px 0;
    font-size: 12.5px;
    overflow: hidden;
    border-bottom: 2px solid var(--yellow);
    line-height: 1.4;
}
.announce-label {
    background: var(--yellow);
    color: var(--black);
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 3px;
    white-space: nowrap;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}
.ticker-wrap { overflow: hidden; flex: 1; min-width: 0; }
.ticker {
    display: inline-flex;
    gap: 80px;
    animation: ticker 35s linear infinite;
    white-space: nowrap;
    will-change: transform;
}
.ticker:hover { animation-play-state: paused; cursor: default; }
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-item { display: inline-block; color: rgba(255,255,255,0.9); }
.ticker-item .badge { font-size: 9px; vertical-align: middle; }
/* Close button for announcement bar */
.ann-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 0 4px;
    font-size: 14px;
    flex-shrink: 0;
    line-height: 1;
    transition: color .2s;
}
.ann-close:hover { color: var(--yellow); }

/* ====== TOP BAR ====== */
.top-bar {
    background: #0d4d1c;
    color: rgba(255,255,255,0.8);
    padding: 7px 0;
    font-size: 13px;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    margin-left: 6px;
    font-size: 12px;
    transition: var(--transition);
}
.social-icon:hover { background: var(--yellow); color: var(--black); }

/* ====== NAVBAR ====== */
.main-navbar {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
}
.main-navbar.scrolled {
    padding: 6px 0;
    background: rgba(16, 90, 31, 0.97);
    backdrop-filter: blur(10px);
}
.brand-logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2px;
}
.logo-e { color: var(--white); }
.logo-t { color: var(--yellow); }
.logo-o { color: var(--white); }
.logo-s { color: var(--yellow); }
.logo-a { color: var(--white); }
.brand-name { font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: white; line-height: 1.1; }
.brand-sub { font-size: 10px; color: var(--yellow); letter-spacing: 2px; text-transform: uppercase; }

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px !important;
    border-radius: 6px;
    position: relative;
    transition: var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--yellow) !important; background: rgba(255,255,255,0.1); }

.btn-donate {
    background: var(--yellow) !important;
    color: var(--black) !important;
    border-radius: 25px !important;
    padding: 8px 20px !important;
    font-weight: 700 !important;
}
.btn-donate::after { display: none; }
.btn-donate:hover { background: var(--yellow-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(245,197,24,0.4); }

.dropdown-menu {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 8px;
}
.dropdown-item { border-radius: 6px; padding: 8px 14px; font-weight: 600; font-size: 14px; }
.dropdown-item:hover { background: #e8f5e9; color: var(--green); }

/* ====== HERO ====== */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, #2e7d32 100%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(245,197,24,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.04) 0%, transparent 40%),
        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");
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    background: rgba(245,197,24,0.2);
    border: 1px solid rgba(245,197,24,0.5);
    color: var(--yellow);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-title .yellow { color: var(--yellow); }
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    max-width: 560px;
    margin-bottom: 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-hero-primary {
    background: var(--yellow);
    color: var(--black);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(245,197,24,0.3);
}
.btn-hero-primary:hover { background: var(--yellow-dark); color: var(--black); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,197,24,0.4); }
.btn-hero-outline {
    background: transparent;
    color: white;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); border-color: white; color: white; }

.hero-stats { display: flex; gap: 36px; margin-top: 50px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15); }
.stat-item .stat-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--yellow); line-height: 1; }
.stat-item .stat-label { font-size: 13px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

.hero-image-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-shield-wrap {
    position: relative;
    z-index: 2;
}
.hero-shield-outer {
    width: 340px; height: 380px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: floatShield 5s ease-in-out infinite;
}
@keyframes floatShield { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.hero-shield-inner {
    text-align: center;
    color: white;
}
.shield-logo-text {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--yellow), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.shield-motto { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.hero-circle-1, .hero-circle-2 {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(245,197,24,0.2);
}
.hero-circle-1 { width: 420px; height: 420px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: spin 25s linear infinite; }
.hero-circle-2 { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: spin 40s linear infinite reverse; }
@keyframes spin { 0% { transform: translate(-50%,-50%) rotate(0deg); } 100% { transform: translate(-50%,-50%) rotate(360deg); } }

/* ====== SECTION STYLES ====== */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
    display: inline-block;
    background: rgba(26,122,46,0.1);
    color: var(--green);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--yellow));
    border-radius: 2px;
    margin: 14px auto 0;
}
.section-sub { font-size: 1rem; color: var(--gray-dark); max-width: 580px; margin: 0 auto; }

/* ====== CARDS ====== */
.card-etosa {
  border: 1.5px solid #f0f0f0;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  }
  .card-etosa:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); border-color: var(--green); }
  .card-etosa .card-img-wrap { overflow: hidden; height: 220px; flex-shrink: 0; }
  .card-etosa .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
  .card-etosa:hover .card-img-wrap img { transform: scale(1.06); }
  .card-etosa .card-body { flex: 1; display: flex; flex-direction: column; }
  .card-etosa .card-category { font-size: 11px; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: 1px; }
  .card-etosa .card-title { font-family: var(--font-heading); font-size: 16px; font-weight: 800; color: #111; margin: 10px 0; line-height: 1.3; }
  .card-etosa .card-meta { font-size: 12px; color: #aaa; margin-top: auto; }
.card-category {
    display: inline-block;
    background: var(--green);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.card-meta { font-size: 13px; color: var(--gray-dark); }
.card-meta i { color: var(--green); }
.card-title a:hover { color: var(--green); }

/* ====== BUTTONS ====== */
.btn-etosa {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: white;
    border: none;
    padding: 11px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}
.btn-etosa:hover { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,122,46,0.3); }
.btn-etosa-yellow {
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    color: var(--black);
    border: none;
    padding: 11px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}
.btn-etosa-yellow:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,197,24,0.4); color: var(--black); }
.btn-etosa-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
    padding: 10px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}
.btn-etosa-outline:hover { background: var(--green); color: white; }

/* ====== NEWS SECTION ====== */
.news-featured {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    height: 500px;
}
.news-featured img { width: 100%; height: 100%; object-fit: cover; }
.news-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
}

/* ====== EVENTS ====== */
.event-card {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-date-block {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: white;
    text-align: center;
    padding: 20px 16px;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.event-date-block .day { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; line-height: 1; }
.event-date-block .month { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }

/* ====== STATS BAND ====== */
.stats-band {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats-band::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.04'%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");
}
.stat-box { text-align: center; color: white; position: relative; }
.stat-box .number { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: var(--yellow); display: block; }
.stat-box .label { font-size: 14px; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.stat-box .icon { font-size: 2rem; color: rgba(255,255,255,0.2); margin-bottom: 8px; }

/* ====== ACHIEVEMENTS ====== */
.achievement-card {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    transition: var(--transition);
    border-left: 4px solid var(--green);
    background: white;
}
.achievement-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-left-color: var(--yellow); }
.achievement-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--green), var(--green-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4rem; margin-bottom: 16px; }

/* ====== PROJECTS ====== */
.project-card { border: none; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: var(--transition); }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-status {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.project-status.ongoing { background: rgba(26,122,46,0.12); color: var(--green); }
.project-status.completed { background: rgba(0,100,200,0.12); color: #0064c8; }
.project-status.planned { background: rgba(245,197,24,0.2); color: #a07800; }
.progress-etosa { height: 8px; border-radius: 4px; background: #e9ecef; }
.progress-etosa .progress-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--green), var(--yellow)); transition: width 1s ease; }

/* ====== GALLERY ====== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,122,46,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
    font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); }

/* ====== MEMBERSHIP FORM ====== */
.membership-form-section { background: var(--gray); }
.form-control, .form-select {
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 11px 15px;
    font-size: 14px;
    transition: var(--transition);
    font-family: var(--font-body);
}
.form-control:focus, .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,122,46,0.12); }
.form-label { font-weight: 600; font-size: 14px; color: #333; }

/* ====== DONATION SECTION ====== */
.donation-section { background: linear-gradient(135deg, #f0faf2 0%, #fff9e6 100%); }
.amount-btn {
    border: 2px solid var(--green);
    color: var(--green);
    background: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.amount-btn.active, .amount-btn:hover { background: var(--green); color: white; }
.donation-highlight {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: var(--radius);
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}
.donation-highlight::before { content: ''; position: absolute; right: -30px; top: -30px; width: 180px; height: 180px; background: rgba(245,197,24,0.15); border-radius: 50%; }

/* ====== PAGE HERO ====== */
.page-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    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='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-heading); color: white; font-size: 2.8rem; font-weight: 800; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.7); font-size: 14px; }
.page-hero .breadcrumb-item.active { color: var(--yellow); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ====== ABOUT ====== */
.about-img-block { position: relative; }
.about-img-main { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.about-badge-float {
    position: absolute;
    bottom: 30px; right: -20px;
    background: var(--yellow);
    color: var(--black);
    padding: 16px 22px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    font-family: var(--font-heading);
}
.about-badge-float .year { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.about-badge-float .text { font-size: 12px; font-weight: 700; text-transform: uppercase; }
.value-item { display: flex; gap: 16px; margin-bottom: 24px; }
.value-icon { width: 48px; height: 48px; border-radius: 10px; background: linear-gradient(135deg, var(--green), var(--green-light)); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }

/* ====== LIGHTBOX ====== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 25px; color: white; font-size: 2rem; cursor: pointer; }

/* ====== MODAL ====== */
.modal-header-green { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: white; border-radius: 12px 12px 0 0; }
.modal-header-green .btn-close { filter: invert(1); }

/* ====== FOOTER ====== */
.main-footer { background: #0a2e11; color: rgba(255,255,255,0.75); }
.footer-top { padding: 70px 0 50px; }
.footer-logo-text { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; background: linear-gradient(135deg, var(--yellow), #fff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px; }
.footer-tagline { color: var(--yellow); font-style: italic; font-size: 14px; margin-bottom: 14px; }
.footer-about { font-size: 14px; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: var(--transition); }
.footer-socials a:hover { background: var(--yellow); color: var(--black); }
.footer-heading { color: var(--yellow); font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--yellow); border-radius: 2px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); padding-left: 5px; }
.footer-links a i { margin-right: 7px; font-size: 11px; color: var(--green-light); }
.footer-news { list-style: none; padding: 0; margin: 0; }
.footer-news li { margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 14px; }
.footer-news a { color: rgba(255,255,255,0.8); font-size: 14px; display: block; margin-bottom: 4px; transition: var(--transition); }
.footer-news a:hover { color: var(--yellow); }
.footer-news small { color: rgba(255,255,255,0.4); font-size: 12px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px; }
.footer-contact li i { color: var(--yellow); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 18px 0; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--yellow); }

/* ====== BACK TO TOP ====== */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(26,122,46,0.4);
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1000;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-3px); }

/* ====== ALERTS ====== */
.alert { border: none; border-radius: var(--radius); border-left: 4px solid; padding: 14px 18px; }
.alert-success { border-left-color: var(--green); background: #e8f5e9; color: #1b5e20; }
.alert-danger { border-left-color: #c62828; background: #ffebee; color: #c62828; }
.alert-info { border-left-color: #0277bd; background: #e1f5fe; color: #0277bd; }
.alert-warning { border-left-color: #e65100; background: #fff3e0; color: #e65100; }

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-image-block { margin-top: 50px; }
    .about-badge-float { right: 10px; }
}
@media (max-width: 767px) {
    .hero-shield-outer { width: 260px; height: 290px; }
    .shield-logo-text { font-size: 40px; }
    .page-hero h1 { font-size: 2rem; }
    .news-featured { height: 300px; }
    .event-card { flex-direction: column; }
    .event-date-block { padding: 12px; min-width: unset; flex-direction: row; gap: 6px; }
    .footer-top { padding: 40px 0 30px; }
}

/* Utility */
.text-green { color: var(--green) !important; }
.text-yellow { color: var(--yellow) !important; }
.bg-green { background: var(--green) !important; }
.bg-yellow { background: var(--yellow) !important; }
.border-green { border-color: var(--green) !important; }
img { max-width: 100%; }
.img-placeholder { background: linear-gradient(135deg, #e8f5e9, #f0faf2); display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 3rem; }

/* ============================================================
   HOMEPAGE REDESIGN STYLES
   ============================================================ */

/* ---- HERO ---- */
.hp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a2e11;
}
.hp-hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #071e0b 0%, #0f4a1b 40%, #1a7a2e 75%, #0d5c1f 100%);
}
.hp-hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(245,197,24,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,255,255,.04) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.hp-deco {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,197,24,.12);
  pointer-events: none;
}
.hp-deco--1 { width:500px;height:500px;right:-120px;top:-100px;border-width:2px;animation:hpSpin 30s linear infinite; }
.hp-deco--2 { width:300px;height:300px;right:60px;top:80px;animation:hpSpin 20s linear infinite reverse; }
.hp-deco--3 { width:160px;height:160px;right:150px;top:180px;background:rgba(245,197,24,.06); }
@keyframes hpSpin { to { transform:rotate(360deg); } }

.hp-hero__inner { position:relative;z-index:2;padding:120px 0 100px; }

.hp-hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245,197,24,.12);
  border: 1px solid rgba(245,197,24,.3);
  color: #f5c518;
  padding: 6px 18px; border-radius: 30px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hp-hero__tag-dot {
  width:8px;height:8px;border-radius:50%;
  background:#f5c518;
  box-shadow:0 0 0 3px rgba(245,197,24,.3);
  animation: tagPulse 2s ease-in-out infinite;
}
@keyframes tagPulse { 0%,100%{box-shadow:0 0 0 3px rgba(245,197,24,.3);}50%{box-shadow:0 0 0 6px rgba(245,197,24,.1);} }

.hp-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; color: #fff;
  line-height: 1.15; margin-bottom: 20px;
}
.hp-hero__title--accent {
  color: #f5c518;
  text-shadow: 0 0 40px rgba(245,197,24,.3);
}
.hp-hero__sub { font-size:1.05rem;color:rgba(255,255,255,.75);max-width:520px;margin-bottom:36px;line-height:1.8; }

.hp-hero__btns { display:flex;flex-wrap:wrap;gap:14px;margin-bottom:48px; }

.hp-hero__stats {
  display: flex; flex-wrap: wrap; gap: 0;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 20px 28px;
  width: fit-content;
}
.hp-hero__stat { text-align:center;padding:0 20px; }
.hp-hero__stat-num { display:block;font-family:var(--font-heading);font-size:1.9rem;font-weight:900;color:#f5c518;line-height:1; }
.hp-hero__stat-lbl { font-size:11px;color:rgba(255,255,255,.6);text-transform:uppercase;letter-spacing:1.5px;font-weight:700; }
.hp-hero__stat-div { width:1px;background:rgba(255,255,255,.15);margin:4px 0; }

/* Shield card */
.hp-cards { position:relative;display:flex;align-items:center;justify-content:center;min-height:480px; }
.hp-shield-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  padding: 44px 40px;
  text-align: center;
  position: relative;
  width: 320px;
  box-shadow: 0 24px 80px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.15);
  animation: floatCard 5s ease-in-out infinite;
}
.hp-shield-card__glow {
  position:absolute;inset:-2px;border-radius:26px;
  background:linear-gradient(135deg,rgba(245,197,24,.3),transparent,rgba(26,122,46,.3));
  z-index:-1;filter:blur(16px);
}
.hp-shield-card__inner { position:relative;z-index:1; }
@keyframes floatCard { 0%,100%{transform:translateY(0);}50%{transform:translateY(-14px);} }
.hp-shield-logo { font-family:var(--font-heading);font-size:3.4rem;font-weight:900;background:linear-gradient(135deg,#f5c518,#fff);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:8px; }
.hp-shield-name { font-size:12px;color:rgba(255,255,255,.6);letter-spacing:1px;text-transform:uppercase;line-height:1.5;margin-bottom:20px; }
.hp-shield-motto { background:rgba(245,197,24,.15);border:1px solid rgba(245,197,24,.3);color:#f5c518;padding:10px 20px;border-radius:8px;font-size:13px;font-weight:700;letter-spacing:1px;margin-bottom:20px; }
.hp-shield-badges { display:flex;gap:10px;justify-content:center;flex-wrap:wrap; }
.hp-shield-badges span { background:rgba(255,255,255,.08);color:rgba(255,255,255,.8);padding:5px 14px;border-radius:20px;font-size:11px;font-weight:600; }

/* Float mini cards */
.hp-float-card {
  position:absolute;
  background:#fff;
  border-radius:14px;
  padding:14px 18px;
  display:flex;align-items:center;gap:12px;
  box-shadow:0 12px 40px rgba(0,0,0,.2);
  min-width:160px;
}
.hp-float-card--tl { top:20px;left:-30px; }
.hp-float-card--br { bottom:30px;right:-20px; }
.hp-float-card__icon { font-size:1.6rem;color:#f5c518; }
.hp-float-card__text strong { display:block;font-size:15px;font-weight:800;color:#111; }
.hp-float-card__text span { font-size:12px;color:#888; }

.hp-hero__wave { position:absolute;bottom:0;left:0;right:0;line-height:0; }
.hp-hero__wave svg { width:100%;height:80px; }

/* ---- BUTTONS ---- */
.hp-btn {
  display:inline-flex;align-items:center;gap:9px;
  padding:12px 28px;border-radius:10px;
  font-weight:700;font-size:14px;font-family:var(--font-body);
  cursor:pointer;border:none;transition:all .25s;text-decoration:none;
}
.hp-btn--yellow { background:#f5c518;color:#111;box-shadow:0 4px 20px rgba(245,197,24,.35); }
.hp-btn--yellow:hover { background:#d4a800;color:#111;transform:translateY(-2px);box-shadow:0 8px 28px rgba(245,197,24,.45); }
.hp-btn--green { background:linear-gradient(135deg,#105a1f,#1a7a2e);color:#fff; }
.hp-btn--green:hover { background:linear-gradient(135deg,#0a3d14,#105a1f);color:#fff;transform:translateY(-2px);box-shadow:0 6px 20px rgba(26,122,46,.35); }
.hp-btn--ghost { background:rgba(255,255,255,.12);color:#fff;border:1.5px solid rgba(255,255,255,.35); }
.hp-btn--ghost:hover { background:rgba(255,255,255,.2);color:#fff; }
.hp-btn--ghost-white { background:transparent;color:#fff;border:2px solid rgba(255,255,255,.6); }
.hp-btn--ghost-white:hover { background:rgba(255,255,255,.12);color:#fff; }
.hp-btn--outline-green { background:transparent;color:#1a7a2e;border:2px solid #1a7a2e; }
.hp-btn--outline-green:hover { background:#1a7a2e;color:#fff; }

/* ---- QUICK LINKS BAND ---- */
.hp-band { background:#fff;padding:40px 0;border-bottom:1px solid #f0f0f0;box-shadow:0 4px 20px rgba(0,0,0,.05); }
.hp-band__item {
  display:flex;flex-direction:column;align-items:center;text-align:center;
  padding:22px 12px;border-radius:16px;background:#fff;
  border:1.5px solid #f0f0f0;
  transition:all .25s;text-decoration:none;color:#111;
  box-shadow:0 2px 8px rgba(0,0,0,.04);
}
.hp-band__item:hover { transform:translateY(-5px);box-shadow:0 10px 30px rgba(0,0,0,.1);border-color:#1a7a2e;color:#1a7a2e; }
.hp-band__icon { width:52px;height:52px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:1.3rem;margin-bottom:10px;transition:all .25s; }
.hp-band__item strong { display:block;font-size:14px;font-weight:800;margin-bottom:3px; }
.hp-band__item span { font-size:11px;color:#888; }

/* ---- SECTION COMMONS ---- */
.hp-section { padding:90px 0; }
.hp-section--tinted { background:#f3faf4; }
.hp-section__head { display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:16px;margin-bottom:50px; }
.hp-sec-tag {
  display:inline-block;background:rgba(26,122,46,.1);color:#1a7a2e;
  padding:4px 16px;border-radius:20px;font-size:11px;font-weight:800;
  letter-spacing:2px;text-transform:uppercase;margin-bottom:10px;
  border:1px solid rgba(26,122,46,.2);
}
.hp-sec-title { font-family:var(--font-heading);font-size:clamp(1.7rem,3vw,2.5rem);font-weight:900;color:#111;margin:0; }
.hp-sec-title span { color:#1a7a2e; }

/* ---- ABOUT ---- */
.hp-about { padding:90px 0;background:#fff; }
.hp-about__img-wrap { position:relative;display:flex;align-items:center;justify-content:center;min-height:460px; }
.hp-about__img-bg { position:absolute;bottom:0;left:0;width:85%;height:85%;background:rgba(26,122,46,.08);border-radius:24px; }
.hp-about__img-main {
  position:relative;z-index:2;width:300px;height:340px;
  background:linear-gradient(160deg,#105a1f,#1a7a2e,#2da048);
  border-radius:20px;display:flex;flex-direction:column;align-items:center;justify-content:center;
  box-shadow:0 20px 60px rgba(26,122,46,.3);
}
.hp-about__img-logo { font-family:var(--font-heading);font-size:4rem;font-weight:900;background:linear-gradient(135deg,#f5c518,#fff);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.hp-about__img-since { font-size:12px;color:rgba(255,255,255,.6);letter-spacing:3px;text-transform:uppercase;margin-top:8px; }
.hp-about__badge {
  position:absolute;bottom:20px;right:-10px;z-index:3;
  background:#f5c518;color:#111;padding:16px 20px;border-radius:16px;
  text-align:center;box-shadow:0 8px 30px rgba(245,197,24,.4);
}
.hp-about__badge-num { font-family:var(--font-heading);font-size:2.4rem;font-weight:900;line-height:1; }
.hp-about__badge-num span { font-size:1.6rem; }
.hp-about__badge-lbl { font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:1px;margin-top:3px; }
.hp-about__chip {
  position:absolute;z-index:3;
  background:#fff;border-radius:30px;padding:8px 16px;
  font-size:12px;font-weight:700;color:#1a7a2e;
  box-shadow:0 6px 20px rgba(0,0,0,.1);
  display:flex;align-items:center;gap:6px;
  border:1.5px solid rgba(26,122,46,.15);
}
.hp-about__chip--top { top:30px;right:10px; }
.hp-about__chip--bot { bottom:80px;left:-10px; }
.hp-about__text { font-size:1rem;color:#555;line-height:1.8;margin-bottom:24px; }
.hp-values { display:flex;flex-direction:column;gap:16px;margin:24px 0; }
.hp-value { display:flex;gap:16px;align-items:flex-start; }
.hp-value__icon { width:44px;height:44px;border-radius:12px;background:linear-gradient(135deg,#1a7a2e,#2da048);color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0; }
.hp-value strong { display:block;font-size:15px;font-weight:800;color:#111;margin-bottom:3px; }
.hp-value p { font-size:13px;color:#777;margin:0; }

/* ---- STATS ---- */
.hp-stats { padding:70px 0;position:relative;overflow:hidden; }
.hp-stats__bg { position:absolute;inset:0;background:linear-gradient(135deg,#071e0b 0%,#0f4a1b 50%,#1a7a2e 100%); }
.hp-stat-box { position:relative;padding:30px 20px; }
.hp-stat-box__icon { font-size:2.2rem;color:rgba(245,197,24,.25);margin-bottom:10px; }
.hp-stat-box__num { font-family:var(--font-heading);font-size:3rem;font-weight:900;color:#f5c518;display:inline;line-height:1; }
.hp-stat-box__sfx { font-family:var(--font-heading);font-size:1.8rem;font-weight:900;color:#f5c518;display:inline;margin-left:3px; }
.hp-stat-box__lbl { font-size:13px;color:rgba(255,255,255,.65);text-transform:uppercase;letter-spacing:1.5px;font-weight:700;margin-top:8px; }

/* ---- NEWS ---- */
.hp-news-big {
  display:block;position:relative;height:420px;border-radius:20px;overflow:hidden;
  text-decoration:none;color:#fff;box-shadow:0 8px 30px rgba(0,0,0,.15);
  transition:transform .3s;
}
.hp-news-big:hover { transform:translateY(-4px); }
.hp-news-big img { width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.hp-news-big:hover img { transform:scale(1.04); }
.hp-news-big__placeholder { height:100%;background:linear-gradient(135deg,#1a7a2e,#2da048);display:flex;align-items:center;justify-content:center;font-size:4rem;color:rgba(255,255,255,.2); }
.hp-news-big__overlay { position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.85) 0%,transparent 55%);display:flex;flex-direction:column;justify-content:flex-end;padding:28px; }
.hp-news-big__cat { background:#f5c518;color:#111;padding:3px 12px;border-radius:4px;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:1px;margin-bottom:10px;width:fit-content; }
.hp-news-big__overlay h3 { font-family:var(--font-heading);font-size:1.35rem;font-weight:800;margin-bottom:10px;color:#fff; }
.hp-news-big__meta { font-size:12px;color:rgba(255,255,255,.65); }

.hp-news-card { display:flex;gap:12px;background:#fff;border-radius:14px;overflow:hidden;text-decoration:none;color:#111;box-shadow:0 2px 12px rgba(0,0,0,.07);transition:all .25s;border:1.5px solid #f0f0f0; }
.hp-news-card:hover { transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.1);border-color:#1a7a2e; }
.hp-news-card__img { width:90px;height:90px;flex-shrink:0; }
.hp-news-card__img img { width:100%;height:100%;object-fit:cover; }
.hp-news-card__img--empty { background:#e8f5e9;display:flex;align-items:center;justify-content:center;color:#aaa;font-size:1.3rem; }
.hp-news-card__body { padding:12px 12px 12px 0;display:flex;flex-direction:column;justify-content:center; }
.hp-news-card__cat { font-size:10px;font-weight:800;color:#1a7a2e;text-transform:uppercase;letter-spacing:1px;margin-bottom:5px; }
.hp-news-card__title { font-size:13px;font-weight:800;color:#111;line-height:1.4;margin-bottom:6px; }
.hp-news-card__meta { font-size:11px;color:#aaa; }

/* ---- EVENTS ---- */
.hp-event-card {
  display:flex;background:#fff;border-radius:18px;overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.07);border:1.5px solid #f0f0f0;
  transition:all .25s;
}
.hp-event-card:hover { transform:translateY(-4px);box-shadow:0 12px 36px rgba(0,0,0,.12);border-color:#1a7a2e; }
.hp-event-card__date {
  background:linear-gradient(160deg,#105a1f,#1a7a2e);
  color:#fff;min-width:80px;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:20px 14px;flex-shrink:0;
}
.hp-event-card__day { font-family:var(--font-heading);font-size:2.4rem;font-weight:900;line-height:1; }
.hp-event-card__mon { font-size:11px;text-transform:uppercase;letter-spacing:2px;font-weight:800;margin-top:2px; }
.hp-event-card__yr { font-size:10px;opacity:.7;margin-top:3px; }
.hp-event-card__img { width:100px;flex-shrink:0; }
.hp-event-card__img img { width:100%;height:100%;object-fit:cover; }
.hp-event-card__body { padding:18px 20px;flex:1; }
.hp-event-card__body h5 { font-weight:800;font-size:15px;margin-bottom:6px;color:#111; }
.hp-event-card__body p { font-size:13px;color:#777;margin-bottom:10px;line-height:1.5; }
.hp-event-card__meta { display:flex;flex-wrap:wrap;gap:12px;margin-bottom:10px; }
.hp-event-card__meta span { font-size:12px;color:#666;display:flex;align-items:center;gap:5px; }
.hp-event-card__meta i { color:#1a7a2e; }
.hp-event-card__free { background:rgba(26,122,46,.1);color:#1a7a2e;padding:3px 12px;border-radius:20px;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:1px; }

/* ---- ACHIEVEMENTS ---- */
.hp-ach-card {
  background:#fff;border-radius:18px;padding:26px;
  box-shadow:0 4px 20px rgba(0,0,0,.07);
  border:1.5px solid #f0f0f0;border-left:4px solid #1a7a2e;
  transition:all .25s;height:100%;display:flex;flex-direction:column;
}
.hp-ach-card:hover { transform:translateY(-5px);box-shadow:0 12px 36px rgba(0,0,0,.11);border-left-color:#f5c518; }
.hp-ach-card__top { display:flex;align-items:center;gap:10px;margin-bottom:16px; }
.hp-ach-card__icon { width:46px;height:46px;border-radius:12px;background:linear-gradient(135deg,#f5c518,#d4a800);color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0; }
.hp-ach-card__cat { background:rgba(26,122,46,.1);color:#1a7a2e;padding:3px 12px;border-radius:20px;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:1px; }
.hp-ach-card__yr { margin-left:auto;font-size:12px;color:#aaa;font-weight:700; }
.hp-ach-card h5 { font-weight:800;font-size:15px;color:#111;margin-bottom:8px; }
.hp-ach-card p { font-size:13px;color:#777;line-height:1.6;flex:1; }
.hp-ach-card__member { display:flex;align-items:center;gap:10px;margin-top:16px;padding-top:14px;border-top:1px solid #f0f0f0; }
.hp-ach-card__avatar { width:32px;height:32px;border-radius:50%;background:linear-gradient(135deg,#1a7a2e,#2da048);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:12px;flex-shrink:0; }
.hp-ach-card__member strong { font-size:13px;color:#1a7a2e; }

/* ---- PROJECTS ---- */
.hp-proj-card { background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.07);border:1.5px solid #f0f0f0;transition:all .25s;height:100%; }
.hp-proj-card:hover { transform:translateY(-5px);box-shadow:0 12px 36px rgba(0,0,0,.11); }
.hp-proj-card__img { height:190px;overflow:hidden; }
.hp-proj-card__img img { width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.hp-proj-card:hover .hp-proj-card__img img { transform:scale(1.05); }
.hp-proj-card__img--empty { height:190px;background:linear-gradient(135deg,#e8f5e9,#f0faf2);display:flex;align-items:center;justify-content:center;font-size:3rem;color:rgba(26,122,46,.2); }
.hp-proj-card__body { padding:22px; }
.hp-proj-card__status { display:inline-block;padding:3px 12px;border-radius:20px;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:1px;margin-bottom:10px; }
.hp-proj-card__status.ongoing { background:rgba(26,122,46,.12);color:#1a7a2e; }
.hp-proj-card__status.completed { background:rgba(0,100,200,.1);color:#0064c8; }
.hp-proj-card__status.planned { background:rgba(245,197,24,.2);color:#a07800; }
.hp-proj-card__body h5 { font-weight:800;font-size:15px;color:#111;margin-bottom:8px; }
.hp-proj-card__body p { font-size:13px;color:#777;line-height:1.5;margin-bottom:14px; }
.hp-proj-card__bar-wrap { margin-top:12px; }
.hp-proj-card__bar-labels { display:flex;justify-content:space-between;font-size:12px;margin-bottom:6px; }
.hp-proj-card__bar-labels span { color:#888; }
.hp-proj-card__bar-labels strong { color:#1a7a2e; }
.hp-proj-card__bar { height:8px;background:#f0f0f0;border-radius:4px;overflow:hidden; }
.hp-proj-card__bar-fill { height:100%;border-radius:4px;background:linear-gradient(90deg,#1a7a2e,#f5c518);transition:width 1.2s ease; }
.hp-proj-card__bar-wrap small { font-size:11px;color:#aaa; }

/* ---- GALLERY ---- */
.hp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  border-radius: 16px;
  overflow: hidden;
}
.hp-gallery-grid .hp-gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.hp-gallery-grid .hp-gallery-item:nth-child(5) { grid-column: span 2; }
.hp-gallery-item { position:relative;overflow:hidden;cursor:pointer;border-radius:12px; }
.hp-gallery-item img { width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.hp-gallery-item:hover img { transform:scale(1.08); }
.hp-gallery-item__empty { width:100%;height:100%;background:#e8f5e9;display:flex;align-items:center;justify-content:center;font-size:2rem;color:rgba(26,122,46,.3); }
.hp-gallery-item__ov { position:absolute;inset:0;background:rgba(26,122,46,.6);display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.8rem;opacity:0;transition:opacity .3s; }
.hp-gallery-item:hover .hp-gallery-item__ov { opacity:1; }

/* ---- DONATE SECTION ---- */
.hp-donate { display:flex;min-height:560px;flex-wrap:wrap; }
.hp-donate__left {
  flex:1;min-width:300px;
  background:linear-gradient(160deg,#071e0b 0%,#0f4a1b 50%,#1a7a2e 100%);
  padding:70px 60px;
  position:relative;overflow:hidden;
}
.hp-donate__left::after { content:'';position:absolute;right:-60px;top:-60px;width:280px;height:280px;border-radius:50%;background:rgba(245,197,24,.06);border:1px solid rgba(245,197,24,.1); }
.hp-donate__content { position:relative;z-index:1;max-width:480px; }
.hp-donate__title { font-family:var(--font-heading);font-size:2.2rem;font-weight:900;color:#fff;margin-bottom:16px;line-height:1.2; }
.hp-donate__title span { color:#f5c518; }
.hp-donate__left p { color:rgba(255,255,255,.75);font-size:15px;line-height:1.7;margin-bottom:28px; }
.hp-donate__impact { display:flex;flex-wrap:wrap;gap:12px;margin-bottom:32px; }
.hp-donate__impact-item { background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:10px;padding:12px 16px; }
.hp-donate__impact-item strong { display:block;color:#f5c518;font-size:15px;font-weight:800; }
.hp-donate__impact-item span { font-size:12px;color:rgba(255,255,255,.65); }
.hp-donate__totals { display:flex;gap:36px; }
.hp-donate__big { font-family:var(--font-heading);font-size:2rem;font-weight:900;color:#f5c518;line-height:1; }
.hp-donate__totals span { font-size:12px;color:rgba(255,255,255,.55);text-transform:uppercase;letter-spacing:1px; }

.hp-donate__right { flex:1;min-width:320px;background:#fff;padding:60px 50px;display:flex;align-items:center; }
.hp-donate__form-wrap { width:100%;max-width:460px; }
.hp-donate__form-wrap h4 { font-family:var(--font-heading);font-size:1.5rem;font-weight:800;margin-bottom:24px; }
.hp-amount-btns { display:flex;flex-wrap:wrap;gap:8px;margin-bottom:16px; }
.amount-btn { border:2px solid #1a7a2e;color:#1a7a2e;background:#fff;padding:8px 16px;border-radius:8px;font-weight:800;font-size:13px;cursor:pointer;transition:all .2s;font-family:var(--font-body); }
.amount-btn:hover,.amount-btn.active { background:#1a7a2e;color:#fff; }

/* ---- JOIN CTA ---- */
.hp-join {
  padding:90px 20px;
  background:linear-gradient(135deg,#105a1f 0%,#1a7a2e 50%,#2da048 100%);
  position:relative;overflow:hidden;
}
.hp-join::before { content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E"); }
.hp-join .container { position:relative;z-index:1; }
.hp-join__icon { width:72px;height:72px;background:rgba(245,197,24,.2);border:2px solid rgba(245,197,24,.4);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:2rem;color:#f5c518;margin:0 auto 24px; }
.hp-join h2 { font-family:var(--font-heading);font-size:2.4rem;font-weight:900;color:#fff;margin-bottom:14px; }
.hp-join p { color:rgba(255,255,255,.8);font-size:1rem;max-width:500px;margin:0 auto 32px; }
.hp-join__btns { display:flex;justify-content:center;flex-wrap:wrap;gap:14px; }

/* ---- LIGHTBOX ---- */
.hp-lb { position:fixed;inset:0;background:rgba(0,0,0,.92);z-index:9999;display:none;align-items:center;justify-content:center;padding:20px;flex-direction:column; }
.hp-lb.open { display:flex; }
.hp-lb img { max-width:90vw;max-height:82vh;border-radius:10px;object-fit:contain; }
.hp-lb p { color:rgba(255,255,255,.7);margin-top:14px;font-size:14px;text-align:center; }
.hp-lb__close { position:absolute;top:20px;right:28px;background:none;border:none;color:#fff;font-size:2.4rem;cursor:pointer;line-height:1;opacity:.7;transition:opacity .2s; }
.hp-lb__close:hover { opacity:1; }

/* ---- RESPONSIVE ---- */
@media(max-width:991px){
  .hp-hero__inner { padding:90px 0 80px; }
  .hp-cards { min-height:360px; }
  .hp-shield-card { width:260px;padding:32px 24px; }
  .hp-float-card--tl { top:0;left:0; }
  .hp-float-card--br { bottom:0;right:0; }
  .hp-about__img-wrap { min-height:340px; }
  .hp-about__badge { right:0; }
  .hp-donate__left,.hp-donate__right { padding:50px 30px; }
  .hp-gallery-grid { grid-template-columns:repeat(2,1fr); }
  .hp-gallery-grid .hp-gallery-item:nth-child(1) { grid-column:span 2;grid-row:span 1; }
  .hp-gallery-grid .hp-gallery-item:nth-child(5) { grid-column:span 1; }
}
@media(max-width:767px){
  .hp-hero__stats { padding:16px 20px; }
  .hp-hero__stat { padding:0 12px; }
  .hp-hero__stat-num { font-size:1.4rem; }
  .hp-event-card { flex-direction:column; }
  .hp-event-card__date { flex-direction:row;gap:8px;padding:14px 18px; }
  .hp-event-card__img { width:100%;height:160px; }
  .hp-donate { flex-direction:column; }
  .hp-section__head { flex-direction:column;align-items:flex-start; }
  .hp-gallery-grid { grid-template-columns:repeat(2,1fr);grid-auto-rows:150px; }
}
