/* Heartly Fundraising Charity Template — design system for Uthhan */
:root {
    --primary: #16333B;
    --primary-light: #1e424c;
    --accent: #FCDF50;
    --accent-hover: #f5d030;
    --accent-dark: #16333B;
    --text-main: #16333B;
    --text-muted: #4a6670;
    --bg-light: #F5F5F5;
    --bg-cream: #FAF6F1;
    --bg-card: #ffffff;
    --border-color: #ebe8e0;
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Quicksand', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(18, 18, 31, 0.06);
    --shadow-md: 0 8px 24px rgba(18, 18, 31, 0.08);
    --shadow-lg: 0 16px 40px rgba(18, 18, 31, 0.1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-cream);
    line-height: 1.65;
    overflow-x: hidden;
}

/* Heartly-style custom mouse cursor — black dot follows pointer */
@media (hover: hover) and (pointer: fine) {
    body.custom-cursor-active,
    body.custom-cursor-active a,
    body.custom-cursor-active button {
        cursor: none;
    }
}

.mouseCursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 100000;
    visibility: hidden;
    will-change: transform;
}

.cursor-outer {
    width: 30px;
    height: 30px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    opacity: 0.34;
    transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.cursor-inner {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    opacity: 1;
    transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.cursor-outer.cursor-hover {
    width: 50px;
    height: 50px;
    opacity: 0.14;
}

.cursor-inner.cursor-hover {
    width: 6px;
    height: 6px;
    opacity: 0;
}

@media (hover: none), (pointer: coarse) {
    .mouseCursor {
        display: none !important;
    }

    body.custom-cursor-active,
    body.custom-cursor-active a,
    body.custom-cursor-active button {
        cursor: auto;
    }
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Bar */
.topbar {
    background-color: var(--bg-cream);
    color: var(--text-muted);
    font-size: 0.78rem;
    padding: 0.55rem 0;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

body.page-home .topbar {
    background-color: transparent;
    border-bottom: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    color: var(--primary);
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar-left, .topbar-right {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-left span, .topbar-right span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.topbar-left i, .topbar-right i {
    color: var(--accent);
}

.play-store-btn {
    background-color: var(--accent);
    color: var(--primary);
    border-radius: var(--radius-pill);
    padding: 5px 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.72rem;
    transition: var(--transition);
}

.play-store-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

@media (min-width: 1200px) {
    header .container {
        max-width: 100% !important;
        padding: 0 4rem !important;
    }
}

body.page-home header {
    background-color: transparent;
    backdrop-filter: none;
    border-bottom: none;
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 9999;
}

body.page-home header.is-scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    gap: 1rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-area img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

.nav-links > li > a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.86rem;
    padding: 0.5rem 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.nav-links > li > a:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-search {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--primary);
    font-size: 1.05rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-search:hover {
    background: var(--bg-light);
}

.btn-donate-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 1.65rem;
    height: 55px;
    background-color: var(--primary);
    color: white;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-donate-nav::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s ease;
    z-index: -1;
}

.btn-donate-nav:hover {
    color: var(--primary);
}

.btn-donate-nav:hover::before {
    width: 800px;
    height: 800px;
}

.btn-donate-nav i {
    font-size: 0.75rem;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: white;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 1rem 0;
    list-style: none;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.4s ease-in-out;
    border-top: 4px solid var(--accent);
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.dropdown:hover > a {
    color: var(--accent) !important;
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer !important;
}

.dropdown-menu li a::before {
    content: "\2014 ";
    color: var(--accent);
    opacity: 0;
    margin-right: 6px;
    margin-left: -1rem;
    transition: all 0.25s ease;
    display: inline-block;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
    margin-left: 0;
}

.dropdown-menu li a:hover {
    background-color: transparent !important;
    color: var(--accent) !important;
    padding-left: 1.75rem !important;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    transform: translateX(10px);
}

.dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile menu */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    background: none;
    border: none;
}

.burger span {
    width: 26px;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 18, 31, 0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: white;
    z-index: 99999;
    padding: 2rem 1.5rem 6rem 1.5rem;
    transform: translateX(100%);
    transition: var(--transition);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-panel.active {
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.mobile-nav-panel ul {
    list-style: none;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.mobile-nav-panel ul li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-panel ul li a {
    display: block;
    padding: 0.85rem 0;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Shared buttons */
.btn-heartly-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 2rem;
    height: 58px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: capitalize;
}

.btn-heartly-primary::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    background-color: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s ease;
    z-index: -1;
}

.btn-heartly-primary:hover {
    color: white;
}

.btn-heartly-primary:hover::before {
    width: 800px;
    height: 800px;
}

.btn-heartly-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 2rem;
    height: 58px;
    background-color: var(--primary);
    color: white;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: capitalize;
}

.btn-heartly-dark::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s ease;
    z-index: -1;
}

.btn-heartly-dark:hover {
    color: var(--primary);
}

.btn-heartly-dark:hover::before {
    width: 800px;
    height: 800px;
}

.btn-heartly-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 1.75rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-heartly-outline:hover {
    background: var(--primary);
    color: white;
}

/* Legacy button aliases for inner pages */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    border-radius: var(--radius-pill);
    padding: 0.85rem 1.75rem;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-pill);
    padding: 0.8rem 1.5rem;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

/* Section utilities */
.section {
    padding: 5.5rem 0;
}

.section-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.45rem 1rem;
    border-radius: 4px;
    transform: rotate(-4deg);
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
    max-width: 640px;
}

/* Inner page styling */
.page-hero {
    background: var(--bg-cream);
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.page-content {
    padding: 4rem 0;
    max-width: 860px;
    margin: 0 auto;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.page-content blockquote,
.page-quote {
    border-left: 4px solid var(--accent);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background: white;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-muted);
}

.page-content a {
    color: var(--primary);
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #191e2c;
    color: #ffffff;
    padding: 5rem 0 2rem;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1.3fr;
    gap: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.podcast-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.75rem;
}

.podcast-links a img {
    height: 24px;
    width: auto;
    border-radius: 50%;
    transition: var(--transition);
}

.podcast-links a img:hover {
    transform: scale(1.1);
}

.podcast-links a i {
    color: #1ed760;
    font-size: 1.4rem;
    transition: var(--transition);
}

.footer-links-col h4 {
    font-family: var(--font-display);
    color: white;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.founder-img {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.founder-img:hover {
    transform: translateY(-3px);
}

.btn-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.btn-footer-donate {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-footer-donate:hover {
    background-color: var(--accent-hover);
}

.btn-footer-whatsapp {
    background-color: #25d366;
    color: white;
}

.btn-footer-whatsapp:hover {
    background-color: #128c7e;
}

#google_translate_element select {
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: #f8fafc !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-pill) !important;
    font-family: var(--font-sans) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    outline: none !important;
    width: 100% !important;
    max-width: 240px !important;
}

#google_translate_element select option {
    color: #1e293b !important;
    background-color: #ffffff !important;
}

.skiptranslate > iframe, .goog-logo-link, .goog-te-gadget span {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0px !important;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #ffffff;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links a {
    color: var(--accent);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-bottom-links a:hover {
    text-decoration: underline;
}

/* Hero — Heartly grt-hero-1 style */
.hero {
    background-color: var(--bg-light);
    padding: 200px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero-deco--left {
    left: 0;
    top: 15%;
    width: clamp(200px, 20vw, 320px);
}

.hero-deco--right-top {
    right: 0;
    top: 12%;
    width: clamp(150px, 15vw, 250px);
}

.hero-deco--right-bottom {
    right: 8%;
    bottom: 35%;
    width: 60px;
}

.hero-deco--circle {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background: transparent;
}

.hero-deco--circle-lg {
    width: 28px;
    height: 28px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 2rem);
    padding: 0.6rem 1rem;
    border-radius: 4px;
    transform: rotate(-7deg);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 0;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 400;
    max-width: 680px;
    margin: 1.85rem auto 0;
    line-height: 1.75;
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 1.5rem 0;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d5dd;
}

.hero-dot.active {
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(22, 51, 59, 0.12);
}

.hero-cta-wrapper {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-login-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding-bottom: 1rem;
}

/* Heartly staggered hero gallery — inside hero section */
.hero-gallery {
    margin: 0 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
    align-items: end;
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.hero-gallery__item {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.hero-gallery__item:hover {
    transform: translateY(-6px);
}

.hero-gallery__item img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-gallery__item--focus-top img {
    object-position: top center;
}

.hero-gallery__item--tall {
    height: 400px;
}

.hero-gallery__item--mid {
    height: 340px;
}

.hero-gallery__item--short {
    height: 300px;
}

.hero-brand-section {
    margin: 0 50px;
    padding-bottom: 4rem;
}

@media (max-width: 767px) {
    .hero-brand-section {
        margin: 0 18px;
    }
}

.hero-brand-tagline {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 4.5rem auto 2.5rem;
    max-width: 720px;
    line-height: 1.5;
}

.hero-brand-indicator {
    display: flex;
    justify-content: center;
    margin: 2.5rem 0 1.5rem;
}

.hero-brand-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(208, 213, 221, 0.55);
}

/* Heartly-style auto-scrolling partner logos */
.brand-marquee {
    overflow: hidden;
    width: 100%;
    padding: 1.5rem 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.brand-marquee__track {
    display: flex;
    align-items: center;
    gap: 100px;
    width: max-content;
    animation: brandMarquee 40s linear infinite;
}

.brand-marquee:hover .brand-marquee__track {
    animation-play-state: paused;
}

.brand-marquee__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 90px;
    padding: 0 1rem;
}

.brand-marquee__item img {
    max-height: 80px;
    max-width: 260px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    filter: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.brand-marquee__item:hover img {
    opacity: 1;
    transform: scale(1.08);
}

@keyframes brandMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Legacy impact gallery alias */
.impact-gallery {
    background: var(--bg-cream);
    padding: 2.5rem 0 3.5rem;
}

.impact-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
    align-items: end;
    max-width: 1180px;
    margin: 0 auto;
}

.impact-gallery__item {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(29, 41, 57, 0.08);
    transition: var(--transition);
}

.impact-gallery__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(29, 41, 57, 0.12);
}

.impact-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.impact-gallery__item--h1 { height: 240px; }
.impact-gallery__item--h2 { height: 340px; }
.impact-gallery__item--h3 { height: 210px; }
.impact-gallery__item--h4 { height: 360px; }

.impact-gallery__indicator {
    display: flex;
    justify-content: center;
    margin: 2rem 0 1.25rem;
}

.impact-gallery__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(208, 213, 221, 0.55);
}

.impact-gallery__tagline {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-weight: 600;
    color: var(--primary);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Heartly About section — video left, text right, scroll effects */
.about-section {
    background-color: white;
    position: relative;
}

.about-wrapper {
    position: relative;
    margin: 0 50px;
}

@media (max-width: 767px) {
    .about-wrapper {
        margin: 0 18px;
    }
}

.about-shape {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

.about-shape--1 {
    top: 2%;
    right: 26%;
    width: 130px;
}

.about-shape--2 {
    left: 2%;
    right: auto;
    bottom: 4%;
    width: 260px;
}

@media (max-width: 1399px) {
    .about-shape {
        display: none;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
}

.about-media-col {
    align-self: start;
    z-index: 1;
}

.about-media-inner {
    position: relative;
}

/* About YouTube player — poster always visible */
.about-yt {
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px;
    box-shadow: -5px 6px 6px 0 #eb9d37;
    background: #fff;
    line-height: 0;
}

.about-yt__facade {
    position: relative;
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    background: #000;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.about-yt__facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-yt__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    border-radius: 12px;
    background: #ff0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.about-yt__facade:hover .about-yt__play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #cc0000;
}

.about-yt iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
    background: #000;
}

@media (max-width: 768px) {
    .about-yt iframe {
        height: 240px;
    }
}

.about-media-caption {
    color: var(--text-main);
    margin-top: 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-content-col {
    padding-left: 1rem;
    position: relative;
    z-index: 2;
    background: white;
}

.about-scroll-step {
    margin-bottom: 2.5rem;
}

.about-scroll-step:last-child {
    margin-bottom: 0;
}

.about-content-col p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-size: 1rem;
    color: var(--text-main);
}

.about-content-col .section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
}

/* Heartly-style horizontal text marquee */
.text-marquee-section {
    background-color: var(--bg-cream);
    padding: 2rem 0 3rem;
    overflow: hidden;
}

.text-marquee {
    --marquee-duration: 45s;
    --marquee-gap: 50px;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--marquee-gap);
}

.text-marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--marquee-gap);
    min-width: 100%;
    animation: textMarqueeScroll var(--marquee-duration) linear infinite;
}

.text-marquee__item {
    display: flex;
    align-items: center;
    gap: 50px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.text-marquee__item i {
    font-size: 0.55em;
    color: var(--accent);
    -webkit-text-stroke: 0;
}

.text-marquee__item span {
    display: inline-block;
}

@keyframes textMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - var(--marquee-gap)));
    }
}

@media (max-width: 767px) {
    .text-marquee__item {
        gap: 30px;
    }

    .text-marquee {
        --marquee-gap: 30px;
    }
}

/* Welcome / content sections (legacy) */
.welcome-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.welcome-text p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-size: 1rem;
    color: var(--text-main);
}

.welcome-label {
    font-size: 0.85rem;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-banner {
    background-color: white;
    border-left: 4px solid var(--accent);
    padding: 1.5rem 1.75rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.highlight-banner p {
    font-style: italic;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 1rem 0;
}

.highlight-banner p:last-child {
    margin: 0;
}

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    background-color: #000;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.testimonial-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    min-height: 48px;
}

.iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #000;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.iframe-vertical {
    position: relative;
    padding-bottom: 177.78%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    max-width: 320px;
    margin: 0 auto;
}

.iframe-vertical iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.reel-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    background-color: white;
    padding: 1rem;
}

.reel-image-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

.reel-image-card img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.sponsors-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.sponsor-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.sponsor-card img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header-center .section-subtitle {
    margin: 0 auto;
}

/* Stories that Speak — Heartly causes slider section */
.stories-section {
    background-color: var(--primary);
    padding: 5rem 0;
    overflow: hidden;
}

.stories-section__header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stories-section__header {
    text-align: left;
    margin-bottom: 0;
}

.btn-see-all-stories {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(235, 157, 55, 0.15);
    color: var(--accent);
    border: 1.5px solid var(--accent);
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-see-all-stories:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 157, 55, 0.3);
}

@media (max-width: 768px) {
    .stories-section__header-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .stories-section__header {
        text-align: center;
    }
}

.section-badge--light {
    background: var(--accent);
    color: var(--primary);
}

.section-title--light {
    color: white;
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.75);
    margin: 0.5rem auto 0;
}

.stories-slider {
    padding: 0 1.5rem 2rem;
    overflow: visible;
}

.stories-slider .swiper-slide {
    height: auto;
}

.story-card {
    background: #1e414b;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-10px);
}

.story-card__content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.story-card__content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.75rem;
}

.story-card__media {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.75rem;
    aspect-ratio: 16 / 9;
    background: #000;
}

.story-card__media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.story-card__media--vertical {
    aspect-ratio: 9 / 16;
    max-width: 280px;
    min-height: 320px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-decoration: none;
}

.story-card__reel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.story-card__reel:hover img {
    transform: scale(1.06);
}

.story-card__reel-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: rgba(22, 51, 59, 0.35);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.3s ease;
    z-index: 1;
}

.story-card__reel-overlay i {
    font-size: 2.5rem;
    color: white;
}

.story-card__reel:hover .story-card__reel-overlay {
    background: rgba(22, 51, 59, 0.55);
}

.story-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-top: auto;
}

.story-card__link-text {
    position: relative;
    display: inline-block;
    height: 22px;
    overflow: hidden;
}

.story-card__link-text span {
    display: block;
    transition: transform 0.4s ease;
}

.story-card__link-text span:last-child {
    position: absolute;
    left: 0;
    top: 100%;
    color: var(--accent);
}

.story-card__link:hover .story-card__link-text span:first-child {
    transform: translateY(-100%);
}

.story-card__link:hover .story-card__link-text span:last-child {
    transform: translateY(-100%);
}

.story-card__link:hover i {
    color: var(--accent);
}

/* Impact counters — Heartly circle stats */
.impact-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
}

.impact-counter {
    text-align: center;
}

.impact-counter__circle {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.impact-counter__circle img {
    width: min(180px, 100%);
    height: auto;
}

.impact-counter__number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    font-weight: 600;
    color: white;
    line-height: 1;
    white-space: nowrap;
}

.impact-counter p {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: white;
    margin-top: 1.5rem;
}

.stories-section .social-buttons {
    margin-top: 3.5rem;
}

.btn-heartly-outline--light {
    border-color: white;
    color: white;
}

.btn-heartly-outline--light:hover {
    background: white;
    color: var(--primary);
}

.social-buttons {
    margin-top: 3.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: var(--radius-pill);
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 1.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 1600px) {
    .hero-gallery {
        gap: 48px;
    }
}

@media (max-width: 1399px) {
    .hero-gallery {
        gap: 30px;
    }

    .hero-deco--left,
    .hero-deco--right-top {
        opacity: 0.35;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .welcome-grid,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-media-col,
    .about-content-col {
        display: contents;
    }

    .about-scroll-step[data-step="0"] {
        order: 1;
    }

    .about-media-inner {
        order: 2;
        margin-bottom: 1rem;
    }

    .about-scroll-step[data-step="1"] {
        order: 3;
    }

    .about-scroll-step[data-step="2"] {
        order: 4;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .impact-counters {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .sponsors-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .impact-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-gallery {
        grid-template-columns: repeat(2, 1fr);
        align-items: initial;
        margin: 60px 30px 0;
        gap: 24px;
    }

    .hero {
        padding: 150px 0 0;
    }
}

@media (max-width: 768px) {
    .topbar-wrapper {
        justify-content: center;
        text-align: center;
    }

    body.page-home header {
        top: 0;
    }

    body.page-home .topbar {
        display: none;
    }

    .hero {
        padding: 120px 0 0;
    }

    .hero-deco--left,
    .hero-deco--right-top {
        display: none !important;
    }

    .hero-badge {
        transform: rotate(0deg);
        font-size: 1.25rem;
    }

    .hero-gallery {
        grid-template-columns: 1fr;
        margin: 50px 15px 0;
        gap: 15px;
    }

    .hero-gallery__item--tall {
        height: 340px;
    }

    .hero-gallery__item--mid {
        height: 300px;
    }

    .hero-gallery__item--short {
        height: 280px;
    }

    .brand-marquee__track {
        gap: 60px;
    }

    .brand-marquee__item {
        min-width: 160px;
        height: 70px;
    }

    .brand-marquee__item img {
        max-height: 60px;
        max-width: 180px;
    }

    .impact-counters {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-card {
        padding: 2rem 1.5rem;
    }

    .nav-actions .btn-donate-nav {
        /*padding: 0 0.85rem;*/
        padding: 0;
        width: 42px;
        height: 42px;
        font-size: 0;
        justify-content: center;
        gap: 0;
    }

    .nav-actions .btn-donate-nav i {
        /*font-size: 0.85rem;*/
        font-size: 1rem;
        margin: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sponsors-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-gallery__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .impact-gallery__item--h1,
    .impact-gallery__item--h2,
    .impact-gallery__item--h3,
    .impact-gallery__item--h4 {
        height: 280px;
    }

    .hero-deco {
        opacity: 0.35;
    }
}

/* Force hand cursor on all clickable elements globally */
a, 
button, 
[role="button"], 
input[type="submit"], 
input[type="button"], 
select, 
.btn-heartly-primary, 
.btn-heartly-secondary, 
.news-card__link, 
.whatsapp-float, 
.instagram-btn, 
.youtube-btn,
.social-links a,
.footer-links a,
#google_translate_element select {
    cursor: pointer !important;
}
/* Donation Modal Styles */
.donate-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(16, 33, 39, 0.7);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.donate-modal.show {
    display: flex;
    opacity: 1;
}

.donate-modal-content {
    background-color: #ffffff;
    margin: auto;
    border-radius: 20px;
    width: 90%;
    max-width: 850px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideUp 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.donate-modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #94a3b8;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}

.donate-modal-close:hover {
    color: #1e293b;
}

.donate-modal-body {
    padding: 30px;
}

.donate-modal-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.donate-banner-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.donate-modal-info h3 {
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.donate-modal-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bank-details-box {
    background-color: var(--bg-cream);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(16, 33, 39, 0.05);
}

.bank-details-box h4 {
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    border-bottom: 1.5px solid var(--accent);
    padding-bottom: 6px;
    display: inline-block;
}

.bank-details-table {
    width: 100%;
    border-collapse: collapse;
}

.bank-details-table td {
    padding: 5px 0;
    font-size: 0.85rem;
    color: var(--text-main);
    vertical-align: top;
}

.donate-modal-qr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.qr-card {
    background-color: #f8fafc;
    border: 1.5px dashed rgba(16, 33, 39, 0.15);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-card h4 {
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.modal-qr-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.qr-subtitle {
    font-size: 0.8rem !important;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 15px;
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(37, 211, 102, 0.1);
    color: #128c7e;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
}

@media (max-width: 768px) {
    .donate-modal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .donate-modal-content {
        width: 95%;
    }
    .donate-banner-img {
        height: 130px;
    }
    .donate-modal-body {
        padding: 20px;
    }
}
