/* ========================================================
   uhelp NGO — Global Stylesheet
   Theme: Vibrant Purple/Magenta/Orange · Playful · Bold
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Syne:wght@700;800&display=swap');

:root {
    --purple: #7b2fff;
    --purple-dk: #5a1fd1;
    --pink: #e91e8c;
    --pink-lt: #ff4db8;
    --orange: #ff9900;
    --orange-lt: #ffb733;
    --white: #ffffff;
    --off-white: #f8f4ff;
    --light: #f0e8ff;
    --mid: #c9aef5;
    --dark: #120830;
    --dark2: #1e1040;
    --card-bg: #ffffff;
    --text: #2d1b5e;
    --text-muted: #7a6b98;
    --border: rgba(123,47,255,0.12);
    --shadow-sm: 0 4px 20px rgba(123,47,255,0.12);
    --shadow-md: 0 12px 40px rgba(123,47,255,0.18);
    --shadow-lg: 0 24px 60px rgba(123,47,255,0.25);
    --radius: 1.25rem;
    --radius-sm: .75rem;
    --font-head: 'Syne', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --grad-main: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    --grad-warm: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
    --grad-hero: linear-gradient(140deg, #1a0545 0%, #2d0e6e 40%, #1a0030 100%);
    --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    line-height: 1.15;
}

.text-grad {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-orange {
    color: var(--orange);
}

.section-py {
    padding: 5.5rem 0;
}

/* ────────────────────────────────────────
   FLOATING BLOBS (background effect)
──────────────────────────────────────── */
.blob-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    animation: blobFloat 10s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--purple);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: var(--pink);
    bottom: -100px;
    left: -80px;
    animation-delay: 3s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: var(--orange);
    top: 40%;
    left: 35%;
    animation-delay: 6s;
}

@keyframes blobFloat {
    0%,100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.06);
    }
}

/* ────────────────────────────────────────
   NAVBAR
──────────────────────────────────────── */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1rem 0;
    transition: all .4s var(--ease);
    background: transparent;
}

    #mainNav.scrolled {
        background: rgba(255,255,255,.92);
        backdrop-filter: blur(20px);
        padding: .6rem 0;
        box-shadow: 0 4px 30px rgba(123,47,255,.1);
    }

    #mainNav.dark-nav {
        background: rgba(18,8,48,.9);
        backdrop-filter: blur(20px);
    }

        #mainNav.dark-nav.scrolled {
            background: rgba(18,8,48,.97);
        }

.navbar-brand img {
    height: 48px;
}

.brand-name {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
}

    .brand-name span {
        background: var(--grad-main);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.nav-link {
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .02em;
    padding: .4rem .9rem !important;
    border-radius: 2rem;
    color: var(--text) !important;
    transition: all .3s;
}

#mainNav.dark-nav .nav-link {
    color: rgba(255,255,255,.85) !important;
}

.nav-link:hover, .nav-link.active {
    background: rgba(123,47,255,.1);
    color: var(--purple) !important;
}

#mainNav.dark-nav .nav-link:hover {
    background: rgba(255,255,255,.12);
    color: #fff !important;
}

.btn-nav-login {
    border: 2px solid var(--purple);
    color: var(--purple) !important;
    border-radius: 2rem;
    padding: .4rem 1.2rem !important;
    font-weight: 700;
    transition: all .3s;
}

#mainNav.dark-nav .btn-nav-login {
    border-color: rgba(255,255,255,.4);
    color: rgba(255,255,255,.85) !important;
}

.btn-nav-login:hover {
    background: var(--purple);
    color: #fff !important;
}

.btn-nav-join {
    background: var(--grad-main);
    color: #fff !important;
    border-radius: 2rem;
    padding: .45rem 1.4rem !important;
    font-weight: 800;
    transition: all .3s;
    box-shadow: 0 4px 18px rgba(123,47,255,.35);
}

    .btn-nav-join:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(123,47,255,.5);
    }

.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-toggler-icon {
    filter: none;
}

/* ────────────────────────────────────────
   HERO (index.html)
──────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    position: relative;
    background: var(--grad-hero);
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .hero-section .blob {
        opacity: .2;
    }

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,153,0,.15);
    border: 1px solid rgba(255,153,0,.3);
    color: var(--orange-lt);
    padding: .35rem 1.1rem;
    border-radius: 2rem;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp .6s var(--ease) .1s both;
}

    .hero-pill .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--orange);
        animation: pulse 1.5s infinite;
    }

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.7)
    }
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeUp .7s var(--ease) .25s both;
}

    .hero-title .hi {
        display: inline-block;
        color: var(--pink-lt);
    }

    .hero-title .ho {
        display: inline-block;
        color: var(--orange-lt);
    }

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.7);
    max-width: 500px;
    margin-bottom: 2.5rem;
    animation: fadeUp .7s var(--ease) .4s both;
}

.hero-actions {
    animation: fadeUp .7s var(--ease) .55s both;
}

.btn-hero-primary {
    background: var(--grad-warm);
    color: #fff;
    padding: .9rem 2.2rem;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 6px 24px rgba(233,30,140,.4);
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

    .btn-hero-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 36px rgba(233,30,140,.55);
        color: #fff;
    }

.btn-hero-ghost {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,.25);
    padding: .9rem 2.2rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all .3s;
}

    .btn-hero-ghost:hover {
        background: rgba(255,255,255,.2);
        color: #fff;
    }

/* Hero image */
.hero-img-wrap {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
    animation: fadeUp .8s var(--ease) .6s both;
}

    .hero-img-wrap img {
        width: 90%;
        max-width: 420px;
        margin: 0 auto;
        display: block;
        filter: drop-shadow(0 30px 60px rgba(233,30,140,.4));
        animation: heroFloat 5s ease-in-out infinite;
    }

@keyframes heroFloat {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-18px)
    }
}

/* Hero stats */
.hero-stats {
    margin-top: 3rem;
    animation: fadeUp .7s var(--ease) .7s both;
}

.hstat {
    text-align: center;
}

.hstat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.hstat-lbl {
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hstat-div {
    width: 1px;
    background: rgba(255,255,255,.15);
}

/* scroll indicator */
.scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

    .scroll-cue span {
        display: block;
        width: 2px;
        height: 8px;
        border-radius: 2px;
        background: rgba(255,255,255,.4);
        animation: cue 1.5s infinite;
    }

        .scroll-cue span:nth-child(2) {
            animation-delay: .2s;
        }

        .scroll-cue span:nth-child(3) {
            animation-delay: .4s;
        }

@keyframes cue {
    0%,100% {
        opacity: .2
    }

    50% {
        opacity: 1
    }
}

/* ────────────────────────────────────────
   SECTION HEADERS
──────────────────────────────────────── */
.sec-tag {
    display: inline-block;
    background: rgba(123,47,255,.1);
    border: 1px solid rgba(123,47,255,.2);
    color: var(--purple);
    padding: .3rem 1rem;
    border-radius: 2rem;
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .9rem;
}

.sec-title {
    font-size: clamp(1.8rem,3vw,2.9rem);
    color: var(--dark);
    margin-bottom: .75rem;
}

.sec-sub {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
}

/* ────────────────────────────────────────
   IMPACT STRIP
──────────────────────────────────────── */
.impact-strip {
    background: var(--grad-main);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

    .impact-strip::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%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    }

.ibox {
    text-align: center;
    padding: .5rem;
}

.ibox-icon {
    font-size: 2rem;
    margin-bottom: .4rem;
    display: block;
}

.ibox-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    display: block;
}

.ibox-lbl {
    font-size: .85rem;
    color: rgba(255,255,255,.75);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ────────────────────────────────────────
   CAUSE CARDS
──────────────────────────────────────── */
.causes-section {
    background: var(--off-white);
}

.cause-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
    position: relative;
    /* reveal */
    opacity: 0;
    transform: translateY(50px);
}

    .cause-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .cause-card:hover {
        transform: translateY(-10px) !important;
        box-shadow: var(--shadow-lg);
        border-color: rgba(123,47,255,.3);
    }

    .cause-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--grad-main);
        opacity: 0;
        transition: opacity .4s;
        z-index: 0;
        border-radius: var(--radius);
    }

    .cause-card:hover::before {
        opacity: .04;
    }

.cause-card-top {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

    .cause-card-top::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.15));
    }

.cause-card-body {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.cause-tag {
    display: inline-block;
    padding: .2rem .8rem;
    border-radius: 2rem;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: .7rem;
}

.cause-card-body h5 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: .5rem;
}

.cause-card-body p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.1rem;
}

/* Progress */
.prog-wrap {
    height: 7px;
    background: var(--light);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: .45rem;
}

.prog-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--grad-main);
    width: 0;
    transition: width 1.6s var(--ease);
}

.prog-meta {
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 1.1rem;
}

.btn-cause {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--grad-main);
    color: #fff !important;
    padding: .55rem 1.4rem;
    border-radius: 2rem;
    font-weight: 800;
    font-size: .875rem;
    box-shadow: 0 4px 16px rgba(123,47,255,.3);
    transition: all .3s;
}

    .btn-cause:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(123,47,255,.5);
    }

    .btn-cause i {
        transition: transform .25s;
    }

    .btn-cause:hover i {
        transform: translateX(4px);
    }

/* ────────────────────────────────────────
   HOW WE HELP
──────────────────────────────────────── */
.how-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

    .how-section .sec-title {
        color: #fff;
    }

    .how-section .sec-sub {
        color: rgba(255,255,255,.55);
    }

.how-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all .4s var(--ease);
    opacity: 0;
    transform: translateY(40px);
}

    .how-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .how-card:hover {
        background: rgba(123,47,255,.15);
        border-color: rgba(123,47,255,.3);
        transform: translateY(-8px) !important;
    }

.how-icon {
    width: 72px;
    height: 72px;
    border-radius: 1.2rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.how-card h5 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.how-card p {
    color: rgba(255,255,255,.5);
    font-size: .875rem;
    line-height: 1.65;
}

/* ────────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────────── */
.testi-section {
    background: var(--light);
}

.testi-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 2rem;
    transition: all .4s var(--ease);
    opacity: 0;
    transform: translateY(40px);
}

    .testi-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .testi-card:hover {
        transform: translateY(-6px) !important;
        box-shadow: var(--shadow-md);
    }

.testi-quote-icon {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--purple);
    margin-bottom: .75rem;
    display: block;
}

.testi-card p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    color: var(--dark);
    font-size: .9rem;
}

.testi-author span {
    color: var(--text-muted);
    font-size: .78rem;
}

/* ────────────────────────────────────────
   CTA BANNER
──────────────────────────────────────── */
.cta-section {
    background: var(--grad-main);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.08) 0%, transparent 65%);
    }

    .cta-section h2 {
        font-size: clamp(2rem,4vw,3.2rem);
        color: #fff;
        margin-bottom: .75rem;
        position: relative;
    }

    .cta-section p {
        color: rgba(255,255,255,.75);
        font-size: 1.05rem;
        max-width: 500px;
        margin: 0 auto 2.5rem;
        position: relative;
    }

.btn-cta-white {
    background: #fff;
    color: var(--purple) !important;
    padding: .9rem 2.5rem;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 1rem;
    transition: all .3s;
    box-shadow: 0 6px 24px rgba(0,0,0,.2);
}

    .btn-cta-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 36px rgba(0,0,0,.3);
    }

.btn-cta-ghost2 {
    background: rgba(255,255,255,.12);
    color: #fff !important;
    border: 2px solid rgba(255,255,255,.35);
    padding: .9rem 2.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all .3s;
}

    .btn-cta-ghost2:hover {
        background: rgba(255,255,255,.22);
    }

/* ────────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
.site-footer {
    background: var(--dark2);
    padding-top: 0;
}

.footer-wave {
    line-height: 0;
}

    .footer-wave svg {
        width: 100%;
        display: block;
    }

.footer-inner {
    padding: 3rem 0 2rem;
}

.footer-brand img {
    height: 52px;
}

.footer-tagline {
    color: rgba(255,255,255,.5);
    font-size: .88rem;
    line-height: 1.7;
    margin-top: .75rem;
    max-width: 260px;
}

.footer-head {
    color: rgba(255,255,255,.9);
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.1rem;
}

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

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

    .footer-links a {
        color: rgba(255,255,255,.45);
        font-size: .875rem;
        transition: all .3s;
        display: inline-flex;
        align-items: center;
        gap: .4rem;
    }

        .footer-links a:hover {
            color: var(--pink-lt);
            padding-left: 6px;
        }

.footer-nl input {
    width: 100%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    border-radius: .75rem;
    padding: .7rem 1.1rem;
    font-size: .875rem;
    font-family: var(--font-body);
    outline: none;
    transition: all .3s;
    margin-bottom: .6rem;
}

    .footer-nl input:focus {
        border-color: var(--purple);
        background: rgba(255,255,255,.1);
    }

    .footer-nl input::placeholder {
        color: rgba(255,255,255,.3);
    }

.btn-nl {
    background: var(--grad-warm);
    color: #fff;
    border: none;
    width: 100%;
    padding: .7rem;
    border-radius: .75rem;
    font-weight: 800;
    font-size: .875rem;
    cursor: pointer;
    transition: all .3s;
}

    .btn-nl:hover {
        opacity: .88;
    }

.social-row {
    display: flex;
    gap: .6rem;
    margin-top: 1.5rem;
}

    .social-row a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.12);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,.45);
        font-size: .95rem;
        transition: all .3s;
    }

        .social-row a:hover {
            background: var(--purple);
            border-color: var(--purple);
            color: #fff;
            transform: translateY(-3px);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 1.25rem 0;
}

    .footer-bottom p {
        color: rgba(255,255,255,.3);
        font-size: .8rem;
        margin: 0;
    }

    .footer-bottom a {
        color: rgba(255,255,255,.4);
        font-size: .8rem;
        transition: color .3s;
    }

        .footer-bottom a:hover {
            color: var(--pink-lt);
        }

/* ────────────────────────────────────────
   PAGE HEADER (inner pages)
──────────────────────────────────────── */
.page-header {
    background: var(--grad-hero);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

    .page-header::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 30% 60%, rgba(233,30,140,.15), transparent 55%);
    }

.page-header-body {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2.2rem,4vw,3.5rem);
    color: #fff;
    margin-bottom: .75rem;
}

.breadcrumb-item {
    font-size: .875rem;
    color: rgba(255,255,255,.5);
}

    .breadcrumb-item a {
        color: var(--orange-lt);
    }

    .breadcrumb-item.active {
        color: rgba(255,255,255,.6);
    }

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

/* ────────────────────────────────────────
   ABOUT PAGE
──────────────────────────────────────── */
.about-visual {
    background: var(--grad-main);
    border-radius: var(--radius);
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255,255,255,.6);
    position: relative;
    overflow: hidden;
}

    .about-visual img {
        height: 240px;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
    }

.about-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(123,47,255,.08);
    border: 1.5px solid rgba(123,47,255,.15);
    border-radius: 1rem;
    padding: .75rem 1.25rem;
    margin: .3rem;
}

    .about-stat-pill .asp-num {
        font-family: var(--font-head);
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--purple);
    }

    .about-stat-pill .asp-lbl {
        font-size: .8rem;
        color: var(--text-muted);
        font-weight: 700;
    }

.value-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
    transition: all .4s;
}

    .value-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: rgba(123,47,255,.25);
    }

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.value-card h6 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: .4rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: .85rem;
}

.team-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all .4s;
}

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

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
}

.team-card h5 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: .2rem;
}

.team-card span {
    color: var(--text-muted);
    font-size: .8rem;
}

/* ────────────────────────────────────────
   GALLERY
──────────────────────────────────────── */
.gallery-filter .btn-filter {
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    border-radius: 2rem;
    padding: .4rem 1.2rem;
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    transition: all .3s;
}

    .gallery-filter .btn-filter.active,
    .gallery-filter .btn-filter:hover {
        background: var(--grad-main);
        color: #fff;
        border-color: transparent;
    }

.g-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--light);
    cursor: pointer;
    transition: all .4s;
    opacity: 0;
    transform: scale(.93);
}

    .g-item.visible {
        opacity: 1;
        transform: scale(1);
    }

    .g-item:hover {
        transform: scale(1.03) !important;
        box-shadow: var(--shadow-lg);
    }

.g-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    transition: transform .4s;
}

.g-item:hover .g-inner {
    transform: scale(1.08);
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123,47,255,.82), rgba(233,30,140,.82));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    opacity: 0;
    transition: opacity .35s;
}

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

.g-overlay i {
    font-size: 2rem;
    color: #fff;
}

.g-overlay span {
    color: rgba(255,255,255,.85);
    font-size: .875rem;
    font-weight: 700;
}

/* ────────────────────────────────────────
   CONTACT
──────────────────────────────────────── */
.contact-form-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.form-label {
    color: var(--text);
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: .4rem;
}

.form-control, .form-select {
    border: 1.5px solid var(--border) !important;
    border-radius: .75rem !important;
    padding: .75rem 1rem !important;
    font-family: var(--font-body) !important;
    color: var(--text) !important;
    background: var(--off-white) !important;
    font-size: .9rem !important;
    transition: all .3s !important;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--purple) !important;
        box-shadow: 0 0 0 4px rgba(123,47,255,.1) !important;
        background: #fff !important;
    }

    .form-control::placeholder {
        color: var(--text-muted) !important;
    }

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.btn-submit {
    background: var(--grad-main);
    color: #fff;
    border: none;
    padding: .85rem 2.5rem;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 6px 20px rgba(123,47,255,.35);
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(123,47,255,.5);
    }

.cinfo-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    transition: all .4s;
    margin-bottom: 1rem;
}

    .cinfo-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: rgba(123,47,255,.2);
    }

.cinfo-icon {
    width: 50px;
    height: 50px;
    border-radius: 1rem;
    flex-shrink: 0;
    background: var(--grad-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.cinfo-card h6 {
    color: var(--dark);
    margin-bottom: .2rem;
    font-size: .95rem;
}

.cinfo-card p {
    color: var(--text-muted);
    font-size: .85rem;
    margin: 0;
}

/* ────────────────────────────────────────
   LEGAL
──────────────────────────────────────── */
.legal-sidebar {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}

    .legal-sidebar h6 {
        color: var(--dark);
        font-weight: 800;
        margin-bottom: 1rem;
        font-size: .85rem;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .legal-sidebar a {
        display: flex;
        align-items: center;
        gap: .5rem;
        color: var(--text-muted);
        font-size: .875rem;
        padding: .5rem .75rem;
        border-radius: .6rem;
        transition: all .3s;
        margin-bottom: .2rem;
        font-weight: 600;
    }

        .legal-sidebar a:hover, .legal-sidebar a.active {
            background: rgba(123,47,255,.07);
            color: var(--purple);
        }

        .legal-sidebar a i {
            font-size: .8rem;
        }

.legal-body {
}

    .legal-body section {
        margin-bottom: 2.5rem;
        scroll-margin-top: 100px;
    }

    .legal-body h3 {
        font-size: 1.4rem;
        color: var(--dark);
        margin-bottom: .75rem;
        padding-bottom: .5rem;
        border-bottom: 2px solid var(--light);
    }

    .legal-body p {
        color: var(--text-muted);
        line-height: 1.8;
        margin-bottom: .75rem;
        font-size: .9rem;
    }

    .legal-body ul {
        color: var(--text-muted);
        padding-left: 1.5rem;
        font-size: .9rem;
    }

        .legal-body ul li {
            margin-bottom: .4rem;
            line-height: 1.7;
        }

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(123,47,255,.08);
    border: 1px solid rgba(123,47,255,.15);
    color: var(--purple);
    padding: .4rem 1rem;
    border-radius: .6rem;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* ────────────────────────────────────────
   AUTH (Login / Register)
──────────────────────────────────────── */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

    .auth-page .blob {
        opacity: .15;
    }

.auth-card {
    background: rgba(255,255,255,.97);
    border-radius: 1.75rem;
    padding: 1rem 1.75rem;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 40px 80px rgba(0,0,0,.4);
    animation: fadeUp .6s var(--ease) .1s both;
}

.auth-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

    .auth-logo img {
        height: 64px;
    }

.auth-title {
    font-size: 1.9rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: .3rem;
}

.auth-sub {
    color: var(--text-muted);
    text-align: center;
    font-size: .875rem;
    margin-bottom: 2rem;
}

.btn-auth {
    background: var(--grad-main);
    color: #fff;
    border: none;
    width: 100%;
    padding: .9rem;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 6px 20px rgba(123,47,255,.35);
}

    .btn-auth:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(123,47,255,.55);
    }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

    .auth-divider::before, .auth-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--light);
    }

    .auth-divider span {
        color: var(--text-muted);
        font-size: .8rem;
        font-weight: 700;
    }

.social-auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.btn-soc {
    border: 1.5px solid var(--border);
    background: var(--off-white);
    color: var(--text-muted);
    padding: .6rem;
    border-radius: .75rem;
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

    .btn-soc:hover {
        border-color: var(--purple);
        color: var(--purple);
        background: rgba(123,47,255,.05);
    }

.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: .875rem;
}

    .auth-switch a {
        color: var(--purple);
        font-weight: 800;
    }

        .auth-switch a:hover {
            text-decoration: underline;
        }

.pw-toggle {
    position: relative;
}

    .pw-toggle .form-control {
        padding-right: 3rem !important;
    }

.pw-eye {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    cursor: pointer;
    z-index: 5;
    transition: color .3s;
}

    .pw-eye:hover {
        color: var(--purple);
    }

.checkbox-custom .form-check-input:checked {
    background-color: var(--purple);
    border-color: var(--purple);
}

/* ────────────────────────────────────────
   ANIMATIONS UTILITY
──────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* stagger helper */
.stagger-1 {
    transition-delay: .08s;
}

.stagger-2 {
    transition-delay: .16s;
}

.stagger-3 {
    transition-delay: .24s;
}

.stagger-4 {
    transition-delay: .32s;
}

.stagger-5 {
    transition-delay: .40s;
}

.stagger-6 {
    transition-delay: .48s;
}

/* ────────────────────────────────────────
   MISC UTILITIES
──────────────────────────────────────── */
.bg-light-purple {
    background: var(--light);
}

.rounded-xl {
    border-radius: var(--radius) !important;
}

@media (max-width: 991px) {
    .hero-img-wrap {
        text-align: center;
    }

        .hero-img-wrap img {
            max-width: 280px;
        }

    .hero-content {
        padding-top: 7rem;
        text-align: center;
    }

    .hero-sub {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
