/* ==========================================================================
   Arogyasathi Website - Stylesheet
   Amhi Amchya Arogyasathi (AAA)
   Design: Modern healthcare-inspired, fluid, premium
   ========================================================================== */

/* ---------- 1. CSS Custom Properties ---------- */
:root {
    --primary: #1B5E20;
    --primary-light: #2E7D32;
    --primary-dark: #0D3B12;
    --secondary: #0891B2;
    --secondary-light: #22D3EE;
    --accent: #F97316;
    --accent-light: #FB923C;
    --success: #059669;
    --success-light: #10B981;
    --white: #FFFFFF;
    --off-white: #F1F8E9;
    --light: #E8F5E9;
    --gray-100: #DCE5D4;
    --gray-200: #B8C7AD;
    --gray-300: #8A9A7E;
    --gray-400: #5F7052;
    --gray-500: #3D4A34;
    --dark: #1A2412;
    --text-body: #2D3A24;
    --text-heading: #1A2412;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 30px rgba(8,145,178,0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 2. Base Styles ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

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

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; }

/* ---------- 3. Top Bar ---------- */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    z-index: 1050;
    position: relative;
}

.top-bar a {
    color: rgba(255,255,255,0.85);
    margin-right: 20px;
    font-size: 0.82rem;
}
.top-bar a:hover { color: var(--secondary-light); }
.top-bar a i { margin-right: 5px; }

.top-bar-right {
    text-align: right;
}
.top-bar-right a {
    margin: 0 6px;
    font-size: 0.95rem;
}
.top-bar-right a .bi-facebook { color: #1877F2; }
.top-bar-right a .bi-instagram { color: #E4405F; }
.top-bar-right a .bi-youtube { color: #FF0000; }
.top-bar-right a .bi-linkedin { color: #0A66C2; }

/* ---------- 4. Navbar ---------- */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: none;
    transition: var(--transition);
    z-index: 1040;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
    padding: 8px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo {
    height: 42px;
    width: auto;
    transition: var(--transition);
}
.navbar.scrolled .navbar-logo { height: 36px; }

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    line-height: 1.2;
    max-width: 180px;
}

.brand-tagline {
    font-size: 0.72rem;
    color: var(--gray-400);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--gray-500);
    padding: 8px 12px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: rgba(8,145,178,0.06);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px;
    margin-top: 0;
    min-width: 240px;
    animation: dropdownFade 0.25s ease;
}

/* Desktop hover dropdowns */
@media (min-width: 1200px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }
    .nav-item.dropdown > .dropdown-toggle::after {
        transition: transform 0.2s ease;
    }
    .nav-item.dropdown:hover > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--gray-500);
    font-weight: 500;
    transition: var(--transition);
}
.dropdown-item:hover {
    background: rgba(8,145,178,0.08);
    color: var(--primary);
    transform: translateX(4px);
}

/* Donate Button */
.btn-donate {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 9px 18px;
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: 0 4px 15px rgba(249,115,22,0.3);
    transition: var(--transition);
}
.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(249,115,22,0.4);
    color: var(--white) !important;
}
.btn-donate i { margin-right: 4px; }

/* Toggler */
.navbar-toggler {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: none; }

/* ---------- 5. Hero Section ---------- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,59,18,0.85) 0%, rgba(27,94,32,0.7) 50%, rgba(8,145,178,0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 80px 0 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--secondary-light);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--secondary-light), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--secondary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-hero-primary:hover {
    background: var(--secondary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(8,145,178,0.4);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat .stat-number span {
    color: var(--secondary-light);
}

.hero-stat .stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 4px;
}

/* Floating shapes */
.hero-shape {
    position: absolute;
    border-radius: var(--radius-full);
    z-index: 2;
    opacity: 0.08;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--accent);
    bottom: -50px;
    left: 10%;
}

/* ---------- 6. Impact Counter Strip ---------- */
.impact-strip {
    background: var(--white);
    padding: 50px 0;
    position: relative;
}

.impact-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.counter-card {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.counter-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--gray-100);
}

.counter-card:last-child::after { display: none; }

.counter-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 12px;
    transition: var(--transition);
}

.counter-icon.health { background: rgba(5,150,105,0.1); color: var(--success); }
.counter-icon.women { background: rgba(249,115,22,0.1); color: var(--accent); }
.counter-icon.children { background: rgba(8,145,178,0.1); color: var(--secondary); }
.counter-icon.livelihood { background: rgba(27,94,32,0.1); color: var(--primary); }
.counter-icon.disability { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.counter-icon.villages { background: rgba(234,88,12,0.1); color: #EA580C; }

.counter-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1;
    margin-bottom: 4px;
}

.counter-number .suffix {
    font-size: 1.4rem;
    color: var(--secondary);
}

.counter-label {
    font-size: 0.82rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* ---------- 7. Section Styles ---------- */
.section {
    padding: 80px 0;
}

.section-light { background: var(--off-white); }
.section-white { background: var(--white); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.section-title span { color: var(--secondary); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* Wave Dividers */
.wave-divider {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 60px;
    display: block;
}

.wave-divider.top { margin-bottom: -1px; }
.wave-divider.bottom { margin-top: -1px; }

/* ---------- 8. About / Who We Are Section ---------- */
.about-section .about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-section .about-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-badge .badge-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge .badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-sm);
    background: rgba(8,145,178,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
}

.about-feature h5 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 0.82rem;
    color: var(--gray-400);
    margin: 0;
    line-height: 1.5;
}

/* ---------- 9. Program Cards ---------- */
.program-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    height: 100%;
    border: 1px solid var(--gray-100);
    position: relative;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.program-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.program-card:hover .program-card-icon { transform: scale(1.1); }

.program-card-body {
    padding: 28px;
}

.program-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.program-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 16px;
    line-height: 1.7;
}

.program-card .card-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.program-card .card-link:hover { gap: 10px; }
.program-card .card-link i { font-size: 0.8rem; transition: var(--transition); }

/* Program icon colors */
.icon-health { background: rgba(5,150,105,0.1); color: var(--success); }
.icon-child { background: rgba(8,145,178,0.1); color: var(--secondary); }
.icon-livelihood { background: rgba(27,94,32,0.1); color: var(--primary); }
.icon-women { background: rgba(249,115,22,0.1); color: var(--accent); }
.icon-pwd { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.icon-ayurveda { background: rgba(16,185,129,0.1); color: #10B981; }

/* ---------- 10. Approach / Strategy Section ---------- */
.approach-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
}

.approach-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(8,145,178,0.2);
}

.approach-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(8,145,178,0.1), rgba(27,94,32,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
    color: var(--secondary);
}

.approach-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.approach-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
}

/* ---------- 11. SDG Section ---------- */
.sdg-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.sdg-item {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.sdg-item:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.sdg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- 12. Presence / Map Section ---------- */
.presence-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.presence-section .section-label { color: var(--secondary-light); }
.presence-section .section-label::before,
.presence-section .section-label::after { background: var(--secondary-light); }
.presence-section .section-title { color: var(--white); }
.presence-section .section-subtitle { color: rgba(255,255,255,0.7); }

.state-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
    height: 100%;
}

.state-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.state-card h5 {
    color: var(--secondary-light);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.state-card h5 i { font-size: 1.1rem; }

.state-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.7;
}

/* ---------- 13. Partners Section ---------- */
.partners-section { background: var(--off-white); }

.partner-logo-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    border: 2px solid var(--light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin: 6px 0;
}

.partner-logo-card:hover {
    box-shadow: 0 8px 30px rgba(27,94,32,0.15);
    border-color: var(--primary-light);
    background: #FFFFFF;
}

.partner-logo-card img {
    max-height: 70px;
    max-width: 140px;
    object-fit: contain;
    transition: var(--transition);
}

.partner-logo-card:hover img {
    transform: scale(1.08);
}

.partners-swiper {
    padding: 10px 0 40px;
    overflow: visible;
}

.partners-swiper .swiper-wrapper {
    padding: 4px 0;
}

.partners-swiper .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
}

.partners-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary);
}

/* ---------- 14. CTA Section ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-full);
    top: -100px;
    right: -50px;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 28px;
}

.btn-cta {
    background: var(--white);
    color: var(--primary);
    padding: 14px 36px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--primary);
}

/* ---------- 15. Page Header ---------- */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(8,145,178,0.1);
    border-radius: var(--radius-full);
    top: -200px;
    right: -100px;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
}

.breadcrumb {
    margin-bottom: 16px;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
}

.breadcrumb-item.active {
    color: var(--secondary-light);
    font-size: 0.88rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ---------- 16. Award Cards ---------- */
.award-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.award-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(8,145,178,0.2);
}

.award-year {
    display: inline-flex;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 12px;
}

.award-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.award-card .award-field {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.award-card .award-level {
    font-size: 0.78rem;
    color: var(--gray-300);
}

/* ---------- 17. Team / Committee Cards ---------- */
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.team-card-image {
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-image .placeholder-icon {
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
}

.team-card-body {
    padding: 24px;
    text-align: center;
}

.team-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card .team-role {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
}

/* ---------- 18. Publication / Document Cards ---------- */
.doc-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    height: 100%;
}

.doc-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(8,145,178,0.2);
}

.doc-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius-sm);
    background: rgba(239,68,68,0.08);
    color: #EF4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.doc-info h5 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.doc-info p {
    font-size: 0.8rem;
    color: var(--gray-300);
    margin: 0;
}

.doc-download {
    margin-left: auto;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-full);
    background: rgba(8,145,178,0.08);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.doc-card:hover .doc-download {
    background: var(--secondary);
    color: var(--white);
}

/* ---------- 18aa. PDF Thumbnail Grid ---------- */
.pub-thumb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.pub-thumb-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.pub-cover-shell {
    background: #eef2f7;
    border-radius: 6px;
    border: 1px solid #dde3ec;
    overflow: hidden;
    aspect-ratio: 210 / 297;   /* fixed A4 portrait ratio — all cells same height */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
}

.pub-thumb-item:hover .pub-cover-shell {
    box-shadow: 0 10px 28px rgba(0,0,0,0.16);
    transform: translateY(-4px);
}

.pdf-cover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: none;
}

.pdf-cover.loaded {
    display: block;
}

.pub-cover-placeholder {
    font-size: 2.8rem;
    color: #EF4444;
    opacity: 0.45;
    pointer-events: none;
    position: absolute;
}

.pdf-cover.loaded ~ .pub-cover-placeholder {
    display: none;
}

.pub-cover-shell .pdf-loading-spinner {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0,0,0,0.1);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.pub-cover-shell.done .pdf-loading-spinner {
    display: none;
}

@keyframes spin { to { transform: rotate(360deg); } }

.pub-thumb-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    margin: 8px 0 0;
    line-height: 1.35;
    color: var(--text-primary);
}

/* ---------- 18a. Impact Bullet Lists ---------- */
.impact-bullets {
    margin: 8px 0 0 0;
    padding: 0;
    list-style: none;
}

.impact-bullets li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.impact-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary);
    flex-shrink: 0;
}

/* ---------- 18b. Compact Publication List ---------- */
.pub-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pub-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    background: var(--white);
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.pub-list-item:hover {
    border-color: rgba(8,145,178,0.3);
    background: rgba(8,145,178,0.04);
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.pub-list-icon {
    color: #EF4444;
    font-size: 1.2rem;
    flex-shrink: 0;
    line-height: 1;
}

.pub-list-text {
    flex: 1;
    min-width: 0;
}

.pub-list-title {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pub-list-sub {
    font-size: 0.78rem;
    color: var(--gray-300);
    margin-top: 1px;
}

.pub-list-action {
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ---------- 18c. Award Card Icon ---------- */
.award-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

/* ---------- 19. Impact Story Cards ---------- */
.story-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.story-card-image {
    height: 200px;
    overflow: hidden;
}

.story-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.story-card:hover .story-card-image img {
    transform: scale(1.05);
}

.story-card-body {
    padding: 20px;
}

.story-category {
    display: inline-block;
    background: rgba(8,145,178,0.08);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.story-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.story-card p {
    font-size: 0.88rem;
    color: var(--gray-400);
    margin-bottom: 12px;
}

/* ---------- 20. Video Cards ---------- */
.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.video-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.video-card .ratio {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ---------- 21. Contact Form ---------- */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-floating .form-control,
.form-floating .form-select {
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(8,145,178,0.1);
}

.btn-submit {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    padding: 14px 36px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8,145,178,0.3);
    color: var(--white);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary-light);
}

.contact-info-item h5 {
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin: 0;
}

.contact-info-item a:hover { color: var(--secondary-light); }

/* ---------- 22. Donate Section ---------- */
.donate-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    height: 100%;
}

.donate-card h4 {
    font-size: 1.15rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.donate-card h4 i {
    color: var(--secondary);
}

.donate-detail {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}

.donate-detail:last-child { border-bottom: none; }
.donate-detail .label { color: var(--gray-400); font-weight: 500; }
.donate-detail .value { font-weight: 700; color: var(--text-heading); }

/* ---------- 23. Gallery ---------- */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}

.gallery-filter .filter-btn {
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid var(--gray-200);
    background: transparent;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter .filter-btn.active,
.gallery-filter .filter-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.7), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
}

/* ---------- 24. Timeline ---------- */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    padding-right: 50px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--secondary);
    border: 4px solid var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -9px;
    top: 10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -9px;
    top: 10px;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    padding: 3px 12px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    margin-bottom: 8px;
}

.timeline-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
}

/* ---------- 25. Tabs ---------- */
.custom-tabs {
    border-bottom: 2px solid var(--gray-100);
    gap: 4px;
    flex-wrap: wrap;
}

.custom-tabs .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-400);
    padding: 12px 20px;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    margin-bottom: -2px;
    transition: var(--transition);
}

.custom-tabs .nav-link.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
    background: transparent;
}

.custom-tabs .nav-link:hover:not(.active) {
    color: var(--primary);
    border-bottom-color: var(--gray-200);
}

/* ---------- 26. Footer ---------- */
.site-footer {
    position: relative;
}

.footer-wave {
    color: var(--primary-dark);
    line-height: 0;
    margin-bottom: -1px;
}

.footer-main {
    background: var(--primary-dark);
    padding: 60px 0 40px;
    color: rgba(255,255,255,0.85);
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-logo {
    height: 90px;
    width: auto;
    filter: brightness(10) saturate(0);
    opacity: 0.9;
}

.footer-about {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--white);
    transform: translateY(-2px);
}
.footer-social a:hover .bi-facebook { color: #1877F2; }
.footer-social a:hover .bi-instagram { color: #E4405F; }
.footer-social a:hover .bi-youtube { color: #FF0000; }
.footer-social a:hover .bi-linkedin { color: #0A66C2; }
.footer-social a:hover { background: rgba(255,255,255,0.15); }

.footer-title {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    font-size: 0.65rem;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-light);
    padding-left: 4px;
}

.footer-links a:hover::before { opacity: 1; }

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.footer-contact li i {
    color: var(--secondary-light);
    margin-top: 3px;
    min-width: 16px;
}

.footer-contact li a {
    color: rgba(255,255,255,0.6);
}
.footer-contact li a:hover { color: var(--secondary-light); }

.btn-donate-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-donate-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.3);
    color: var(--white);
}

.footer-bottom {
    background: rgba(0,0,0,0.4);
    padding: 18px 0;
}

.footer-bottom .copyright,
.footer-bottom .footer-legal {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.95);
}

/* ---------- 27. Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--secondary);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(8,145,178,0.3);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ---------- 28. Utility Classes ---------- */
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-gradient-primary { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.bg-gradient-secondary { background: linear-gradient(135deg, var(--secondary), var(--primary)); }

.btn-outline-primary-custom {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
}

.btn-outline-primary-custom:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Stat highlight cards */
.stat-highlight {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-highlight:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.stat-highlight .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 6px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.stat-highlight .stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 600;
}

/* ---------- 29. Responsive ---------- */

/* Tablet & Below */
@media (max-width: 991.98px) {
    .top-bar { display: none; }

    .navbar { padding: 10px 0; }
    .navbar-logo { height: 38px; }
    .brand-name { font-size: 0.95rem; }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 10px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
    }

    .navbar-nav .nav-link { padding: 10px 16px !important; }
    .navbar-nav .nav-link.active::after { display: none; }

    .dropdown-menu {
        box-shadow: none;
        padding: 0 0 0 16px;
        border-left: 2px solid var(--gray-100);
    }

    .hero { min-height: 70vh; }
    .hero h1 { font-size: 2.5rem; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .hero-stat { flex: 0 0 auto; }

    .section-title { font-size: 2rem; }

    .timeline::before { left: 20px; }
    .timeline-item { width: 100%; padding-left: 50px !important; padding-right: 0 !important; text-align: left !important; margin-left: 0 !important; }
    .timeline-item .timeline-dot { left: 11px !important; right: auto !important; }
}

/* Mobile */
@media (max-width: 575.98px) {
    .hero { min-height: 60vh; }
    .hero h1 { font-size: 2rem; }
    .hero-text { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons a { text-align: center; }
    .hero-stats { gap: 16px; }
    .hero-stat .stat-number { font-size: 1.8rem; }

    .section { padding: 50px 0; }
    .section-title { font-size: 1.7rem; }
    .section-header { margin-bottom: 32px; }

    .counter-number { font-size: 1.8rem; }
    .counter-card::after { display: none; }

    .about-features { grid-template-columns: 1fr; }
    .about-badge { width: 100px; height: 100px; bottom: -10px; right: -10px; }
    .about-badge .badge-number { font-size: 1.6rem; }

    .page-header { padding: 80px 0 40px; }
    .page-header h1 { font-size: 2rem; }

    .contact-form-wrapper { padding: 24px; }
    .contact-info-card { padding: 24px; }
    .donate-card { padding: 24px; }

    .footer-main { padding: 40px 0 24px; }
}

/* Large screens */
@media (min-width: 1200px) {
    .hero h1 { font-size: 3.8rem; }
    .section-title { font-size: 2.8rem; }
}

/* ---------- 30. Print Styles ---------- */
@media print {
    .top-bar, .navbar, .footer-wave, .site-footer,
    .back-to-top, .btn-donate, .hero-shape { display: none !important; }
    body { font-size: 12pt; color: #000; }
    .hero { min-height: auto; padding: 40px 0; }
    .section { padding: 30px 0; }
}
