/* ============================================
   GIVELIFE – MAIN STYLESHEET
   Primary:   #8d9b47
   Secondary: #e9e7d5
   ============================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #386113;
    --primary-dark: #2a4a0e;
    --primary-light: #518c1c;
    --secondary: #402717;
    --secondary-dark: #2f1d11;
    --white: #ffffff;
    --dark: #1f2937;
    --dark2: #111827;
    --gray: #6b7280;
    --gray-light: #f5f5f0;
    --text: #333;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);
    --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
    --font: 'Manrope', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- TYPOGRAPHY HELPERS ---------- */
.section-pre {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .6rem;
}

.section-pre.light {
    color: var(--secondary);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title.light {
    color: var(--white);
}

/* ========================================================
   BUTTONS
   ======================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn i {
    font-size: .85rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(141, 155, 71, .35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: rgba(56, 97, 19, .4);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================================
   NAVIGATION
   ======================================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgb(255, 255, 255);
}

.navbar {
    background: rgba(255, 255, 255, 0.0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: .5rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(141, 155, 71, .15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    padding: .2rem 0;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: .2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: .5rem .75rem;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link .fa-chevron-down {
    font-size: .65rem;
}

.navbar.scrolled .nav-link {
    color: var(--dark);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(141, 155, 71, .08);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid rgba(141, 155, 71, .15);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: .5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: .6rem 1.2rem;
    font-size: .87rem;
    color: var(--dark);
    transition: var(--transition);
}

.dropdown li a:hover {
    background: var(--gray-light);
    color: var(--primary);
    padding-left: 1.5rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--primary);
}

/* ========================================================
   HERO
   ======================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Advanced Mesh Gradient Background */
    background: radial-gradient(at 0% 0%, rgba(255, 255, 255, 1) 0px, transparent 50%),
        radial-gradient(at 50% 100%, rgba(245, 245, 240, 1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(230, 235, 225, 0.8) 0px, transparent 50%);
    background-color: var(--white);
    animation: gradientShift 15s ease infinite alternate;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 100%;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* ── Premium Glowing Orbs ── */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 97, 19, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: pulseOrb 12s ease-in-out infinite alternate;
}

.hero-shape-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(64, 39, 23, 0.12) 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    animation: pulseOrb 15s ease-in-out infinite alternate-reverse;
}

.hero-shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 184, 96, 0.2) 0%, transparent 70%);
    top: 30%;
    left: 20%;
    animation: floatOrb 20s ease-in-out infinite;
}

@keyframes pulseOrb {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2) translate(-30px, 30px);
        opacity: 0.8;
    }
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(40px, -50px);
    }

    66% {
        transform: translate(-30px, 20px);
    }
}

/* ── Random Floating Animated Shapes ── */
.hgeo {
    position: absolute;
    background: linear-gradient(135deg, rgba(56, 97, 19, 0.4), rgba(56, 97, 19, 0.1));
    z-index: 1;
    opacity: 0.6;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Rounded Square */
.hgeo-1 {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    top: 20%;
    left: 10%;
    animation: shapeFloat1 15s ease-in-out infinite;
}

/* Diamond / Rotated Square */
.hgeo-2 {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(168, 184, 96, 0.5), rgba(168, 184, 96, 0.1));
    transform: rotate(45deg);
    top: 60%;
    left: 20%;
    animation: shapeFloat2 12s ease-in-out infinite alternate;
}

/* Tall Rounded Rectangle */
.hgeo-3 {
    width: 30px;
    height: 80px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(64, 39, 23, 0.3), rgba(64, 39, 23, 0.1));
    top: 70%;
    right: 15%;
    animation: shapeFloat3 18s ease-in-out infinite reverse;
}

/* Pentagon Polygon */
.hgeo-4 {
    width: 55px;
    height: 55px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    background: linear-gradient(135deg, rgba(56, 97, 19, 0.3), rgba(255, 255, 255, 0.5));
    border: none;
    bottom: 30%;
    left: 35%;
    animation: shapeFloat1 14s ease-in-out infinite;
}

/* Triangle Polygon */
.hgeo-5 {
    width: 50px;
    height: 50px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(135deg, rgba(168, 184, 96, 0.4), transparent);
    border: none;
    top: 15%;
    right: 25%;
    animation: shapeFloat2 16s ease-in-out infinite reverse;
}

/* Hexagon Polygon */
.hgeo-6 {
    width: 40px;
    height: 45px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, rgba(64, 39, 23, 0.2), rgba(255, 255, 255, 0.4));
    border: none;
    bottom: 15%;
    right: 10%;
    animation: shapeFloat3 13s ease-in-out infinite;
}

@keyframes shapeFloat1 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(30px, -40px) rotate(90deg) scale(1.1);
    }

    100% {
        transform: translate(0, 0) rotate(180deg) scale(1);
    }
}

@keyframes shapeFloat2 {
    0% {
        transform: translate(0, 0) rotate(45deg) scale(1.1);
    }

    50% {
        transform: translate(-40px, 30px) rotate(135deg) scale(0.9);
    }

    100% {
        transform: translate(0, 0) rotate(225deg) scale(1.1);
    }
}

@keyframes shapeFloat3 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(0.9);
    }

    50% {
        transform: translate(25px, 25px) rotate(-90deg) scale(1.15);
    }

    100% {
        transform: translate(0, 0) rotate(-180deg) scale(0.9);
    }
}


/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: float-up var(--dur, 8s) var(--delay, 0s) infinite ease-in;
}

@keyframes float-up {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: .6;
    }

    90% {
        opacity: .3;
    }

    100% {
        transform: translateY(-100vh) scale(1.5);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8rem 1rem 4rem;
    max-width: 860px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(56, 97, 19, .08);
    border: 1px solid rgba(56, 97, 19, .2);
    color: var(--primary);
    padding: .4rem 1.1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 6vw, 4rem);
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.hero-highlight {
    color: var(--primary-light);
    position: relative;
}

.hero-sub {
    color: var(--text);
    font-size: clamp(1rem, 2vw, 1.15rem);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: var(--gray);
    font-size: .75rem;
    letter-spacing: .1em;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gray), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(.5);
    }
}

/* ── Hero Stats Strip ── */
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, .08);
    padding-top: 2rem;
    width: 100%;
    max-width: 860px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    padding: .8rem 1.4rem;
    border-right: 1px solid rgba(0, 0, 0, .08);
    flex: 1;
    min-width: 100px;
}

.hero-stat-item:last-child {
    border-right: none;
}

.hero-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(56, 97, 19, .1);
    border: 1px solid rgba(56, 97, 19, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--primary);
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.hero-stat-label {
    font-size: .65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray);
}

@media (max-width: 640px) {
    .hero-stats {
        gap: 0;
    }

    .hero-stat-item {
        min-width: 80px;
        padding: .6rem .8rem;
    }

    .hero-stat-number {
        font-size: 1.2rem;
    }
}


/* ========================================================
   STATS
   ======================================================== */
.stats-section {
    background: var(--gray-light);
    padding: 5rem 1rem;
}

.stats-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(141, 155, 71, .08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(141, 155, 71, .2);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, rgba(141, 155, 71, .15), rgba(141, 155, 71, .05));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: var(--primary);
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-bottom: .4rem;
    font-family: var(--font);
}

.stat-label {
    font-size: .82rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: .02em;
}

/* ========================================================
   PENDING WISHES
   ======================================================== */
.pending-section {
    background: var(--gray-light);
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    border-top: 0px solid rgba(0, 0, 0, 0.05);
}

.pending-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23386113' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pending-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pending-desc {
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: .95rem;
}

.pending-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wish-card {
    background: var(--white);
    backdrop-filter: none;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 1.2rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.wish-card:hover {
    background: var(--white);
    transform: translateX(6px);
    border-color: rgba(56, 97, 19, .3);
    box-shadow: var(--shadow-lg);
}

.wish-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.wish-icon.surgery {
    background: rgba(56, 97, 19, .1);
    color: var(--primary);
}

.wish-icon.wheelchair {
    background: rgba(56, 97, 19, .1);
    color: var(--primary);
}

.wish-icon.scholarship {
    background: rgba(56, 97, 19, .1);
    color: var(--primary);
}

.wish-icon.others {
    background: rgba(56, 97, 19, .1);
    color: var(--primary);
}

.wish-info {
    flex: 1;
}

.wish-info h3 {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .15rem;
}

.wish-info p {
    color: var(--gray);
    font-size: .8rem;
}

.wish-count {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    min-width: 40px;
    text-align: right;
}

/* ========================================================
   FOUNDER LETTER
   ======================================================== */
.founder-section {
    padding: 6rem 1rem;
    background: var(--white);
}

.founder-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-photo-wrap {
    flex-shrink: 0;
}

/* Unused elements kept for compat */
.founder-photo-bg,
.founder-photo-card {
    display: contents;
}

.founder-photo {
    width: 100%;

    object-fit: cover;
    object-position: center center;
    display: block;

}


.founder-letter p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.8;
    font-size: .95rem;
}

.founder-letter p strong {
    color: var(--primary-dark);
}

.founder-closing {
    margin-top: 2rem;
}

.closing-text {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: .8rem;
}

.founder-signature {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* ========================================================
   CTA STRIP
   ======================================================== */
.cta-strip {
    background: #f5f5f0;
    /* Light version */
    padding: 4rem 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--dark);
    margin-bottom: .4rem;
}

.cta-text p {
    color: var(--gray);
    font-size: .95rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========================================================
   PARTNER LOGOS
   ======================================================== */
.partners-section {
    background: var(--white);
    padding: 3.5rem 1rem;
    border-top: 0px solid var(--secondary-dark);
}

.partners-label {
    text-align: center;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 2rem;
}

.partners-track-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    animation: scroll-logos 28s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partners-track img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(.55);
    transition: var(--transition);
    flex-shrink: 0;
}

.partners-track img:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================================
   FOOTER
   ======================================================== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .75);
}

.footer-top {
    padding: 4rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(.9);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: .88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: .75rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: .85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.footer-links ul li {
    margin-bottom: .55rem;
}

.footer-links ul li a {
    font-size: .87rem;
    color: rgba(255, 255, 255, .5);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .45rem;
}

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

.footer-links ul li a i {
    font-size: .78rem;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 1.2rem;
    text-align: center;
    font-size: .82rem;
    color: rgba(255, 255, 255, .35);
}

/* ========================================================
   INNER PAGES – SHARED
   ======================================================== */

/* Page Hero Banner */
.page-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 3rem;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    z-index: 0;
}

.page-hero-bg::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='none' fill-rule='evenodd'%3E%3Cg fill='%23386113' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 110px;
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: .8rem;
    line-height: 1.15;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--primary);
    transition: var(--transition);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--dark);
}

.breadcrumb .fa-chevron-right {
    font-size: .6rem;
}

.breadcrumb span {
    color: var(--gray);
}

/* ========================================================
   ABOUT FOUNDER PAGE
   ======================================================== */
.inner-founder-section {
    padding: 5rem 1rem 6rem;
    background: var(--white);
}

.inner-founder-wrap {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Aside / photo column */
.inner-founder-aside {
    position: sticky;
    top: 100px;
}

.inner-founder-photo-wrap {
    margin-bottom: 1.5rem;
}

.inner-founder-photo {
    width: 100%;

    object-fit: cover;
    object-position: center center;
    display: block;

}



.founder-quote-card {
    background: var(--gray-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.2rem 1.4rem;
}

.founder-quote-icon {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: .6rem;
    display: block;
}

.founder-quote-card p {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--dark2);
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
}

/* Letter content */
.letter-header {
    margin-bottom: 2rem;
}

.letter-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(141, 155, 71, .1);
    color: var(--primary-dark);
    padding: .3rem .9rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .8rem;
}

.letter-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: .8rem;
}

.letter-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.letter-body p {
    color: #4a5568;
    line-height: 1.85;
    font-size: .97rem;
    margin-bottom: 1.2rem;
}

.letter-body p strong {
    color: var(--primary-dark);
}

.letter-closing {
    margin: 2rem 0 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--secondary-dark);
}

.closing-line {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--primary-dark);
    font-size: 1.15rem;
    margin-bottom: .8rem;
}

.letter-signature {
    max-height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
}

.letter-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========================================================
   VISION & MISSION PAGE
   ======================================================== */
.vm-section {
    padding: 5rem 1rem;
    background: var(--white);
}

.vm-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 2.5rem;
    align-items: start;
    background: var(--white);
    border: 1px solid rgba(141, 155, 71, .12);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    max-width: 860px;
    margin: 0 auto;
    transition: var(--transition);
}

.vm-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(141, 155, 71, .25);
    transform: translateY(-3px);
}

.vm-card-alt {
    background: var(--gray-light);
}

.vm-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.vision-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.mission-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.vm-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .5rem;
}

.vm-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--dark);
    margin-bottom: .8rem;
}

.vm-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    margin-bottom: 1.2rem;
}

.vm-content p {
    color: #4a5568;
    line-height: 1.85;
    font-size: .97rem;
    margin-bottom: 1rem;
}

.vm-content p:last-child {
    margin-bottom: 0;
}

.vm-content p strong {
    color: var(--primary-dark);
}

/* Connector between Vision and Mission */
.vm-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-direction: column;
    padding: .8rem 0;
    max-width: 860px;
    margin: 0 auto;
}

.vm-connector-line {
    width: 2px;
    height: 28px;
    background: linear-gradient(to bottom, rgba(141, 155, 71, .3), rgba(141, 155, 71, .6));
}

.vm-connector-dot {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .9rem;
    box-shadow: 0 0 0 6px rgba(141, 155, 71, .15);
}

/* Three Pillars */
.vm-pillars {
    padding: 5rem 1rem;
    background: var(--gray-light);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}

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

.pillar-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, rgba(141, 155, 71, .15), rgba(141, 155, 71, .05));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
    background: var(--primary);
    color: var(--white);
}

.pillar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .6rem;
}

.pillar-card p {
    font-size: .88rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================================
   THE GIVELIFE STORY PAGE
   ======================================================== */
.story-section {
    padding: 5rem 1rem 6rem;
    background: var(--white);
}

.story-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.story-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: .97rem;
    line-height: 1.7;
    margin-top: .8rem;
}

/* Responsive video */
.story-video-wrap {
    position: relative;
    max-width: 860px;
    margin: 0 auto 4rem;
}

.video-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(141, 155, 71, .18) 0%, transparent 70%);
    border-radius: 28px;
    pointer-events: none;
    z-index: 0;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, .18);
    border: 5px solid var(--white);
    outline: 2px solid rgba(141, 155, 71, .25);
    z-index: 1;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Story highlights */
.story-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 860px;
    margin: 0 auto;
}

.story-highlight {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 1.8rem 1.4rem;
    text-align: center;
    border-top: 3px solid var(--primary);
    transition: var(--transition);
}

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

.sh-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(141, 155, 71, .18), rgba(141, 155, 71, .06));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 auto .9rem;
    transition: var(--transition);
}

.story-highlight:hover .sh-icon {
    background: var(--primary);
    color: var(--white);
}

.story-highlight h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .5rem;
}

.story-highlight p {
    font-size: .86rem;
    color: var(--gray);
    line-height: 1.65;
}

@media (max-width: 640px) {
    .story-highlights {
        grid-template-columns: 1fr;
    }
}

/* ========================================================
   AWARDS PAGE
   ======================================================== */
.awards-section {
    padding: 5rem 1rem 6rem;
    background: var(--white);
}

.awards-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.awards-sub {
    text-align: center;
    color: var(--gray);
    font-size: .97rem;
    line-height: 1.7;
    margin-top: .8rem;
}

/* Timeline */
.awards-timeline {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.awards-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(141, 155, 71, .15));
    border-radius: 2px;
}

.award-item {
    position: relative;
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.award-item:last-child {
    margin-bottom: 0;
}

.award-badge {
    position: absolute;
    left: -49px;
    top: 1rem;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .9rem;
    box-shadow: 0 0 0 5px rgba(141, 155, 71, .15), 0 4px 12px rgba(141, 155, 71, .3);
    flex-shrink: 0;
    transition: var(--transition);
    z-index: 1;
}

.award-item:hover .award-badge {
    background: var(--primary-dark);
    transform: scale(1.12);
}

.award-card {
    flex: 1;
    background: var(--white);
    border: 1px solid rgba(141, 155, 71, .12);
    border-radius: var(--radius);
    padding: 1.4rem 1.6rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.award-card:hover {
    border-color: rgba(141, 155, 71, .3);
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
}

.award-date {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .76rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.award-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: .4rem;
}

.award-category {
    display: flex;
    align-items: flex-start;
    gap: .4rem;
    font-size: .83rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: .35rem;
    line-height: 1.5;
}

.award-category i {
    margin-top: .18rem;
    flex-shrink: 0;
}

.award-org {
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary-dark);
}

@media (max-width: 600px) {
    .awards-timeline {
        padding-left: 50px;
    }

    .awards-timeline::before {
        left: 15px;
    }

    .award-badge {
        left: -44px;
        width: 34px;
        height: 34px;
        font-size: .75rem;
    }

    .award-card {
        padding: 1.1rem 1.2rem;
    }
}

/* ========================================================
   PENDING WISHES PAGE
   ======================================================== */
.pw-section {
    padding: 5rem 1rem 6rem;
    background: var(--gray-light);
}

.pw-intro {
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.pw-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: .97rem;
    line-height: 1.7;
    margin-top: .8rem;
}

/* Group card */
.pw-group {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
}

.pw-group:last-child {
    margin-bottom: 0;
}

/* Group header */
.pw-group-header {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.2rem 1.8rem;
    color: var(--white);
}

.scholarship-header {
    background: var(--primary);
}

.wheelchair-header {
    background: var(--primary);
}

.surgery-header {
    background: var(--primary);
}

.others-header {
    background: var(--primary);
}

.pw-group-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pw-group-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .1rem;
    color: var(--white);
}

.pw-count {
    font-size: .78rem;
    font-weight: 600;
    opacity: .8;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* Table */
.pw-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pw-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.pw-table thead tr {
    background: rgba(141, 155, 71, .08);
    border-bottom: 2px solid rgba(141, 155, 71, .2);
}

.pw-table th {
    padding: .85rem 1.4rem;
    text-align: left;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary-dark);
    white-space: nowrap;
}

.pw-table td {
    padding: .85rem 1.4rem;
    color: #4a5568;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    vertical-align: middle;
    line-height: 1.5;
}

.pw-table tbody tr:last-child td {
    border-bottom: none;
}

.pw-table tbody tr:hover td {
    background: rgba(141, 155, 71, .05);
}

.pw-table tbody tr:nth-child(even) td {
    background: rgba(0, 0, 0, .015);
}

.pw-table tbody tr:nth-child(even):hover td {
    background: rgba(141, 155, 71, .05);
}

.pw-table td.qty {
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1rem;
    text-align: center;
    width: 60px;
}

/* Donate row */
.pw-donate-row {
    padding: 1rem 1.4rem;
    background: rgba(141, 155, 71, .04);
    border-top: 1px solid rgba(141, 155, 71, .1);
    display: flex;
    justify-content: flex-end;
}

/* ========================================================
   DONOR ROLL PAGE
   ======================================================== */
.donor-section {
    padding: 5rem 1rem 6rem;
    background: var(--gray-light);
}

.donor-intro {
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.donor-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: .97rem;
    line-height: 1.7;
    margin-top: .8rem;
}

/* Logo grid */
.donor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    margin-bottom: 4rem;
}

.donor-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, .06);
    padding: 1.4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    transition: var(--transition);
    cursor: default;
}

.donor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(141, 155, 71, .25);
}

.donor-card img {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(.6);
    transition: var(--transition);
}

.donor-card:hover img {
    filter: grayscale(0) opacity(1);
}

.donor-name {
    font-size: .72rem;
    font-weight: 600;
    color: var(--gray);
    text-align: center;
    letter-spacing: .03em;
    line-height: 1.3;
}

/* "Become a Donor" CTA block */
.donor-cta-wrap {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px dashed rgba(141, 155, 71, .3);
    max-width: 520px;
    margin: 0 auto;
}

.donor-cta-msg {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .donor-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .donor-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 420px) {
    .donor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================================
   CONTACT PAGE
   ======================================================== */
.contact-section {
    padding: 5rem 1rem 6rem;
    background: var(--gray-light);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1060px;
    margin: 0 auto;
}

/* Info sidebar */
.contact-info {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    color: var(--text);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(56, 97, 19, .1);
}

.contact-info-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: .8rem;
    line-height: 1.25;
}

.contact-info-desc {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(56, 97, 19, .12);
    padding-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.cd-icon {
    width: 40px;
    height: 40px;
    background: rgba(56, 97, 19, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: .9rem;
    flex-shrink: 0;
}

.cd-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .2rem;
}

.cd-value {
    display: block;
    font-size: .9rem;
    color: var(--dark);
    font-weight: 500;
}

a.cd-value:hover {
    color: var(--primary-light);
}

.contact-socials {
    display: flex;
    gap: .6rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(56, 97, 19, .12);
}

.contact-socials a {
    width: 36px;
    height: 36px;
    background: rgba(56, 97, 19, .08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: .85rem;
    transition: var(--transition);
}

.contact-socials a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Form card */
.contact-form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, .06);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: .6rem;
}

.form-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    margin-bottom: 2rem;
}

/* Form fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: var(--dark2);
    margin-bottom: .4rem;
    letter-spacing: .02em;
}

.form-group label span {
    color: var(--primary);
}

.input-wrap {
    position: relative;
}

.input-wrap i {
    position: absolute;
    left: .95rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: .85rem;
    pointer-events: none;
    transition: var(--transition);
}

.textarea-wrap i {
    top: .95rem;
    transform: none;
}

.input-wrap input,
.input-wrap textarea {
    width: 100%;
    padding: .75rem .9rem .75rem 2.5rem;
    border: 1.5px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    font-family: var(--font);
    font-size: .92rem;
    color: var(--dark);
    background: var(--gray-light);
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

.input-wrap input:focus,
.input-wrap textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(141, 155, 71, .12);
}

.input-wrap input:focus~i,
.input-wrap textarea:focus~i {
    color: var(--primary);
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
    color: rgba(0, 0, 0, .3);
    font-size: .88rem;
}

.btn-submit {
    width: 100%;
    padding: .9rem;
    font-size: 1rem;
    justify-content: center;
    margin-top: .5rem;
}

/* Success state */
.form-success {
    text-align: center;
    padding: 3rem 1rem;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: .5rem;
}

.form-success p {
    color: var(--gray);
    font-size: .95rem;
}

/* Error banner */
.form-error-msg {
    background: rgba(239, 68, 68, .08);
    border: 1px solid rgba(239, 68, 68, .25);
    color: #b91c1c;
    border-radius: 10px;
    padding: .8rem 1rem;
    font-size: .88rem;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .contact-info {
        position: static;
    }
}

@media (max-width: 560px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 1.8rem 1.2rem;
    }
}

/* ========================================================
   VOLUNTEER PAGE EXTRAS
   ======================================================== */

/* Word limit note */
.word-limit-note {
    font-family: var(--font);
    font-style: normal;
    font-size: .72rem;
    font-weight: 500;
    color: var(--gray);
    margin-left: .4rem;
}

/* Live word counter */
.word-counter {
    font-size: .78rem;
    color: var(--gray);
    text-align: right;
    margin-top: .3rem;
    font-weight: 500;
}

.word-counter #word-count {
    font-weight: 700;
    color: var(--primary-dark);
}

.word-counter.over-limit #word-count {
    color: #dc2626;
}

.word-counter.over-limit {
    color: #dc2626;
}

/* File upload */
.file-upload-wrap {
    position: relative;
}

.file-upload-wrap input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    border: 2px dashed rgba(141, 155, 71, .35);
    border-radius: 10px;
    padding: 1.8rem 1rem;
    background: var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.file-upload-label:hover,
.file-upload-wrap:hover .file-upload-label {
    border-color: var(--primary);
    background: rgba(141, 155, 71, .06);
}

.file-upload-label.has-file {
    border-color: var(--primary);
    background: rgba(141, 155, 71, .08);
}

.file-upload-label i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: .2rem;
}

.file-upload-label span {
    font-size: .9rem;
    font-weight: 600;
    color: var(--dark2);
}

.file-upload-label small {
    font-size: .76rem;
    color: var(--gray);
}

/* ========================================================
   LIFE CATALOG (GIVE LIFE) PAGE
   ======================================================== */
.gl-section {
    padding: 5rem 1rem 6rem;
    background: var(--gray-light);
}

.gl-intro {
    max-width: 720px;
    margin: 0 auto 3rem;
}

.gl-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: .97rem;
    line-height: 1.7;
    margin-top: .8rem;
}

/* Category grid */
.gl-catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.gl-cat-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    background: var(--white);
    border: 2px solid rgba(141, 155, 71, .12);
    border-radius: 16px;
    padding: 1.8rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 600;
    color: var(--dark2);
}

.gl-cat-btn:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

.gl-cat-btn.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(141, 155, 71, .1), rgba(141, 155, 71, .04));
    color: var(--primary-dark);
    box-shadow: 0 0 0 4px rgba(141, 155, 71, .15), var(--shadow-lg);
}

.gl-cat-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(141, 155, 71, .15), rgba(141, 155, 71, .05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.gl-cat-btn:hover .gl-cat-icon,
.gl-cat-btn.active .gl-cat-icon {
    background: var(--primary);
    color: var(--white);
}

/* Form panel */
.gl-form-panel {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(141, 155, 71, .15);
    max-width: 900px;
    margin: 0 auto;
    animation: fadeSlideUp .35s ease;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gl-form-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(141, 155, 71, .15);
}

.gl-back-btn {
    background: rgba(141, 155, 71, .1);
    border: none;
    color: var(--primary-dark);
    font-family: var(--font);
    font-size: .82rem;
    font-weight: 700;
    padding: .45rem .9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
}

.gl-back-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.gl-form-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--dark);
    margin: 0;
}

/* Checkbox / radio grids */
.gl-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: .5rem;
    margin-top: .4rem;
}

.gl-checkbox-item,
.gl-radio-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--gray-light);
    border: 1.5px solid rgba(0, 0, 0, .07);
    border-radius: 8px;
    padding: .45rem .8rem;
    cursor: pointer;
    font-size: .84rem;
    transition: var(--transition);
}

.gl-checkbox-item:hover,
.gl-radio-item:hover {
    border-color: var(--primary);
}

.gl-checkbox-item input:checked+span,
.gl-radio-item input:checked+span {
    color: var(--primary-dark);
    font-weight: 700;
}

.gl-checkbox-item:has(input:checked),
.gl-radio-item:has(input:checked) {
    border-color: var(--primary);
    background: rgba(141, 155, 71, .08);
}

.gl-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .4rem;
}

/* Qty grid (books / surgeries) */
.form-label-main {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: var(--dark2);
    margin-bottom: .8rem;
    letter-spacing: .02em;
}

.gl-qty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: .6rem;
}

.gl-qty-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    background: var(--gray-light);
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 8px;
    padding: .5rem .9rem;
    font-size: .86rem;
    color: var(--dark2);
}

.qty-input {
    width: 65px;
    border: 1.5px solid rgba(0, 0, 0, .1);
    border-radius: 6px;
    padding: .3rem .5rem;
    font-family: var(--font);
    font-size: .88rem;
    text-align: center;
    outline: none;
    transition: var(--transition);
}

.qty-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(141, 155, 71, .12);
}

/* Select */
.input-wrap select {
    width: 100%;
    padding: .75rem .9rem .75rem 2.5rem;
    border: 1.5px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    font-family: var(--font);
    font-size: .92rem;
    color: var(--dark);
    background: var(--gray-light);
    appearance: none;
    outline: none;
    transition: var(--transition);
    cursor: pointer;
}

.input-wrap select:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(141, 155, 71, .12);
}

/* Bank info card */
.gl-bank-info {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: rgba(141, 155, 71, .06);
    border: 1px solid rgba(141, 155, 71, .2);
    border-radius: var(--radius);
    padding: 1.3rem 1.4rem;
    margin-top: .6rem;
    font-size: .88rem;
    line-height: 1.75;
    color: #4a5568;
}

.gl-bank-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.gl-bank-info p {
    margin-bottom: .4rem;
}

.gl-bank-info p:last-child {
    margin-bottom: 0;
}

.gl-bank-info a {
    color: var(--primary-dark);
    font-weight: 600;
}

/* ── SUCCESS SCREEN ── */
.gl-success-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #386113;
    overflow: hidden;
    padding: 4rem 1rem;
}

#confetti-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.gl-success-inner {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .97);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    max-width: 680px;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .3);
    animation: fadeSlideUp .5s ease;
}

.gl-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(141, 155, 71, .4);
    animation: heartBeat 1.2s ease infinite;
}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.gl-success-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--dark);
    margin-bottom: 1.2rem;
}

.gl-success-inner p {
    color: #4a5568;
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.gl-success-inner p strong {
    color: var(--primary-dark);
}

.gl-thank-bold {
    font-family: var(--font-serif);
    font-size: 1.3rem !important;
    color: var(--primary-dark) !important;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .gl-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gl-form-panel {
        padding: 1.8rem 1.2rem;
    }

    .gl-success-inner {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 420px) {
    .gl-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .8rem;
    }

    .gl-cat-btn {
        padding: 1.2rem .8rem;
        gap: .5rem;
    }
}

/* ========================================================
/* ========================================================
/* ========================================================
   PRESS GALLERY
   ======================================================== */
.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1060px;
    margin: 0 auto;
}

.press-card {
    display: flex;
    flex-direction: row;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, .06);
    transition: var(--transition);
}

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

/* Thumbnail — left side */
.press-thumb-link {
    display: block;
    flex-shrink: 0;
    width: 160px;
}

.press-thumb-wrap {
    position: relative;
    width: 160px;
    height: 100%;
    overflow: hidden;
}

.press-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.press-card:hover .press-thumb-wrap img {
    transform: scale(1.06);
}

.press-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    opacity: 0;
    transition: var(--transition);
}

.press-card:hover .press-thumb-overlay {
    opacity: 1;
}

/* Body */
.press-body {
    padding: 1.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1;
}

.press-source {
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: .35rem;
}

.press-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark);
}

.press-title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.press-title a:hover {
    color: var(--primary-dark);
}

.press-date {
    font-size: .75rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: .35rem;
}

.press-excerpt {
    font-size: .85rem;
    color: var(--gray);
    line-height: 1.65;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-read-more {
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .4rem;
    transition: var(--transition);
}

.press-read-more:hover {
    color: var(--primary-dark);
    gap: .55rem;
}

@media (max-width: 700px) {
    .press-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================================
   IMAGE GALLERY — ALBUM GRID
   ======================================================== */
.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    max-width: 1100px;
    margin: 0 auto;
}


.album-card {
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, .06);
    transition: var(--transition);
}

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

.album-thumb-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.album-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.album-card:hover .album-thumb-wrap img {
    transform: scale(1.07);
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .38);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    opacity: 0;
    transition: var(--transition);
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}

.album-count {
    font-size: .72rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(0, 0, 0, .45);
    padding: .2rem .6rem;
    border-radius: 50px;
    letter-spacing: .05em;
}

.album-caption {
    padding: .8rem 1rem;
}

.album-caption p {
    font-size: .8rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 900px) {
    .album-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .album-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 380px) {
    .album-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================================
   LIGHTBOX
   ======================================================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 96vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem 1rem;
}

/* Main image */
.lb-img-wrap {
    width: 100%;
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lb-img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    transition: opacity .25s ease;
}

/* Prev / Next */
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 2;
}

.lb-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lb-prev {
    left: .5rem;
}

.lb-next {
    right: .5rem;
}

/* Close */
.lb-close {
    position: absolute;
    top: .6rem;
    right: .6rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
    font-size: .95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lb-close:hover {
    background: #c0392b;
    border-color: #c0392b;
}

/* Footer: title + counter */
.lb-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .7rem .2rem .4rem;
    gap: 1rem;
}

.lb-title {
    font-size: .82rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.4;
    flex: 1;
}

.lb-counter {
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary-light);
    white-space: nowrap;
}

/* Thumbnail strip */
.lb-thumbs {
    display: flex;
    gap: .4rem;
    overflow-x: auto;
    width: 100%;
    padding: .3rem 0 .5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.lb-thumb {
    flex-shrink: 0;
    width: 62px;
    height: 46px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: .5;
    border: 2px solid transparent;
    transition: opacity .2s, border-color .2s;
}

.lb-thumb:hover {
    opacity: .8;
}

.lb-thumb.active {
    opacity: 1;
    border-color: var(--primary);
}


/* ========================================================
   MAKE-A-WISH EXTRAS
   ======================================================== */


/* 7-tile grid (override 4-col to fit nicely) */
.maw-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 960px;
}

@media (max-width: 768px) {
    .maw-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .maw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Availability badge */
.maw-avail {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: .2rem .55rem;
    border-radius: 50px;
    line-height: 1;
    font-family: var(--font);
}

.maw-avail.avail {
    background: rgba(141, 155, 71, .15);
    color: var(--primary-dark);
}

.maw-avail.na {
    background: rgba(0, 0, 0, .07);
    color: var(--gray);
}

/* ========================================================
   NEWS / GALLERY PAGES
   ======================================================== */
.gallery-section {
    padding: 5rem 1rem 6rem;
    background: var(--gray-light);
}

.gallery-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.gallery-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: .97rem;
    line-height: 1.7;
    margin-top: .8rem;
}

/* Video grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    max-width: 1060px;
    margin: 0 auto;
}

.video-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, .06);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

/* Thumbnail */
.video-thumb-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--dark);
}

.video-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.video-card:hover .video-thumb-wrap img {
    transform: scale(1.06);
}

/* Play overlay */
.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-card:hover .video-play-overlay {
    background: rgba(0, 0, 0, .5);
}

.video-play-btn {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .35);
    padding-left: 4px;
    /* optical centering for play icon */
    transition: transform .25s ease;
}

.video-card:hover .video-play-btn {
    transform: scale(1.12);
}

/* Source badge */
.video-source-badge {
    position: absolute;
    bottom: .6rem;
    right: .7rem;
    background: rgba(0, 0, 0, .65);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .6rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: .35rem;
    letter-spacing: .04em;
    backdrop-filter: blur(4px);
}

/* Card body */
.video-card-body {
    padding: 1.1rem 1.2rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .7rem;
}

.video-title {
    font-size: .93rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.45;
}

.video-watch-link {
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: .35rem;
    transition: var(--transition);
}

.video-card:hover .video-watch-link {
    color: var(--primary-dark);
    gap: .55rem;
}

@media (max-width: 840px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive – inner pages */










@media (max-width: 900px) {
    .inner-founder-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .inner-founder-aside {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: start;
    }

    .inner-founder-photo {
        height: 300px;
    }
}

@media (max-width: 560px) {
    .inner-founder-aside {
        grid-template-columns: 1fr;
    }

    .inner-founder-photo {
        height: 260px;
    }

    .page-hero {
        min-height: 220px;
    }
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1024px) {
    .founder-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-photo-wrap {
        max-width: 420px;
    }

    .founder-photo {
        height: 360px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .pending-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 0 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        overflow-y: auto;
        max-height: calc(100vh - 70px);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link {
        color: var(--dark);
        padding: .8rem 1.5rem;
        border-radius: 0;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 1.5rem;
        background: var(--gray-light);
        border-radius: 0;
        display: none;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ========================================================
   GIVELIFE - COMPREHENSIVE MOBILE RESPONSIVENESS
   ======================================================== */

@media (max-width: 991px) {
    /* Container adjusts */
    .container {
        width: 95%;
    }

    /* Founder Section */
    .founder-inner {
        flex-direction: column;
        gap: 2rem;
    }
    .founder-photo-wrap {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .founder-content {
        padding: 0;
        text-align: center;
    }
    .founder-letter p {
        text-align: left;
    }

    /* Pending Wishes Cards */
    .pending-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Typography */
    .section-title {
        font-size: 2rem;
    }

    /* Hero Section */
    .hero-content {
        padding-top: 9rem;
        padding-bottom: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-sub {
        font-size: 1rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    /* Navigation (Hamburger active) */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: var(--transition);
        overflow-y: auto;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        z-index: 1000;
    }
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--gray-light);
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-menu .btn {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
        margin-left: 0 !important;
    }
    .has-dropdown {
        width: 100%;
    }
    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 0;
        text-align: center;
        background: var(--gray-light);
    }
    .dropdown li a {
        padding: 0.8rem;
    }
    .dropdown li a:hover {
        padding-left: 0.8rem;
    }
    .has-dropdown.active .dropdown {
        display: block;
    }
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Page Header */
    .page-header {
        padding: 6rem 0 3rem;
    }

    /* Sections Padding */
    .founder-section, .pending-section, .vision-section, .contact-section {
        padding: 3rem 0;
    }
    
    /* Stats */
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        display: grid;
        gap: 1rem;
    }
    .hero-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    
    /* Contact Page */
    .contact-grid, .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    /* Hero Title smaller */
    .hero-title {
        font-size: 2rem;
    }
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    /* Pending Cards */
    .pending-cards {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}