/********** Drishika Foundation — Complete Brand System **********/
/* Orange #E8711C · Teal #00796B · Deep Navy #1C2635 */

:root {
    --primary:         #E8711C;
    --primary-dark:    #C45D10;
    --primary-light:   #F5924A;
    --primary-glow:    rgba(232, 113, 28, 0.13);
    --primary-glow-md: rgba(232, 113, 28, 0.22);

    --secondary:       #00796B;
    --secondary-dark:  #004D40;
    --secondary-light: #26A69A;

    --bg-white:        #FFFFFF;
    --bg-light:        #F7F8FA;
    --bg-cream:        #FEF9F5;
    --bg-dark:         #1C2635;
    --bg-dark-2:       #243040;
    --bg-dark-3:       #151E2B;

    --text-dark:       #0F1923;
    --text-body:       #4B5563;
    --text-muted:      #9CA3AF;
    --text-light:      #FFFFFF;

    --border:          rgba(15, 25, 35, 0.08);
    --border-orange:   rgba(232, 113, 28, 0.2);
    --shadow-sm:       0 2px 8px rgba(15,25,35,0.06);
    --shadow-md:       0 8px 28px rgba(15,25,35,0.09);
    --shadow-lg:       0 20px 50px rgba(15,25,35,0.12);
    --shadow-orange:   0 8px 28px rgba(232,113,28,0.22);
    --radius:          14px;
    --radius-sm:       8px;
    --radius-lg:       20px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Lora', serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

a { color: var(--primary); text-decoration: none; transition: all .25s; }
a:hover { color: var(--primary-dark); }

strong { color: var(--text-dark); }

::selection { background: var(--primary); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ═══════════════════════════════════════
   UTILITY OVERRIDES
═══════════════════════════════════════ */
.text-primary   { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-dark      { color: var(--text-dark) !important; }
.text-muted     { color: var(--text-muted) !important; }

.bg-primary   { background: var(--primary) !important; }
.bg-secondary { background: var(--secondary) !important; }
.bg-dark      { background: var(--bg-dark) !important; }
.bg-light     { background: var(--bg-light) !important; }

/* ═══════════════════════════════════════
   SPINNER
═══════════════════════════════════════ */
#spinner {
    opacity: 0; visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background: var(--bg-white) !important;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible; opacity: 1;
}
#spinner .spinner-border,
#spinner .spinner-grow { color: var(--primary) !important; }

/* ═══════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════ */
.back-to-top {
    display: none !important;
    position: fixed;
    right: 28px; bottom: 100px;
    z-index: 998;
    width: 46px; height: 46px;
    background: var(--primary);
    color: #fff !important;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
    transition: all .3s;
    font-size: 1.1rem;
}
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-4px); color: #fff !important; }

/* ═══════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    right: 28px; bottom: 30px;
    z-index: 999;
    width: 54px; height: 54px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: all .3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1) translateY(-3px);
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}
.whatsapp-float i { font-size: 1.5rem; }

/* Pulse ring */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.4;
    animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
    0%   { transform: scale(1); opacity: 0.4; }
    70%  { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
    font-weight: 600;
    transition: all .28s cubic-bezier(.4,0,.2,1);
    border-radius: 50px;
    padding: 0.72rem 1.8rem;
    font-size: 0.83rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.5;
}

.btn-square    { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 48px; height: 48px; }
.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0; display: inline-flex;
    align-items: center; justify-content: center;
    font-weight: 400; border-radius: 50%;
    text-transform: none; letter-spacing: 0;
}

/* Primary — Orange */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    background-size: 200% auto;
    border: none;
    color: #fff !important;
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover, .btn-primary:focus {
    background-position: right center;
    box-shadow: 0 10px 30px rgba(232,113,28,0.4);
    transform: translateY(-2px);
    color: #fff !important;
}

/* Outline Primary */
.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff !important;
    box-shadow: var(--shadow-orange);
    transform: translateY(-2px);
}

/* Outline Secondary (teal) */
.btn-outline-secondary {
    color: var(--secondary);
    border: 2px solid var(--secondary);
}
.btn-outline-secondary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff !important;
}

/* Donate CTA — Teal */
.btn-donate {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    border: none;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(0,121,107,0.3);
}
.btn-donate:hover {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,121,107,0.4);
    color: #fff !important;
}

/* Navbar donate button — solid orange */
.btn-navbar-donate {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: #fff !important;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(232,113,28,0.35);
    transition: all .3s;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-navbar-donate:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,113,28,0.45);
}

.btn-navbar-exam {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    transition: all .3s;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-navbar-exam:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,113,28,0.35);
}

/* ═══════════════════════════════════════
   SECTION LABEL PILLS
═══════════════════════════════════════ */
.section-label,
.d-inline-block.rounded-pill.bg-light.text-primary,
.d-inline-block.rounded-pill.bg-secondary.text-primary,
.d-inline-block.rounded-pill.bg-white.text-primary {
    display: inline-block;
    background: var(--primary-glow) !important;
    color: var(--primary) !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 18px !important;
    border-radius: 50px !important;
    border: 1px solid var(--border-orange);
}

/* ═══════════════════════════════════════
   TOP BAR + NAVBAR
═══════════════════════════════════════ */
.fixed-top { transition: all .4s; z-index: 9999; }

.top-bar {
    height: 44px;
    background: var(--bg-dark-3);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
}
.top-bar small { color: rgba(255,255,255,0.55); }
.top-bar i { color: var(--primary); }
.top-bar a { color: rgba(255,255,255,0.55); transition: .2s; }
.top-bar a:hover { color: var(--primary); }

.top-bar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    margin-left: 6px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.55) !important;
    font-size: 0.72rem;
    transition: all .2s;
    text-decoration: none;
}
.top-bar-social:hover {
    background: var(--primary);
    color: #fff !important;
    transform: translateY(-1px);
}

.navbar {
    background: var(--bg-dark) !important;
    padding: 0 2rem;
    transition: all .4s;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.navbar.scrolled {
    background: rgba(28,38,53,0.97) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.navbar .navbar-nav .nav-link {
    margin-right: 4px;
    padding: 24px 14px;
    color: rgba(255,255,255,0.78);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.2px;
    position: relative;
    transition: color .25s;
}
.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 16px; left: 14px; right: 14px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active { color: #fff !important; }
.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.navbar .dropdown-menu {
    background: var(--bg-dark-2);
    border: none;
    border-top: 3px solid var(--primary);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    padding: 6px 0;
    margin-top: 0 !important;
    min-width: 200px;
}
.navbar .dropdown-item {
    color: rgba(255,255,255,0.7);
    font-size: 0.86rem;
    padding: 10px 20px;
    transition: all .2s;
    font-weight: 500;
}
.navbar .dropdown-item:hover {
    background: var(--primary);
    color: #fff;
    padding-left: 24px;
}

@media (max-width: 991.98px) {
    .navbar { padding: 0 1rem; }
    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(255,255,255,0.06);
        background: var(--bg-dark);
        padding: 8px 12px 16px;
        border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    }
    .navbar .navbar-nav .nav-link { padding: 10px 4px; }
    .navbar .navbar-nav .nav-link::after { display: none; }
    .navbar .dropdown-menu { box-shadow: none; margin: 0; }
}

.fixed-top.nav-inner {
    background: var(--bg-dark) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

/* Brand */
.navbar-brand { text-decoration: none; }
.navbar-brand img {
    transition: transform .35s, box-shadow .35s;
    box-shadow: 0 0 0 0 rgba(232,113,28,0);
}
.navbar-brand:hover img {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 0 0 3px rgba(232,113,28,0.3);
}
.navbar-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.navbar-brand-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2px;
    white-space: nowrap;
    font-family: 'Lora', serif;
}
.navbar-brand-tagline {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    white-space: nowrap;
    opacity: 0.85;
}

/* Custom hamburger */
.navbar-toggler-custom {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    width: 40px; height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    transition: background .2s;
}
.navbar-toggler-custom:hover { background: rgba(232,113,28,0.2); border-color: var(--primary); }
.navbar-toggler-custom span {
    display: block;
    width: 20px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}
.navbar-toggler-custom span:first-child { width: 20px; }
.navbar-toggler-custom span:nth-child(2) { width: 14px; }
.navbar-toggler-custom span:last-child  { width: 20px; }
.navbar-toggler-custom:hover span { width: 20px; background: var(--primary-light); }
@media (max-width: 576px) {
    .navbar-brand-text { display: flex; }
    .navbar-brand-name { font-size: 0.82rem; }
    .navbar-brand-tagline { font-size: 0.58rem; }

    /* Reduce footer top spacing on mobile */
    .footer.mt-5 { margin-top: 1.5rem !important; }
    .footer.pt-5 { padding-top: 1.5rem !important; }
    .footer .container.py-5 { padding-top: 2rem !important; padding-bottom: 1.5rem !important; }
}

/* ═══════════════════════════════════════
   HERO CAROUSEL
═══════════════════════════════════════ */
#header-carousel .carousel-item {
    height: 100vh;
    min-height: 620px;
}
#header-carousel .carousel-item img {
    height: 100%; width: 100%;
    object-fit: cover;
    filter: brightness(0.82);
}
.carousel-caption {
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(
        180deg,
        rgba(28,38,53,0.5) 0%,
        rgba(28,38,53,0.3) 40%,
        rgba(28,38,53,0.65) 100%
    );
    z-index: 1;
    padding-top: 90px;
}
.carousel-caption h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
    letter-spacing: -0.5px;
}
.carousel-caption p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
    color: rgba(255,255,255,0.88) !important;
}

/* Carousel controls */
.carousel-control-prev, .carousel-control-next {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    top: 50%; transform: translateY(-50%);
    opacity: 1;
    margin: 0 20px;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
    background: var(--primary);
}
.carousel-control-prev-icon, .carousel-control-next-icon { width: 20px; height: 20px; }

/* Carousel indicators */
#header-carousel .carousel-indicators {
    bottom: 30px;
    gap: 8px;
}
#header-carousel .carousel-indicators button {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    transition: all .3s;
    padding: 0;
}
#header-carousel .carousel-indicators button.active {
    background: var(--primary);
    width: 28px;
    border-radius: 4px;
}

/* ═══════════════════════════════════════
   PAGE HEADER (Breadcrumb Banner)
═══════════════════════════════════════ */
.page-header {
    background: linear-gradient(135deg, var(--bg-dark-3) 0%, var(--bg-dark-2) 100%);
    position: relative;
    overflow: hidden;
    padding: 160px 0 60px;
}
.page-header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary-light));
}
.page-header h1 { color: #fff; }
.page-header .breadcrumb-item { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,0.5); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: var(--primary); content: '/'; }
.page-header .breadcrumb-item a { color: var(--primary-light); }
.page-header .breadcrumb-item a:hover { color: #fff; }

/* ═══════════════════════════════════════
   SECTION STRUCTURE
═══════════════════════════════════════ */
.py-5 { padding-top: 5.5rem !important; padding-bottom: 5.5rem !important; }

.section-title {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

/* Light section bg alternation */
.container-xxl.bg-light { background: var(--bg-light) !important; }

/* ═══════════════════════════════════════
   ABOUT / DUAL IMAGE LAYOUT
═══════════════════════════════════════ */
.about-img-stack {
    position: relative;
    min-height: 420px;
}
.about-img-stack .img-main {
    width: calc(100% - 60px);
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.about-img-stack .img-accent {
    position: absolute;
    top: 0; right: 0;
    width: 170px; height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.about-highlight-box {
    background: var(--primary-glow);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.25rem 1.5rem;
}
.about-highlight-box p { margin: 0; }

/* ═══════════════════════════════════════
   CAUSES / WORK CARDS
═══════════════════════════════════════ */
.causes-item {
    background: var(--bg-white);
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform .3s, box-shadow .3s;
    border: 1px solid var(--border);
}
.causes-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.causes-item img {
    height: 220px !important;
    width: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform .5s;
}
.causes-item:hover img { transform: scale(1.05); }

.causes-item .d-inline-block.bg-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary)) !important;
    border-radius: 0 0 10px 10px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 16px 7px !important;
}

/* Progress */
.causes-progress { background: var(--bg-light) !important; border-radius: var(--radius-sm); }
.progress { border-radius: 50px; background: rgba(232,113,28,0.1); }
.progress-bar {
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    border-radius: 50px;
    transition: width 1s ease;
}
.text-secondary.fw-bold { color: var(--secondary) !important; }

/* ═══════════════════════════════════════
   SERVICE CARDS (Programs)
═══════════════════════════════════════ */
.service-item {
    background: var(--bg-white);
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-md);
    transition: all .3s;
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}
.service-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary-light));
    transform: scaleX(0);
    transition: transform .3s;
    transform-origin: left;
}
.service-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-item:hover::before { transform: scaleX(1); }
.service-item i, .service-item .bg-primary { color: var(--primary); }
.service-item .bg-primary {
    background: var(--primary-glow) !important;
    border-radius: var(--radius-sm) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.service-item .bg-primary i { color: var(--primary); }

/* ═══════════════════════════════════════
   PROGRAM CARDS (10-grid)
═══════════════════════════════════════ */
.program-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    cursor: default;
}
.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-orange);
    border-color: var(--border-orange);
}
.program-icon-wrap {
    width: 62px; height: 62px;
    background: var(--primary-glow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    transition: background .25s;
}
.program-icon-wrap i { color: var(--primary); }
.program-card:hover .program-icon-wrap { background: var(--primary); }
.program-card:hover .program-icon-wrap i { color: #fff; }
.program-card h6 { font-weight: 700; color: var(--text-dark); font-size: 0.82rem; line-height: 1.3; }

/* ═══════════════════════════════════════
   STATS / COUNTER
═══════════════════════════════════════ */
.facts-section,
.container-xxl .bg-primary.py-5,
[class*="counter"] .bg-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    position: relative;
    overflow: hidden;
}
.facts-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='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════
   TEAM
═══════════════════════════════════════ */
.team-item {
    background: var(--bg-white);
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all .35s;
    border: 1px solid var(--border);
}
.team-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.team-item > .position-relative > img {
    height: 300px !important;
    width: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}
.team-item:hover > .position-relative > img { transform: scale(1.06); }

.team-item .team-text {
    padding: 1.4rem 1.5rem;
    background: #fff;
    text-align: center;
    border-top: 3px solid var(--primary);
}
.team-item .team-text h5 { color: var(--text-dark); margin-bottom: 4px; font-size: 1.05rem; }
.team-item .team-text p { color: var(--primary); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin: 0; }

.team-item .team-social {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(28,38,53,0.88), rgba(0,77,64,0.88));
    opacity: 0;
    transition: opacity .35s;
}
.team-item .team-social:hover { opacity: 1; }
.team-item:hover .team-social { opacity: 1; }
.team-item .team-social .btn {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 50%;
    padding: 0;
    display: inline-flex;
    align-items: center; justify-content: center;
    transition: all .25s;
}
.team-item .team-social .btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.12);
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonial-item { padding: 1.5rem; }

.testimonial-text {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2.2rem 2.2rem 2.5rem !important;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary);
    transition: box-shadow .3s;
}
.testimonial-text:hover { box-shadow: var(--shadow-lg); }
.testimonial-text::before {
    content: '\201C';
    position: absolute;
    top: 10px; right: 20px;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-text::after {
    content: '';
    position: absolute;
    bottom: -11px; left: 44px;
    width: 22px; height: 22px;
    background: var(--bg-white);
    transform: rotate(45deg);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.testimonial-text p {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-body);
    margin: 0;
}

.testimonial-item img {
    width: 64px !important; height: 64px !important;
    border-radius: 50%;
    margin-right: 14px;
    border: 3px solid var(--primary);
    object-fit: cover;
}
.testimonial-item h5 { color: var(--text-dark); margin-bottom: 2px; font-size: 0.95rem; }
.testimonial-item small { color: var(--primary); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; }

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%; top: 50%; left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s;
}
.testimonial-carousel:hover .owl-nav { opacity: 1; }
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    pointer-events: auto;
    transition: all .3s;
    box-shadow: var(--shadow-orange);
}
.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover { background: var(--secondary); }

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    height: 280px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    display: block;
}
.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232,113,28,0.9) 0%, rgba(0,77,64,0.9) 100%);
    opacity: 0;
    transition: opacity .4s;
    padding: 1.5rem;
    text-align: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h5 { color: #fff; font-size: 1rem; margin-bottom: 4px; }
.gallery-overlay small { color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; font-size: 0.7rem; }
.gallery-overlay .btn { font-size: 0.75rem; padding: 6px 14px; }

/* ═══════════════════════════════════════
   DONATE PAGE
═══════════════════════════════════════ */
.donate {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    position: relative;
    overflow: hidden;
}
.donate::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath fill-rule='evenodd' d='M11 0l5 20H6l5-20zm42 31a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM0 72h80v4H0v-4zm0-64h80v4H0V8z'/%3E%3C/g%3E%3C/svg%3E");
}
.donate h1, .donate h2, .donate h3, .donate h4, .donate p { color: #fff !important; }
.donate .section-label { background: rgba(255,255,255,0.18) !important; color: #fff !important; border-color: rgba(255,255,255,0.3) !important; }

/* Donation amount selector */
.btn-check:checked + .btn-outline-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff !important;
    box-shadow: var(--shadow-orange);
}

/* Impact tier cards */
.impact-tier-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2.2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all .3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.impact-tier-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary-light));
    transform: scaleX(0);
    transition: transform .3s;
}
.impact-tier-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.impact-tier-card:hover::before { transform: scaleX(1); }
.impact-tier-card i { font-size: 2.4rem; color: var(--primary); margin-bottom: 1rem; display: block; }

/* Cause selection labels */
.cause-label {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-sm) !important;
    transition: all .2s;
}
.btn-check:checked + .cause-label {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}
.btn-check:checked + .cause-label i { color: #fff !important; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-item {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border);
    transition: all .3s;
    height: 100%;
}
.contact-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-orange);
}
.contact-item .icon-wrap {
    width: 64px; height: 64px;
    background: var(--primary-glow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.4rem;
    color: var(--primary);
    border: 2px solid var(--border-orange);
    transition: all .3s;
}
.contact-item:hover .icon-wrap {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.contact-item h5 { color: var(--text-dark); margin-bottom: 6px; font-size: 1rem; }
.contact-item p, .contact-item a { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.contact-item a:hover { color: var(--primary); }

/* Map container */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.map-container iframe { display: block; }

/* ═══════════════════════════════════════
   MEMBERSHIP PAGE
═══════════════════════════════════════ */
.membership-benefit {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}
.membership-benefit:last-child { border-bottom: none; }
.membership-benefit i {
    width: 36px; height: 36px;
    background: var(--primary-glow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.bi-check-circle-fill { color: var(--primary) !important; }

/* Membership tier cards */
.membership-card {
    border-radius: var(--radius);
    border: 2px solid var(--border);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: all .3s;
    overflow: hidden;
}
.membership-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-orange);
}
.membership-card .card-header {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    border-bottom: none;
    padding: 1.5rem;
    text-align: center;
}

/* ═══════════════════════════════════════
   CAREER PAGE
═══════════════════════════════════════ */
.career-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all .3s;
    overflow: hidden;
}
.career-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-orange);
    transform: translateY(-4px);
}
.career-card .card-body { padding: 1.75rem; }
.career-badge {
    display: inline-block;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 50px;
    padding: 3px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.career-badge.teal {
    background: rgba(0,121,107,0.1);
    color: var(--secondary);
}

/* ═══════════════════════════════════════
   LOGIN PAGE
═══════════════════════════════════════ */
.login-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-dark-3) 0%, var(--bg-dark) 50%, #1a2f40 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}
.login-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(232,113,28,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(0,121,107,0.06) 0%, transparent 60%);
}
.login-card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    position: relative;
}
.login-card .card-header {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    padding: 2.5rem 2rem;
    text-align: center;
    border: none;
}
.login-card .card-header img { height: 70px; margin-bottom: 1rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.login-card .card-header h4 { color: #fff; margin: 0; letter-spacing: -0.3px; }
.login-card .card-body { padding: 2rem 2.5rem 2.5rem; background: #fff; }

/* ═══════════════════════════════════════
   404 PAGE
═══════════════════════════════════════ */
.not-found-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}
.not-found-section .display-1 {
    font-size: 8rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
    background: var(--bg-dark) !important;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary-light), var(--primary));
}

.footer h4, .footer h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding-bottom: 14px;
    margin-bottom: 1.25rem;
    position: relative;
}
.footer h4::after, .footer h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer p { color: rgba(255,255,255,0.52); font-size: 0.88rem; line-height: 1.8; }
.footer p i { color: var(--primary); width: 18px; }

.footer .btn.btn-link {
    display: block;
    padding: 3px 0;
    color: rgba(255,255,255,0.52);
    font-weight: 400;
    font-size: 0.88rem;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
    transition: all .25s;
    border-radius: 0;
}
.footer .btn.btn-link::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f054';
    font-size: 0.65rem;
    color: var(--primary);
    margin-right: 9px;
    transition: margin .25s;
}
.footer .btn.btn-link:hover {
    color: rgba(255,255,255,0.9);
    padding-left: 4px;
}

.footer .btn-square {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 0.85rem;
    transition: all .28s;
}
.footer .btn-square:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(232,113,28,0.35);
}

.footer .copyright {
    padding: 20px 0;
    font-size: 0.83rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.35);
}
.footer .copyright a { color: var(--primary); }
.footer .copyright a:hover { color: var(--primary-light); }

/* ═══════════════════════════════════════
   FORMS
═══════════════════════════════════════ */
.form-control, .form-select {
    border: 1.5px solid rgba(15,25,35,0.1);
    padding: 0.82rem 1.15rem;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    color: var(--text-dark);
    background: #fff;
    transition: all .25s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    outline: none;
}
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-floating > label { color: var(--text-muted); font-size: 0.88rem; }

/* ═══════════════════════════════════════
   MODALS
═══════════════════════════════════════ */
.modal-content {
    border-radius: var(--radius);
    border: none;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
    overflow: hidden;
}
.modal-header {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-bottom: none;
    padding: 1.5rem 1.75rem;
}
.modal-header .modal-title { color: #fff; font-size: 1rem; font-weight: 700; }
.modal-header .btn-close { filter: invert(1) brightness(2); opacity: 0.85; }
.modal-footer { border-top: 1px solid var(--border); }

/* ═══════════════════════════════════════
   BADGES / TAGS
═══════════════════════════════════════ */
.badge.bg-primary {
    background: var(--primary) !important;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.badge.bg-success, .badge.bg-secondary { background: var(--secondary) !important; }
.badge.bg-warning { background: #F59E0B !important; }

/* ═══════════════════════════════════════
   ALERTS
═══════════════════════════════════════ */
.alert-primary { background: var(--primary-glow); border-color: var(--border-orange); color: var(--primary-dark); }
.alert-success { background: rgba(0,121,107,0.08); border-color: rgba(0,121,107,0.3); color: var(--secondary-dark); }

/* ═══════════════════════════════════════
   PAGINATION
═══════════════════════════════════════ */
.page-link { color: var(--primary); border-color: var(--border); }
.page-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.page-item.active .page-link { background: var(--primary); border-color: var(--primary); }

/* ═══════════════════════════════════════
   MISC UTILITIES
═══════════════════════════════════════ */
.rounded { border-radius: var(--radius-sm) !important; }
.rounded-lg { border-radius: var(--radius) !important; }
hr { border-color: var(--border); }

/* Owl Carousel dot nav */
.owl-dots .owl-dot span {
    background: rgba(232,113,28,0.25) !important;
    transition: all .3s;
}
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: var(--primary) !important;
}

/* ═══════════════════════════════════════
   MEMBER CARD (team sections)
═══════════════════════════════════════ */
.member-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15,25,35,0.08);
    border: 1px solid rgba(15,25,35,0.06);
    transition: transform .32s, box-shadow .32s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.member-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(232,113,28,0.14);
}
.member-card .mc-photo {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #eef0f3;
    flex-shrink: 0;
}
.member-card .mc-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .45s;
}
.member-card:hover .mc-photo img { transform: scale(1.05); }
.member-card .mc-photo .no-photo {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f0f2f5, #e4e7eb);
}
.member-card .mc-photo .no-photo i { font-size: 4.5rem; color: #c8ccd2; }
.mc-chip {
    position: absolute;
    bottom: 12px; left: 12px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 13px;
    border-radius: 50px;
    box-shadow: 0 3px 12px rgba(232,113,28,0.38);
    z-index: 2;
}
.member-card .mc-body {
    padding: 1.3rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mc-name { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin: 0; line-height: 1.2; }
.mc-qual { font-size: 0.76rem; font-weight: 600; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.4px; display: flex; align-items: center; gap: 5px; margin: 0; }
.mc-qual i { font-size: 0.7rem; }

/* Compact meta row: qual + exp inline */
.mc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.mc-qual-inline {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: rgba(0,121,107,0.08);
    border: 1px solid rgba(0,121,107,0.2);
    padding: 3px 10px;
    border-radius: 50px;
}
.mc-qual-inline i { font-size: 0.68rem; }
.mc-exp-inline {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: var(--primary-glow);
    border: 1px solid var(--border-orange);
    padding: 3px 10px;
    border-radius: 50px;
}
.mc-exp-inline i { font-size: 0.68rem; color: var(--primary); }
.mc-story {
    font-size: 0.86rem;
    color: var(--text-body);
    line-height: 1.65;
    font-style: italic;
    padding: 10px 12px;
    background: var(--primary-glow);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
    margin: 0;
}
.mc-exp { margin-top: auto; }
.mc-exp-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 5px;
    display: flex; align-items: center; gap: 5px;
}
.mc-exp-label i { color: var(--primary); font-size: 0.65rem; }
.mc-exp-placeholder {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-light);
    border: 1px dashed rgba(15,25,35,0.12);
    border-radius: 8px;
    padding: 8px 12px;
    font-style: italic;
}
.group-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 2rem;
}
.group-label .gl-line { flex: 1; height: 1px; background: rgba(15,25,35,0.08); }
.group-label .gl-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-glow);
    border: 1px solid var(--border-orange);
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
}

/* ═══════════════════════════════════════
   PREMIUM VISUAL ENHANCEMENTS
═══════════════════════════════════════ */

/* Hero: cinematic gradient overlay + scroll cue */
.carousel-caption {
    background: linear-gradient(
        180deg,
        rgba(15,25,35,0.55) 0%,
        rgba(15,25,35,0.18) 45%,
        rgba(15,25,35,0.7) 100%
    ) !important;
}

/* Decorative floating orbs in hero */
#header-carousel .carousel-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(15,25,35,0.55) 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

/* Scroll-down indicator */
.hero-scroll-cue {
    position: absolute;
    bottom: 48px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.hero-scroll-cue span {
    display: block;
    width: 22px; height: 34px;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 11px;
    position: relative;
}
.hero-scroll-cue span::after {
    content: '';
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 7px;
    background: var(--primary-light);
    border-radius: 2px;
    animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
    0%   { transform: translateX(-50%) translateY(0);    opacity: 1; }
    60%  { transform: translateX(-50%) translateY(10px); opacity: 0; }
    100% { transform: translateX(-50%) translateY(0);    opacity: 0; }
}

/* Hero badge/live stat chip */
.hero-live-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50px;
    padding: 6px 18px 6px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.3px;
    margin-bottom: 1.5rem;
}
.hero-live-chip .live-dot {
    width: 8px; height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(74,222,128,0.5);
    animation: livePulse 2s ease infinite;
}
@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
    70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
    100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* Section label — dot accent */
.section-label::before,
.d-inline-block.rounded-pill.bg-light.text-primary::before,
.d-inline-block.rounded-pill.bg-secondary.text-primary::before {
    content: '●';
    font-size: 0.45rem;
    vertical-align: middle;
    margin-right: 7px;
    color: var(--primary);
}

/* Section title underline — wider animated gradient */
.section-title::after {
    width: 52px;
    background: linear-gradient(90deg, var(--primary), var(--secondary-light), var(--primary));
    background-size: 200% auto;
    animation: underlineShimmer 3s linear infinite;
}
@keyframes underlineShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Program cards — shine on hover */
.program-card {
    position: relative;
    overflow: hidden;
}
.program-card::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 60%; height: 200%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255,255,255,0.35) 50%,
        transparent 80%
    );
    transform: rotate(25deg) translateX(-100%);
    transition: transform 0.5s ease;
}
.program-card:hover::after {
    transform: rotate(25deg) translateX(400%);
}

/* Program icon — subtle ring pulse on hover */
.program-card:hover .program-icon-wrap {
    box-shadow: 0 0 0 6px rgba(232,113,28,0.12);
}

/* About section — warm cream bg texture */
.about-section-bg {
    background: linear-gradient(135deg, #fef9f5 0%, #fff8f2 100%);
    position: relative;
}

/* Stats/counter section enhancements */
.facts-section h2, .counter-number {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -1px;
}

/* Donation section — heartbeat icon */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14%       { transform: scale(1.14); }
    28%       { transform: scale(1); }
    42%       { transform: scale(1.1); }
    70%       { transform: scale(1); }
}
.donate .fa-heart,
.btn-navbar-donate .fa-heart {
    animation: heartbeat 2.2s ease-in-out infinite;
    display: inline-block;
}

/* Impact tier card icon animation */
.impact-tier-card:hover i {
    animation: heartbeat 1s ease-in-out;
}

/* Gallery section — refined item borders */
.gallery-item {
    border-radius: var(--radius) !important;
    border: 1px solid var(--border);
}

/* Footer — richer dark gradient */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-3) 100%) !important;
}

/* Subtle noise texture on light sections — via SVG filter */
.bg-light, .container-xxl.bg-light {
    position: relative;
}

/* Page transitions — fade in content  */
.main-content-fade {
    animation: pageFadeIn 0.45s ease-out;
}
@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Career / form pages — card wrapper */
.form-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}
.form-card-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}
.form-card-header::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,113,28,0.18) 0%, transparent 70%);
}
.form-card-header h3,
.form-card-header h4 { color: #fff; }
.form-card-header p { color: rgba(255,255,255,0.62); }
