/* Google Fonts - Playfair Display for headings, Inter for body */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --brand: #159447;
    --brand-dark: #0b6b34;
    --brand-soft: #eaf8ef;
    --accent: #159447;
    --ink: #202124;
    --muted: #7b8087;
    --line: #e6e8ec;
    --panel: #ffffff;
    --soft: #f6fbf8;
    --blue-soft: #eaf7fd;
    --blue: #0d6efd;
    --radius: 8px;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    background: #fff;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    letter-spacing: 0;
    scrollbar-color: #93d4aa #f5faf7;
    scrollbar-width: thin;
}

/* Headings - Bigger, elegant serif font */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.story-title {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.4rem; }

/* Daankart logo - Times New Roman bold and dark */
.navbar-brand.brand-mark span:last-child,
.footer-brand span:last-child,
.admin-brand strong {
    font-family: 'Times New Roman', Times, serif !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #000000 !important;
}
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

/* Body text - smaller, lighter */
p, span, li, td, th, label, input, textarea, select, button {
    font-family: var(--font-body);
}

p {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Muted text even smaller */
.small, .text-muted, .text-small {
    font-size: 0.85rem;
}

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

html {
    scroll-behavior: smooth;
}

body::-webkit-scrollbar,
.cause-icon-row::-webkit-scrollbar {
    height: 6px;
    width: 8px;
}

body::-webkit-scrollbar-track,
.cause-icon-row::-webkit-scrollbar-track {
    background: #f5faf7;
}

body::-webkit-scrollbar-thumb,
.cause-icon-row::-webkit-scrollbar-thumb {
    background: #93d4aa;
    border-radius: 999px;
}

body::-webkit-scrollbar-thumb:hover,
.cause-icon-row::-webkit-scrollbar-thumb:hover {
    background: var(--brand);
}

img {
    max-width: 100%;
}

.navbar {
    min-height: auto;
    z-index: 1030;
    padding: 0.5rem 0;
}

.navbar .container {
    position: relative;
}

.brand-mark {
    color: var(--ink);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand-icon {
    align-items: center;
    display: inline-flex;
    height: 50px;
    justify-content: center;
    width: 190px;
    margin-bottom: 0;
    overflow: visible;
    flex: 0 0 190px;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-brand .brand-icon {
    aspect-ratio: 1788 / 465;
    height: auto;
    width: 400px;
    max-width: 100%;
    flex: 0 0 auto;
}

.footer-brand .brand-icon img {
    height: auto;
}

.brand-icon i {
    font-size: 1.15rem;
    background: var(--brand);
    border-radius: var(--radius);
    color: #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-left {
    margin-left: 1.5rem;
}

.nav-link,
.nav-search {
    background: transparent;
    border: 0;
    color: var(--ink);
    font-weight: 750;
    padding: .65rem .7rem;
}

.nav-link.active,
.nav-link:hover,
.nav-search:hover {
    color: var(--brand);
}

.nav-mega {
    position: static;
}

.mega-menu {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: var(--radius);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .13);
    display: grid;
    gap: 2.3rem;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    left: 50%;
    opacity: 0;
    padding: 1.45rem 1.5rem;
    pointer-events: none;
    top: calc(100% - 4px);
    transform: translateX(-50%) translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    visibility: hidden;
    width: min(920px, calc(100vw - 48px));
}

.nav-mega.compact .mega-menu {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    width: min(620px, calc(100vw - 48px));
}

.nav-mega:hover .mega-menu,
.nav-mega:focus-within .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
}

.mega-column {
    display: grid;
    gap: .85rem;
}

.mega-column span {
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: .95rem;
    font-weight: 800;
    padding-bottom: .75rem;
}

.mega-column a {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 750;
}

.mega-column a:hover {
    color: var(--brand);
}

.btn {
    border-radius: var(--radius);
    font-weight: 800;
}

.btn-brand {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

.btn-campaign-green {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

.btn-campaign-green:hover,
.btn-campaign-green:focus {
    background: #059669;
    border-color: #059669;
    color: #fff;
}

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

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background: var(--brand-soft);
    border-color: var(--brand);
    color: var(--brand);
}

.btn-campaign,
.btn-campaign-solid {
    background: #fff;
    border: 1px solid var(--ink);
    color: var(--ink);
    font-style: italic;
    padding: .65rem 1.1rem;
}

.btn-campaign:hover,
.btn-campaign:focus,
.btn-campaign-solid {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.nav-login-btn {
    background: transparent;
    border: 0;
    color: var(--ink);
    font-weight: 800;
}

.user-chip {
    align-items: center;
    background: var(--brand-soft);
    border: 1px solid #c8ead5;
    border-radius: var(--radius);
    color: var(--brand-dark);
    display: inline-flex;
    font-weight: 850;
    gap: .45rem;
    min-height: 40px;
    padding: .45rem .7rem;
}

.icon-btn {
    align-items: center;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    padding: 0;
    width: 44px;
}

.cart-count {
    font-size: .65rem;
    left: 27px;
    min-width: 20px;
    position: absolute;
    top: -5px;
}

.flash-wrap {
    margin-top: 1rem;
}

.alert-payment {
    background: var(--brand-soft);
    border-color: #b7e4c7;
    color: #065f46;
}

.section-pad {
    padding: 5.2rem 0;
}

.muted-band,
.campaign-band {
    background: #f8faf9;
}

.section-heading {
    align-items: end;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-heading.compact {
    margin-bottom: 1.25rem;
}

.eyebrow {
    align-items: center;
    color: #d7f7e3;
    display: inline-flex;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .35rem;
}

.eyebrow.dark {
    color: var(--muted);
}

.section-heading h2,
.how-works-section h2,
.home-impact-band h2,
.india-impact h2,
.detail-summary h1,
.auth-panel h1,
.success-panel h1,
.page-hero h1 {
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0;
}

.text-link {
    color: var(--brand);
    font-size: 1.05rem;
    font-weight: 800;
}

.lead-sm {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.home-hero-rail {
    background: #fbf8f3;
    overflow: hidden;
    padding: 1.6rem 0 1.85rem;
}

.hero-rail-track {
    animation: heroRail 160s linear infinite;
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.home-hero-rail:hover .hero-rail-track {
    animation-play-state: paused;
}

.hero-cause-card {
    background: #fff;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .08);
    flex: 0 0 min(980px, 76vw);
    height: 280px;
    overflow: hidden;
    position: relative;
}

.hero-cause-card img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    width: 58%;
}

.hero-cause-card::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .93) 42%, rgba(255, 255, 255, .18) 72%);
    content: "";
    inset: 0;
    position: absolute;
}

.hero-cause-copy {
    max-width: 520px;
    padding: 2.2rem 2.4rem;
    position: relative;
    z-index: 1;
}

.hero-cause-copy span {
    color: var(--brand);
    font-weight: 850;
}

.hero-cause-copy h1 {
    font-size: clamp(1.75rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
    margin: .35rem 0 .65rem;
}

.hero-cause-copy p {
    color: #4a5565;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.trust-marquee {
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    overflow: hidden;
}

.motto-strip {
    background: #f2fbf5;
    border-bottom: 1px solid #dbeee3;
    border-top: 1px solid #dbeee3;
}

.motto-strip p {
    color: var(--brand-dark);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 850;
    line-height: 1.5;
    margin: 0;
    padding: 1.15rem 0;
    text-align: center;
}

.marquee-track {
    animation: marqueeRight 90s linear infinite;
    display: flex;
    width: max-content;
}

.trust-marquee span {
    align-items: center;
    color: var(--ink);
    display: inline-flex;
    font-size: 1.1rem;
    font-weight: 800;
    gap: 2.4rem;
    min-width: 260px;
    padding: 1.15rem 1.6rem;
    white-space: nowrap;
}

.trust-marquee i {
    color: var(--brand);
}

.cause-icon-row {
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: .85rem;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

.cause-icon-row.compact {
    padding-top: .25rem;
}

.cause-icon-tile {
    align-items: center;
    color: var(--muted);
    display: grid;
    flex: 0 0 130px;
    gap: .35rem;
    justify-items: center;
    min-height: 86px;
    padding: .45rem .25rem .75rem;
    position: relative;
    text-align: center;
}

.cause-icon-tile::after {
    background: transparent;
    bottom: -14px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.cause-icon-tile i {
    color: var(--muted);
    font-size: 1.9rem;
}

.cause-icon-tile .category-emoji {
    color: var(--muted);
    font-size: 2rem;
    line-height: 1;
}

.cause-icon-tile span {
    font-size: .95rem;
    font-weight: 800;
}

.cause-icon-tile:hover,
.cause-icon-tile.active {
    color: var(--brand);
}

.cause-icon-tile:hover i,
.cause-icon-tile.active i {
    color: var(--brand);
}

.cause-icon-tile:hover::after,
.cause-icon-tile.active::after {
    background: var(--brand);
}

.campaign-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 35px rgba(15, 23, 42, .06);
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.campaign-image-link {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius) var(--radius) 0 0;
    display: block;
    overflow: hidden;
    position: relative;
}

.campaign-image-link img,
.detail-image-wrap img,
.rounded-media {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.campaign-image-link img {
    transition: transform .25s ease;
}

.campaign-card:hover .campaign-image-link img {
    transform: scale(1.04);
}

.campaign-badge {
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .16);
    color: var(--brand);
    font-size: .75rem;
    font-weight: 850;
    left: 14px;
    padding: .35rem .7rem;
    position: absolute;
    top: 14px;
}

.campaign-badge.urgent {
    background: var(--brand);
    color: #fff;
}

.campaign-badge.tax-benefit {
    background: #10b981;
    color: #fff;
}

.campaign-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.category-pill {
    background: var(--brand-soft);
    border-radius: 999px;
    color: var(--brand-dark);
    display: inline-flex;
    font-size: .75rem;
    font-weight: 850;
    padding: .35rem .7rem;
}

.campaign-body h3 {
    font-size: 1.15rem;
    font-weight: 850;
    line-height: 1.25;
    margin: .35rem 0 .6rem;
}

.campaign-body p {
    color: var(--muted);
    flex: 1;
    line-height: 1.55;
}

.campaign-need {
    align-items: center;
    background: var(--soft);
    border-radius: var(--radius);
    color: var(--brand-dark);
    display: flex;
    gap: .5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    padding: .7rem .8rem;
}

.campaign-card-actions {
    align-items: stretch;
    display: grid;
    gap: .55rem;
    grid-template-columns: 1fr 48px;
}

.campaign-share {
    min-width: 0;
}

.share-toggle {
    align-items: center;
    display: inline-flex;
    height: 100%;
    justify-content: center;
    min-height: 42px;
    padding: 0;
    width: 48px;
}

.campaign-share-menu {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
    min-width: 178px;
    padding: .45rem;
}

.campaign-share-menu .dropdown-item {
    align-items: center;
    border-radius: 6px;
    display: flex;
    font-weight: 800;
    gap: .55rem;
    padding: .55rem .65rem;
}

.campaign-share-menu .dropdown-item i {
    color: var(--brand);
}

.campaign-progress,
.detail-progress {
    display: grid;
    gap: .45rem;
    margin: 0 0 1rem;
}

.campaign-progress strong,
.detail-progress strong {
    color: var(--brand-dark);
    font-weight: 900;
}

.campaign-progress span,
.campaign-progress small,
.detail-progress span,
.detail-progress small {
    color: var(--muted);
    font-weight: 750;
}

.campaign-progress .progress,
.detail-progress .progress {
    background: #e8f4ed;
    border-radius: 999px;
    height: 8px;
}

.campaign-progress .progress-bar,
.detail-progress .progress-bar {
    background: var(--brand);
}

.how-works-section {
    background:
        linear-gradient(90deg, rgba(17, 24, 39, .86), rgba(17, 24, 39, .62)),
        url("https://images.unsplash.com/photo-1542810634-71277d95dcbb?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
    color: #fff;
    padding: 5rem 0;
    position: relative;
}

.how-works-section h2 {
    color: #fff;
    margin-bottom: .5rem;
}

.section-motto {
    color: rgba(255, 255, 255, .86);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
}

.how-grid {
    display: grid;
    gap: 5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.how-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 20px 52px rgba(0, 0, 0, .22);
    color: var(--ink);
    padding: 1.7rem;
}

.how-card h3 {
    border-bottom: 1px solid var(--line);
    font-size: 1.55rem;
    font-weight: 900;
    margin: 0 0 1.2rem;
    padding-bottom: 1.2rem;
}

.how-step {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    padding: .95rem 0;
    position: relative;
}

.how-step span {
    align-items: center;
    background: #eaf8ef;
    border-radius: 50%;
    color: var(--accent);
    display: inline-flex;
    flex: 0 0 48px;
    height: 48px;
    justify-content: center;
}

.how-step.blue span {
    background: #eaf3ff;
    color: var(--blue);
}

.how-step h4 {
    font-size: 1.18rem;
    font-weight: 900;
    margin: 0 0 .25rem;
}

.how-step p {
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.55;
    margin: 0;
}

.how-card .btn {
    margin-top: 1.25rem;
}

.assurance-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(3, 1fr);
}

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

.assurance-item {
    align-items: flex-start;
    background: #fff;
    border: 1px solid #dcefe3;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(21, 148, 71, .07);
    display: grid;
    grid-template-columns: 72px 1fr;
    min-height: 142px;
    padding: 1.25rem;
}

.assurance-item i {
    align-items: center;
    background: #eaf8ef;
    border-radius: 50%;
    color: var(--brand);
    display: inline-flex;
    font-size: 1.6rem;
    height: 56px;
    justify-content: center;
    width: 56px;
}

.assurance-item h3,
.product-row h3 {
    font-size: 1.12rem;
    font-weight: 900;
    margin: 0 0 .35rem;
}

.assurance-item p,
.product-row p {
    color: var(--ink);
    line-height: 1.45;
    margin: 0;
}

.home-impact-band {
    background: var(--soft);
}

.rounded-media {
    aspect-ratio: 16 / 11;
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .18);
}

.testimonials-section {
    background: #fff;
    min-height: 280px;
}

.quote-card,
.metric-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    height: 100%;
    padding: 1.35rem;
}

.quote-card p {
    color: #344054;
    font-size: 1.02rem;
    line-height: 1.65;
}

.quote-card span {
    color: var(--brand);
    font-weight: 850;
}

.testimonial-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 36px rgba(15, 23, 42, .08);
    margin-top: 2rem;
    padding: 1.25rem;
}

.site-footer {
    background: #0f241b;
    color: #fff;
    padding: 4rem 0 1.5rem;
}

.footer-brand {
    color: #fff;
}

.footer-heading {
    font-size: .9rem;
    font-weight: 850;
    letter-spacing: .08em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.site-footer a:not(.brand-mark) {
    color: rgba(255, 255, 255, .72);
    display: block;
    margin-bottom: .55rem;
}

.site-footer a:hover {
    color: #fff;
}

.footer-copy {
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.social-row a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: inline-flex !important;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .62);
    margin-top: 3rem;
    padding-top: 1.25rem;
}

.page-hero {
    background: #103522;
    color: #fff;
    padding: 5rem 0;
}

.page-hero h1,
.page-hero p {
    color: #fff;
}

.compact-hero {
    background:
        linear-gradient(90deg, rgba(15, 53, 34, .95), rgba(15, 53, 34, .72)),
        url("https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.split-hero {
    background: #123d29;
}

.about-hero .rounded-media {
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.search-panel,
.form-panel,
.checkout-panel,
.auth-panel,
.success-panel,
.sticky-donation-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(15, 23, 42, .09);
    color: var(--ink);
    padding: 1.5rem;
}

.empty-state {
    border: 1px dashed #cbd5e1;
    border-radius: var(--radius);
    margin-top: 1rem;
    padding: 3rem 1.5rem;
    text-align: center;
}

.empty-state i {
    color: var(--brand);
    font-size: 3rem;
}

.detail-hero {
    padding: 3rem 0 2.5rem;
}

.detail-image-wrap {
    aspect-ratio: 16 / 11;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.detail-summary {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.detail-summary p {
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.65;
}

.campaign-motto {
    background: var(--brand-soft);
    border-left: 4px solid var(--brand);
    border-radius: var(--radius);
    color: var(--brand-dark) !important;
    padding: .85rem 1rem;
}

.detail-meta {
    display: grid;
    gap: .55rem;
    margin: 1rem 0 1.35rem;
}

.detail-meta span {
    align-items: center;
    color: #344054;
    display: flex;
    gap: .5rem;
    font-weight: 650;
}

.detail-actions {
    display: grid;
    gap: .55rem;
}

.detail-primary-actions {
    align-items: stretch;
    display: grid;
    gap: .55rem;
    grid-template-columns: 1fr 56px;
}

.detail-primary-actions .share-toggle {
    min-height: 48px;
    width: 56px;
}

.detail-mini-metrics {
    background: #f7fbf8;
    border: 1px solid #dcece2;
    border-radius: var(--radius);
    display: grid;
    gap: .55rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 0 .95rem;
    padding: .7rem .75rem;
}

.detail-mini-metrics div {
    border-right: 1px solid #e2ece5;
    display: grid;
    gap: .1rem;
    justify-items: center;
    padding: 0 .25rem;
    text-align: center;
}

.detail-mini-metrics div:last-child {
    border-right: 0;
}

.detail-mini-metrics strong {
    color: var(--brand-dark);
    font-size: .94rem;
    font-weight: 900;
}

.detail-mini-metrics span {
    color: #5f6f65;
    font-size: .73rem;
    font-weight: 750;
    text-transform: uppercase;
}

.product-list {
    display: grid;
    gap: .85rem;
}

.product-row {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: .85rem .9rem;
}

.product-actions {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: .8rem;
}

.medical-donate-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
}

.medical-donate-card h3 {
    font-size: 1.2rem;
    font-weight: 850;
    margin-bottom: .5rem;
}

.medical-amount-grid {
    display: grid;
    gap: .65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: .8rem;
}

.sticky-donation-box {
    position: sticky;
    top: 96px;
}

.sticky-donation-box h2,
.checkout-panel h2 {
    font-size: 1.2rem;
    font-weight: 850;
    margin-bottom: .8rem;
}

.update-list {
    display: grid;
    gap: .8rem;
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

.update-list li {
    border-left: 3px solid var(--brand);
    color: #475467;
    font-size: .92rem;
    line-height: 1.45;
    padding-left: .7rem;
}

.verified-box {
    align-items: flex-start;
    background: var(--brand-soft);
    border-radius: var(--radius);
    color: #17533e;
    display: flex;
    gap: .75rem;
    padding: 1rem;
}

.verified-box i {
    font-size: 1.35rem;
}

.verified-box span {
    display: block;
    font-size: .92rem;
}

.cart-list {
    display: grid;
    gap: 1rem;
}

.donate-checkout-shell {
    background: #f3f4f5;
    min-height: calc(100vh - 76px);
    padding-top: 1.4rem;
}

.donation-side-panel {
    padding: .95rem 1rem;
}

.top-support-line {
    border-bottom: 0;
    padding: .2rem 0 .55rem;
}

.donation-summary-drop {
    border: 1px solid #e3e7eb;
    border-radius: var(--radius);
    margin-top: .55rem;
    padding: .3rem .75rem .2rem;
}

.donation-summary-drop summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    font-weight: 850;
    justify-content: space-between;
    list-style: none;
    padding: .45rem 0;
}

.donation-summary-drop summary::-webkit-details-marker {
    display: none;
}

.checkout-panel .floating-line {
    margin: .65rem 0;
}

.checkout-panel .floating-line input {
    font-size: .94rem;
    min-height: 42px;
}

.donor-checks {
    display: grid;
    gap: .5rem;
    margin: .6rem 0 .35rem;
}

.donor-checks label {
    align-items: center;
    display: flex;
    font-size: .84rem;
    font-weight: 650;
    gap: .45rem;
}

.donor-checks input[type="checkbox"] {
    accent-color: var(--brand);
}

.checkout-terms {
    margin-top: .25rem;
}

.exit-donate-modal {
    max-width: 560px;
    padding: 1.6rem 1.8rem;
    text-align: center;
}

.exit-donate-modal h2 {
    font-size: 2rem;
    font-weight: 900;
}

.exit-donate-modal p {
    color: #6b7280;
    font-size: 1.05rem;
}

.exit-donate-actions {
    display: grid;
    gap: .8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 1rem 0 .35rem;
}

.cart-item {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 1rem;
    grid-template-columns: 88px 1fr auto;
    padding: .85rem;
}

.cart-item img {
    aspect-ratio: 1;
    border-radius: var(--radius);
    object-fit: cover;
    width: 88px;
}

.cart-item h3 {
    font-size: 1.05rem;
    font-weight: 850;
    margin: 0 0 .25rem;
}

.cart-item p {
    color: var(--muted);
    margin: 0;
}

.qty-control {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: inline-flex;
    overflow: hidden;
}

.qty-control button {
    background: #fff;
    border: 0;
    height: 34px;
    width: 34px;
}

.qty-control span {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    display: inline-flex;
    font-weight: 800;
    height: 34px;
    justify-content: center;
    min-width: 38px;
    padding-top: .25rem;
}

.summary-line,
.summary-total {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    padding: .7rem 0;
}

.donation-switch-top {
    background: #f5faf7;
    border: 1px solid #dbeee3;
    border-radius: var(--radius);
    display: grid;
    gap: .35rem;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 1rem;
    padding: .35rem;
}

.donation-switch-top a {
    border-radius: 6px;
    color: #53605a;
    display: block;
    font-size: .92rem;
    font-weight: 850;
    min-height: 40px;
    padding: .55rem .7rem;
    text-align: center;
}

.donation-switch-top a.active {
    background: #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .08);
    color: var(--brand-dark);
}

.donation-switch-top.compact {
    margin-bottom: .85rem;
}

.support-copy {
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.55;
    margin-bottom: .8rem;
    text-align: left !important;
}

.know-more-trigger {
    color: var(--brand);
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;
}

.tip-info-list {
    color: #475467;
    display: grid;
    gap: .7rem;
    margin: 1rem 0 0;
    padding-left: 1.2rem;
}

.quick-donate-panel {
    background: var(--brand-soft);
    border: 1px solid #c8ead5;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    padding: 1rem;
}

.quick-donate-panel h2 {
    font-size: 1.2rem;
    font-weight: 850;
    margin-bottom: .5rem;
}

.quick-donate-panel p {
    color: #45606d;
    font-size: .92rem;
    line-height: 1.55;
    margin-bottom: .85rem;
}

.quick-donate-actions {
    display: grid;
    gap: .65rem;
}

.summary-total {
    border-bottom: 0;
    font-size: 1.25rem;
    font-weight: 850;
    margin-bottom: 1rem;
}

.donation-mode {
    background: #f5faf7;
    border: 1px solid #dbeee3;
    border-radius: var(--radius);
    display: grid;
    gap: .4rem;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 1rem;
    padding: .35rem;
}

.donation-mode label {
    margin: 0;
}

.donation-mode input {
    position: absolute;
    opacity: 0;
}

.donation-mode span {
    align-items: center;
    border-radius: 6px;
    color: #475467;
    cursor: pointer;
    display: flex;
    font-size: .92rem;
    font-weight: 850;
    justify-content: center;
    min-height: 42px;
    padding: .45rem .55rem;
    text-align: center;
}

.donation-mode input:checked + span {
    background: #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .08);
    color: var(--brand-dark);
}

.freewill-panel {
    background: var(--brand-soft);
    border: 1px solid #c8ead5;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    padding: 1rem;
}

.freewill-panel p {
    color: var(--brand-dark);
    font-size: .9rem;
    font-weight: 700;
    margin: .65rem 0 0;
}

.quick-amount-row {
    display: grid;
    gap: .45rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-amount-btn {
    background: #fff;
    border: 1px solid #d5e8dc;
    border-radius: 6px;
    color: #2f4b3e;
    font-size: .84rem;
    font-weight: 800;
    min-height: 34px;
}

.quick-amount-btn:hover {
    border-color: var(--brand);
    color: var(--brand-dark);
}

.payment-methods {
    margin-bottom: .3rem;
}

.payment-methods-label {
    color: #5f6f65;
    display: inline-block;
    font-size: .84rem;
    font-weight: 800;
    margin-bottom: .45rem;
}

.payment-method-grid {
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: .35rem;
}

.payment-method-card {
    align-items: center;
    background: #fff;
    border: 1px solid #deeadf;
    border-radius: 6px;
    color: #3d4f45;
    cursor: pointer;
    display: grid;
    font-size: .75rem;
    font-weight: 800;
    gap: .38rem;
    justify-items: start;
    min-height: 78px;
    padding: .65rem .8rem;
    text-align: left;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    width: 100%;
}

.payment-method-card:hover,
.payment-method-card:focus,
.payment-method-card.active {
    border-color: var(--brand);
    box-shadow: 0 8px 22px rgba(21, 148, 71, .12);
    color: var(--brand-dark);
}

.payment-method-card:focus {
    outline: 0;
}

.payment-method-card.active {
    transform: translateY(-1px);
}

.payment-method-logos {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
    min-height: 22px;
}

.payment-logo {
    align-items: center;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 4px;
    display: inline-flex;
    font-size: .58rem;
    font-weight: 900;
    height: 20px;
    justify-content: center;
    line-height: 1;
    padding: 0 .32rem;
}

.payment-method-title {
    color: inherit;
    font-size: .98rem;
    font-weight: 850;
}

.logo-visa {
    background: #23235f;
    color: #fff;
}

.logo-mastercard {
    background: var(--brand);
    color: #fff;
}

.logo-rupay {
    background: #fff;
    color: #123c69;
}

.logo-upi {
    background: #eaf8ef;
    color: var(--brand-dark);
}

.logo-paytm {
    background: #eaf3ff;
    color: #0d6efd;
}

.logo-bhim {
    background: var(--brand-soft);
    color: var(--brand);
}

.logo-bank {
    background: #eaf8ef;
    color: var(--brand-dark);
}

.logo-bank.red {
    background: var(--brand-soft);
    color: var(--brand);
}

.logo-bank.purple {
    background: #f4f1ff;
    color: #6d28d9;
}

.checkout-note {
    color: var(--muted);
    font-size: .8rem;
    margin: .65rem 0 0;
    text-align: center;
}

.auth-section {
    background:
        linear-gradient(90deg, rgba(247, 248, 250, .96), rgba(247, 248, 250, .9)),
        url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    min-height: calc(100vh - 76px);
    padding: 5rem 0;
}

.daankart-login h1,
.daankart-login h2 {
    color: var(--ink);
    font-size: 1.35rem;
    font-weight: 900;
    margin: 0 0 .65rem;
    text-align: center;
}

.daankart-login > p,
.auth-panel p,
.success-panel p {
    color: var(--muted);
    line-height: 1.7;
    text-align: center;
}

.floating-line,
.line-input {
    margin: 1.25rem 0;
    position: relative;
}

.floating-line input,
.line-input input,
.line-input textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d8dce2;
    border-radius: 0;
    color: var(--ink);
    min-height: 44px;
    outline: none;
    padding: .45rem 2.2rem .45rem 0;
    width: 100%;
}

.floating-line input:focus,
.line-input input:focus,
.line-input textarea:focus {
    border-bottom-color: var(--brand);
}

.floating-line i,
.line-input i {
    color: #9aa0a6;
    position: absolute;
    right: 0;
    top: 13px;
}

.login-divider {
    border-top: 1px solid var(--line);
    margin: 1.8rem 0 1.3rem;
    text-align: center;
}

.login-divider span {
    background: #fff;
    color: #c1c4c9;
    font-weight: 800;
    padding: 0 .6rem;
    position: relative;
    top: -.8rem;
}

.google-btn {
    align-items: center;
    background: #fff;
    border: 1px solid #d7dce5;
    color: var(--ink);
    display: inline-flex;
    gap: .8rem;
    justify-content: center;
}

.google-mark {
    color: #4285f4;
    font-size: 1.2rem;
    font-weight: 900;
}

.terms-copy,
.register-copy {
    font-size: .86rem;
    margin: 1.3rem 0 0;
}

.login-motto,
.success-motto {
    background: var(--brand-soft);
    border-radius: var(--radius);
    color: var(--brand-dark) !important;
    font-weight: 750;
    margin: 1rem 0 1.25rem !important;
    padding: .85rem 1rem;
}

.auth-tabs {
    background: #f4f7f5;
    border: 1px solid #dfe8e3;
    border-radius: var(--radius);
    display: grid;
    gap: .35rem;
    grid-template-columns: repeat(2, 1fr);
    margin: 1rem 0 1.2rem;
    padding: .3rem;
}

.auth-tabs button {
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: #53605a;
    font-weight: 850;
    min-height: 38px;
}

.auth-tabs button.active {
    background: #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .08);
    color: var(--brand-dark);
}

.auth-flow {
    margin-top: .35rem;
}

.auth-message {
    font-size: .92rem;
    line-height: 1.5;
}

.terms-copy a,
.register-copy a {
    color: var(--brand);
    font-weight: 800;
}

.success-panel {
    max-width: 680px;
    text-align: center;
}

.success-panel > i {
    color: var(--brand);
    font-size: 4rem;
}

.modal-content {
    border: 0;
    border-radius: var(--radius);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .22);
    padding: 1.6rem;
}

.search-modal h2 {
    font-size: 1.7rem;
    font-weight: 900;
}

.search-modal p {
    color: var(--muted);
}

.auth-modal-content {
    margin: auto;
    max-width: 520px;
    padding: 1.55rem 1.7rem;
}

.login-modal .modal-dialog {
    max-width: 550px;
}

.campaign-start-page {
    background: var(--blue-soft);
    min-height: calc(100vh - 76px);
    padding: 2rem 0 5rem;
}

.campaign-stepper {
    align-items: flex-start;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 0 1.2rem 4.5rem;
    max-width: 650px;
    position: relative;
}

.campaign-stepper::before {
    background: #9eddb6;
    content: "";
    height: 2px;
    left: 24px;
    position: absolute;
    right: 24px;
    top: 14px;
}

.step-dot {
    background: transparent;
    border: 0;
    color: var(--ink);
    display: grid;
    font-weight: 700;
    gap: .35rem;
    justify-items: center;
    padding: 0;
    position: relative;
    z-index: 1;
}

.step-dot span {
    background: #bfe8ce;
    border-radius: 50%;
    display: block;
    height: 28px;
    width: 28px;
}

.step-dot.active span {
    background: var(--accent);
}

.campaign-wizard {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 22px 55px rgba(15, 23, 42, .08);
    margin-left: 4.5rem;
    max-width: 650px;
    padding: 1.7rem;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
}

.wizard-step h1 {
    font-size: 1.6rem;
    font-weight: 900;
    margin: 0 0 .8rem;
    text-align: center;
}

.wizard-step > p {
    color: var(--ink);
    font-size: 1.08rem;
    text-align: center;
}

.cause-choice-panel {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(15, 23, 42, .18);
    display: grid;
    gap: .65rem;
    grid-template-columns: repeat(3, 1fr);
    margin: 1rem 0 2.6rem;
    padding: 1.2rem;
}

.cause-choice {
    background: #fff;
    border: 1px solid #1f2933;
    border-radius: 4px;
    color: var(--ink);
    font-weight: 800;
    padding: .75rem .85rem;
}

.cause-choice.active {
    border-color: #d5dae2;
    box-shadow: inset 0 0 0 1px #edf1f5;
}

.line-input label {
    color: #a0a4aa;
    display: block;
    font-weight: 650;
    margin-bottom: .2rem;
}

.textarea-line label {
    position: static;
}

.wizard-terms {
    color: var(--ink);
    font-size: .96rem !important;
    text-align: left !important;
}

.wizard-terms a {
    color: var(--brand);
}

.wizard-actions {
    display: grid;
    gap: .8rem;
    grid-template-columns: 1fr 1.5fr;
}

.campaign-page-motto {
    color: #45606d;
    font-size: 1.1rem;
    font-weight: 750;
    margin: 2rem 0 0 4.5rem;
    max-width: 650px;
    text-align: center;
}

.campaign-page-motto.secondary {
    color: var(--brand-dark);
    margin-top: .7rem;
}

.india-impact {
    background: #fff;
}

.india-map-card {
    align-items: center;
    background: linear-gradient(180deg, #f2fbf5, #ffffff);
    border: 1px solid #dbeee3;
    border-radius: var(--radius);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
    display: grid;
    gap: 1rem;
    justify-items: center;
    min-height: 520px;
    padding: 2rem;
}

.india-map {
    max-height: 460px;
    width: min(100%, 440px);
}

.india-map path {
    fill: #cfeedd;
    stroke: #f8fffb;
    stroke-linejoin: round;
    stroke-width: 4px;
}

.india-map .india-west,
.india-map .india-northeast,
.india-map .india-northeast-tail {
    fill: #e3f6eb;
}

.india-map .map-dot {
    fill: var(--brand);
    opacity: .8;
}

.india-map .island {
    fill: #9eddb6;
    opacity: .85;
    stroke: #fff;
    stroke-width: 2px;
}

.map-caption {
    display: grid;
    gap: .25rem;
    text-align: center;
}

.map-caption strong {
    color: var(--brand-dark);
    font-size: 1.15rem;
}

.map-caption span,
.map-motto {
    color: var(--muted);
}

.faq-page-top {
    background: #eef5f0;
    border-bottom: 1px solid #dbe8de;
    padding: 3rem 0 2rem;
}

.faq-page-top h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: .5rem;
}

.faq-page-top p {
    color: var(--muted);
    margin-bottom: 0;
}

.faq-page-wrap {
    background: #f7f8fa;
}

.faq-switch {
    background: var(--brand-soft);
    border-radius: var(--radius);
    overflow: hidden;
    padding: .25rem;
}

.faq-switch .nav-link {
    border-radius: 6px;
    color: var(--brand);
    font-weight: 900;
    margin: 0;
}

.faq-switch .nav-link.active {
    background: var(--brand);
    color: #fff;
}

.faq-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #dde3ea;
    border-radius: 0;
}

.faq-accordion .accordion-button {
    background: transparent;
    box-shadow: none;
    color: #111827;
    font-size: clamp(1.1rem, 2.8vw, 2rem);
    font-weight: 800;
    line-height: 1.35;
    padding: 1.35rem .2rem;
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 1.8rem;
    font-weight: 300;
    height: auto;
    transform: none;
    width: auto;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #111827;
}

.faq-accordion .accordion-body {
    color: #67707d;
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 900px;
    padding: .2rem .2rem 1.5rem;
}

.contact-split-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 78vh;
}

.contact-left {
    background: var(--brand);
    color: #fff;
}

.contact-left-inner {
    margin-left: auto;
    max-width: 640px;
    padding: 3.6rem 2.5rem;
}

.contact-left h1 {
    font-size: 2.15rem;
    font-weight: 900;
    margin-bottom: 1.8rem;
}

.contact-block {
    margin-bottom: 1.5rem;
}

.contact-block h2 {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: .4rem;
}

.contact-block p {
    line-height: 1.55;
    margin-bottom: .7rem;
}

.contact-right-inner {
    margin-right: auto;
    max-width: 640px;
}

.contact-right h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact-social {
    display: flex;
    gap: .9rem;
}

.contact-social a {
    align-items: center;
    background: #fff;
    border: 1px solid #dbe3e9;
    border-radius: 50%;
    color: #2d3748;
    display: inline-flex;
    font-size: 1.1rem;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.contact-social a:hover {
    color: var(--brand);
}

.contact-form-lite {
    display: grid;
    gap: .7rem;
    max-width: 660px;
}

.contact-form-lite .form-control {
    border-color: #d9dfe5;
    box-shadow: none;
}

.special-fundraise-hero {
    background: linear-gradient(180deg, #f2fbf5 0%, #ffffff 100%);
    padding: 1.25rem 0 2.4rem;
}

.special-nav-switch {
    background: #f5faf7;
    border: 1px solid #dbeee3;
    border-radius: var(--radius);
    display: grid;
    gap: .45rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 1rem;
    padding: .35rem;
}

.special-nav-switch a {
    border-radius: 6px;
    color: #53605a;
    display: block;
    font-size: .88rem;
    font-weight: 850;
    min-height: 38px;
    padding: .5rem .6rem;
    text-align: center;
}

.special-nav-switch a.active {
    background: #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .08);
    color: var(--brand-dark);
}

.special-hero-panel {
    background: linear-gradient(120deg, rgba(21, 148, 71, .94), rgba(11, 107, 52, .9));
    border-radius: 14px;
    color: #fff;
    padding: 2rem;
}

.special-hero-image {
    border-radius: 12px;
    height: 320px;
    object-fit: cover;
    width: 100%;
}

.special-hero-kicker {
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
    margin-bottom: .6rem;
    text-transform: uppercase;
}

.special-hero-panel h1 {
    color: #fff;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    max-width: 560px;
}

.special-stat-strip {
    background: #fff;
    border: 1px solid #dbeee3;
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: -1.15rem auto 0;
    max-width: 760px;
    padding: 1rem 1.2rem;
    position: relative;
    z-index: 2;
}

.special-stat-strip > div {
    border-right: 1px solid #e4e9ee;
    display: grid;
    gap: .15rem;
    justify-items: center;
}

.special-stat-strip > div:last-child {
    border-right: 0;
}

.special-stat-strip strong {
    color: #202124;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.special-stat-strip span {
    color: var(--muted);
    font-weight: 700;
}

.special-strip-note {
    color: var(--brand-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin: .8rem 0 0;
    text-align: center;
}

.special-callback {
    align-items: center;
    background: #f2fbf5;
    border: 1px solid #dbeee3;
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    margin: 1.25rem auto 0;
    max-width: 760px;
    padding: .95rem 1.1rem;
}

.special-callback span {
    color: var(--ink);
    font-size: 1.3rem;
    font-weight: 800;
}

/* Medical Red Theme */
.special-hero-panel.medical-theme {
    background: linear-gradient(120deg, rgba(220, 53, 69, .94), rgba(185, 28, 28, .9));
}

.special-callback.medical-theme {
    background: #fdf2f2;
    border: 1px solid #f5c6cb;
}

.special-callback.medical-theme .btn-brand {
    background: #dc3545;
    border-color: #dc3545;
}

.special-callback.medical-theme .btn-brand:hover {
    background: #b92d3b;
    border-color: #b92d3b;
}

/* ========== ANIMAL MEDICAL THEME - Emotional & Beautiful ========== */
.animal-theme {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #eff6ff 100%) !important;
    border: 2px solid #10b981 !important;
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2), 0 0 100px rgba(16, 185, 129, 0.1) !important;
}

.animal-theme h1 {
    color: #047857 !important;
    text-shadow: 2px 2px 4px rgba(16, 185, 129, 0.2) !important;
}

.animal-hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.25), 0 0 80px rgba(37, 99, 235, 0.15);
    border: 3px solid #10b981;
}

.animal-hero-image {
    width: 100%;
    height: 450px !important;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.animal-hero-image-wrapper:hover .animal-hero-image {
    transform: scale(1.03);
}

.animal-hero-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    z-index: 10;
}

.animal-tag {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: tagPulse 2s infinite;
}

.animal-tag-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: 2px solid #34d399;
    animation-delay: 0s;
}

.animal-tag-blue {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: 2px solid #60a5fa;
    animation-delay: 0.3s;
}

.animal-tag-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: 2px solid #f87171;
    animation-delay: 0.6s;
}

@keyframes tagPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 25px rgba(0,0,0,0.4); }
}

.animal-hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, rgba(37, 99, 235, 0.2) 50%, rgba(239, 68, 68, 0.1) 100%);
    pointer-events: none;
    border-radius: 17px;
}

.special-callback.animal-theme {
    background: linear-gradient(90deg, #d1fae5 0%, #dbeafe 50%, #fee2e2 100%) !important;
    border: 3px solid #10b981 !important;
    border-left: 8px solid #10b981 !important;
}

.special-callback.animal-theme .btn-brand {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border-color: #10b981 !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4) !important;
}

.special-callback.animal-theme .btn-brand:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    border-color: #059669 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5) !important;
}

.animal-motto-section {
    background: linear-gradient(180deg, #ffffff 0%, #ecfdf5 50%, #eff6ff 100%) !important;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.animal-motto-section .special-motto-lines p {
    background: linear-gradient(90deg, #d1fae5, #ffffff) !important;
    border-left: 8px solid #10b981 !important;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
    position: relative;
    overflow: hidden;
}

.animal-motto-section .special-motto-lines p::before {
    content: '�';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.3;
}

.animal-motto-section .special-motto-lines p:nth-child(2) {
    background: linear-gradient(90deg, #dbeafe, #ffffff) !important;
    border-left-color: #2563eb !important;
}

.animal-motto-section .special-motto-lines p:nth-child(2)::before {
    content: '�';
}

.animal-motto-section .special-motto-lines p:nth-child(3) {
    background: linear-gradient(90deg, #fee2e2, #ffffff) !important;
    border-left-color: #ef4444 !important;
}

.animal-motto-section .special-motto-lines p:nth-child(3)::before {
    content: '❤️';
}

/* ========== MEDICAL THEME - Emotional & Beautiful (Red Most Important) ========== */
.medical-theme {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 50%, #ecfdf5 100%) !important;
    border: 2px solid #ef4444 !important;
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.2), 0 0 100px rgba(239, 68, 68, 0.1) !important;
}

.medical-theme h1 {
    color: #b91c1c !important;
    text-shadow: 2px 2px 4px rgba(239, 68, 68, 0.2) !important;
}

.medical-hero-image {
    height: 450px !important;
}

.medical-hero-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    z-index: 10;
}

.medical-tag {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: tagPulse 2s infinite;
    background: white !important;
    color: #ef4444 !important;
    border: 2px solid #ef4444 !important;
}

.medical-tag-red {
    animation-delay: 0s;
}

.medical-tag-green {
    animation-delay: 0.3s;
}

.medical-tag-blue {
    animation-delay: 0.6s;
}

.medical-theme.animal-hero-image-wrapper {
    border-color: #ef4444 !important;
    box-shadow: 0 25px 60px rgba(239, 68, 68, 0.25), 0 0 80px rgba(16, 185, 129, 0.15) !important;
}

.medical-theme.animal-hero-image-wrapper::after {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.1) 0%, rgba(16, 185, 129, 0.2) 50%, rgba(37, 99, 235, 0.1) 100%) !important;
}

.special-callback.medical-theme {
    background: linear-gradient(90deg, #fee2e2 0%, #d1fae5 50%, #dbeafe 100%) !important;
    border: 3px solid #ef4444 !important;
    border-left: 8px solid #ef4444 !important;
}

.special-callback.medical-theme .btn-brand {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    border-color: #ef4444 !important;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4) !important;
}

.special-callback.medical-theme .btn-brand:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    border-color: #dc2626 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.5) !important;
}

.medical-motto-section {
    background: linear-gradient(180deg, #ffffff 0%, #fef2f2 50%, #ecfdf5 100%) !important;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.medical-motto-section .special-motto-lines p {
    background: linear-gradient(90deg, #fee2e2, #ffffff) !important;
    border-left: 8px solid #ef4444 !important;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.15);
    position: relative;
    overflow: hidden;
}

.medical-motto-section .special-motto-lines p::before {
    content: '❤️';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.3;
}

.medical-motto-section .special-motto-lines p:nth-child(2) {
    background: linear-gradient(90deg, #d1fae5, #ffffff) !important;
    border-left-color: #10b981 !important;
}

.medical-motto-section .special-motto-lines p:nth-child(2)::before {
    content: '💚';
}

.medical-motto-section .special-motto-lines p:nth-child(3) {
    background: linear-gradient(90deg, #dbeafe, #ffffff) !important;
    border-left-color: #2563eb !important;
}

.medical-motto-section .special-motto-lines p:nth-child(3)::before {
    content: '🐾';
}

.special-motto-section {
    background: #fff;
    padding-bottom: 2.5rem;
}

.special-motto-lines {
    display: grid;
    gap: .9rem;
}

.special-motto-lines p {
    background: linear-gradient(90deg, #f2fbf5, #ffffff);
    border-left: 5px solid var(--brand);
    border-radius: var(--radius);
    color: var(--ink);
    font-size: clamp(1.35rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 1.25;
    margin: 0;
    padding: 1.05rem 1.25rem;
}

.about-dropdown .mega-menu {
    grid-template-columns: 1fr;
    width: min(360px, calc(100vw - 48px));
}

.special-image-grid {
    display: grid;
    gap: .9rem;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.special-image-grid img {
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .09);
    height: 210px;
    object-fit: cover;
    width: 100%;
}

.special-image-grid img:first-child {
    grid-column: span 3;
    grid-row: span 2;
    height: 100%;
    min-height: 430px;
}

.monthly-hero {
    position: relative;
    min-height: 600px;
    background: #f8fafc;
}

.monthly-hero-wrap {
    position: relative;
    min-height: 600px;
}

.monthly-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.monthly-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 5%;
}

.monthly-hero-quote {
    text-align: right;
    max-width: 600px;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.monthly-hero-quote h2 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: capitalize;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 0, 0, 0.5);
    color: #fff;
    letter-spacing: 2px;
}

.monthly-hero-quote .word-great-green {
    color: #22c55e;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(34, 197, 94, 0.6);
    font-size: 4rem;
}

.monthly-hero-quote .word-great-blue {
    color: #3b82f6;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(59, 130, 246, 0.6);
    font-size: 4rem;
}

.monthly-hero-quote .word-great-red {
    color: #ef4444;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(239, 68, 68, 0.6);
    font-size: 4rem;
}

.monthly-hero-quote .word-doing {
    font-style: italic;
    color: #fff;
    text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 255, 255, 0.3);
}

.monthly-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.monthly-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

.monthly-pledge-card {
    background: #fff;
    border: 1px solid #dde4eb;
    border-radius: var(--radius);
    box-shadow: 0 18px 36px rgba(15, 23, 42, .2);
    max-width: 390px;
    padding: 1.25rem;
    position: absolute;
    left: 15%;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.monthly-pledge-card h1 {
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: .45rem;
}

.monthly-pledge-card h1 span {
    color: #0d6efd;
}

.monthly-pledge-card p {
    color: #445266;
    font-size: .9rem;
    line-height: 1.45;
    margin-bottom: .6rem;
}

.monthly-pill-row {
    display: grid;
    gap: .45rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: .65rem;
}

.monthly-pill-row span {
    color: #364152;
    font-size: .74rem;
    font-weight: 700;
    text-align: center;
}

.monthly-pill-row i {
    color: var(--brand);
    display: block;
    font-size: 1rem;
    margin-bottom: .2rem;
}

.monthly-pledge-card .form-select,
.monthly-pledge-card .form-control {
    font-size: .9rem;
    margin-bottom: .5rem;
    min-height: 40px;
}

.monthly-amount-grid {
    display: grid;
    gap: .45rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: .6rem;
}

.monthly-amount-grid button {
    background: #fff;
    border: 1px solid #d6dce3;
    border-radius: 6px;
    color: #1f2937;
    font-size: .82rem;
    font-weight: 800;
    min-height: 34px;
}

.monthly-switch {
    margin-bottom: .6rem;
}

.monthly-amount-grid button.active {
    border-color: var(--brand);
    color: var(--brand-dark);
}

.monthly-why-card i {
    align-items: center;
    background: #eaf3ff;
    border-radius: 50%;
    color: #0d6efd;
    display: inline-flex;
    font-size: 1.1rem;
    height: 38px;
    justify-content: center;
    margin-bottom: .8rem;
    width: 38px;
}

.monthly-why-card h3 {
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: .55rem;
}

.pricing-grid-wrap {
    background: #f4faf6;
}

.pricing-card {
    background: #fff;
    border: 1px solid #dceee4;
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding: 1.2rem;
}

.pricing-card.featured {
    border-color: #bfe3cc;
}

.pricing-card h2 {
    font-size: 1.35rem;
    font-weight: 900;
    margin: 0;
}

.pricing-card h2 small {
    color: var(--brand-dark);
    display: block;
    font-size: .9rem;
    font-weight: 700;
    margin-top: .2rem;
}

.pricing-card p {
    color: #4b5563;
    line-height: 1.55;
    margin: 0;
}

.pricing-card ul {
    color: #374151;
    display: grid;
    gap: .45rem;
    margin: 0;
    padding-left: 1.2rem;
}

.user-dashboard {
    background: #fff;
    padding: 2rem 0 5rem;
}

.user-profile-band {
    align-items: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .24), transparent 28%),
        linear-gradient(135deg, var(--brand), var(--brand-dark));
    border-radius: var(--radius);
    color: #fff;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 96px 1fr minmax(320px, 520px);
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.user-profile-band .eyebrow,
.user-profile-band p,
.user-profile-band h1 {
    color: #fff;
}

.user-profile-band h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    margin: 0 0 .35rem;
}

.user-avatar {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    color: var(--brand-dark);
    display: inline-flex;
    font-size: 2rem;
    font-weight: 900;
    height: 88px;
    justify-content: center;
    width: 88px;
}

.user-stat-panel,
.fundraiser-stat-box {
    background: #fff;
    border: 1px solid #dbeee3;
    border-radius: var(--radius);
    color: var(--ink);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: .95rem;
}

.user-stat-panel div,
.fundraiser-stat-box div {
    border-right: 1px solid var(--line);
    display: grid;
    gap: .15rem;
    justify-items: center;
    text-align: center;
}

.user-stat-panel div:last-child,
.fundraiser-stat-box div:last-child {
    border-right: 0;
}

.user-stat-panel strong,
.fundraiser-stat-box strong {
    color: var(--brand);
    font-size: 1.35rem;
    font-weight: 900;
}

.user-stat-panel span,
.fundraiser-stat-box span {
    color: var(--muted);
    font-size: .84rem;
    font-weight: 700;
}

.dashboard-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
    padding: 1.35rem;
}

.dashboard-panel h2 {
    font-size: 1.45rem;
    font-weight: 900;
    margin: 0;
}

.dashboard-panel-heading {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.dashboard-list {
    display: grid;
    gap: .85rem;
}

.dashboard-row-card {
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: .9rem;
}

.dashboard-row-card strong {
    color: var(--ink);
    display: block;
    font-weight: 900;
}

.dashboard-tabs {
    display: flex;
    gap: .5rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: .25rem;
}

.dashboard-tab {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    cursor: pointer;
    display: inline-flex;
    font-size: .9rem;
    font-weight: 700;
    gap: .4rem;
    padding: .65rem 1.1rem;
    white-space: nowrap;
}

.dashboard-tab:hover {
    border-color: var(--brand);
    color: var(--brand-dark);
}

.dashboard-tab.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.dashboard-tab.active i {
    color: #fff;
}

.dashboard-tab i {
    color: var(--brand);
    font-size: .85rem;
}

.dashboard-tab-content {
    min-height: 300px;
}

.dashboard-tab-pane {
    display: none;
}

.dashboard-tab-pane.active {
    display: block;
}

.dashboard-row-card span,
.dashboard-row-card p {
    color: var(--muted);
    margin: .15rem 0 0;
}

.dashboard-empty {
    align-items: center;
    border: 1px dashed #cbd5e1;
    border-radius: var(--radius);
    color: var(--muted);
    display: grid;
    gap: .9rem;
    justify-items: center;
    min-height: 220px;
    padding: 2rem;
    text-align: center;
}

.dashboard-empty.small-empty {
    min-height: 96px;
}

.fundraiser-panel {
    background: linear-gradient(135deg, #fff, #f2fbf5);
}

.account-dropdown .dropdown-menu {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
}

.admin-shell {
    background: #f4f6f8;
    min-height: 100vh;
}

.admin-sidebar {
    background: #0f3a29;
    color: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    top: 0;
    width: 292px;
    z-index: 10;
}

.admin-brand {
    align-items: center;
    background: var(--brand);
    color: #fff;
    display: flex;
    gap: .85rem;
    min-height: 74px;
    padding: 1rem 1.35rem;
}

.admin-brand:hover {
    color: #fff;
}

.admin-nav {
    display: grid;
    gap: .45rem;
    padding: 1rem .7rem;
}

.admin-nav a {
    align-items: center;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, .78);
    display: flex;
    font-size: 1.05rem;
    font-weight: 800;
    gap: .75rem;
    padding: .9rem 1rem;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: var(--brand);
    color: #fff;
}

.admin-main {
    margin-left: 292px;
    min-height: 100vh;
}

.admin-topbar {
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #dfe4ea;
    display: flex;
    justify-content: space-between;
    min-height: 74px;
    padding: 0 1.25rem;
}

.admin-menu-link {
    color: #5b6673;
    font-size: 1.4rem;
}

.admin-content {
    padding: 1.6rem;
}

.admin-content h1 {
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 900;
    margin-bottom: 1.4rem;
}

.admin-filter-card,
.admin-card,
.admin-table-card {
    background: #fff;
    border: 1px solid #e0e5eb;
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
    margin-bottom: 1.4rem;
    padding: 1.25rem;
}

.admin-stat-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 1.4rem;
}

.admin-stat-card {
    border-radius: var(--radius);
    color: #fff;
    min-height: 132px;
    overflow: hidden;
    padding: 1.15rem;
    position: relative;
}

.admin-stat-card strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
}

.admin-stat-card span {
    font-weight: 800;
}

.admin-stat-card i {
    bottom: .8rem;
    font-size: 4rem;
    opacity: .18;
    position: absolute;
    right: 1rem;
}

.admin-stat-card.teal {
    background: #0f9f8f;
}

.admin-stat-card.green {
    background: var(--brand);
}

.admin-stat-card.yellow {
    background: #eab308;
    color: var(--ink);
}

.admin-stat-card.soft {
    background: #f2fbf5;
    border: 1px solid #cfeedd;
    color: var(--brand-dark);
}

.admin-card h2,
.admin-table-card h2 {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.admin-mini-list {
    display: grid;
    gap: .65rem;
}

.admin-mini-list a {
    align-items: center;
    border-bottom: 1px solid #edf1f4;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: .55rem 0;
}

.admin-mini-list strong {
    color: var(--brand);
}

.admin-section-head {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.admin-section-head h1 {
    margin-bottom: 0;
}

.admin-search-form {
    display: flex;
    gap: .65rem;
    min-width: min(100%, 620px);
}

.admin-table-card {
    padding: 0;
    overflow: hidden;
}

.admin-table-card h2 {
    margin: 0;
    padding: 1.25rem;
}

.admin-table-card .table {
    margin-bottom: 0;
}

.admin-table-card th {
    background: #f7f9fb;
    color: #5c6670;
    font-size: .82rem;
    text-transform: uppercase;
}

.admin-table-card td,
.admin-table-card th {
    padding: 1rem 1.25rem;
}

.admin-campaign-cell {
    align-items: center;
    display: flex;
    gap: .75rem;
    min-width: 320px;
}

.admin-campaign-cell img {
    border-radius: 6px;
    height: 48px;
    object-fit: cover;
    width: 48px;
}

.admin-campaign-cell span {
    color: var(--muted);
    display: block;
    font-size: .85rem;
    font-weight: 750;
}

@keyframes heroRail {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@media (max-width: 1199px) {
    .how-grid {
        gap: 2rem;
    }

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

    .admin-stat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .nav-left {
        margin-left: 0;
        padding-top: 1rem;
    }

    .mega-menu,
    .nav-mega.compact .mega-menu {
        box-shadow: none;
        display: grid;
        grid-template-columns: 1fr;
        opacity: 1;
        padding: .75rem 1rem;
        position: static;
        transform: none;
        visibility: visible;
        width: 100%;
    }

    .nav-right {
        align-items: stretch !important;
        padding-bottom: 1rem;
    }

    .hero-cause-card {
        flex-basis: min(760px, 88vw);
    }

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

    .campaign-stepper,
    .campaign-wizard,
    .campaign-page-motto {
        margin-left: 0;
    }

    .user-profile-band {
        grid-template-columns: 1fr;
    }

    .user-stat-panel {
        width: 100%;
    }

    .admin-sidebar {
        position: static;
        width: 100%;
    }

    .admin-main {
        margin-left: 0;
    }

    .admin-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-section-head,
    .admin-search-form {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 3.5rem 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-cause-card {
        height: auto;
    }

    .hero-cause-card img {
        height: 180px;
        position: static;
        width: 100%;
    }

    .hero-cause-card::after {
        display: none;
    }

    .hero-cause-copy {
        padding: 1.2rem;
    }

    .cause-icon-tile {
        flex-basis: 112px;
    }

    .assurance-grid,
    .assurance-grid.two-col,
    .cause-choice-panel,
    .wizard-actions {
        grid-template-columns: 1fr;
    }

    .assurance-item {
        grid-template-columns: 1fr;
        gap: .8rem;
    }

    .product-row,
    .cart-item {
        align-items: stretch;
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .product-actions {
        justify-content: space-between;
    }

    .cart-item img {
        aspect-ratio: 16 / 9;
        width: 100%;
    }

    .cart-item .text-end {
        text-align: left !important;
    }

    .campaign-stepper {
        font-size: .83rem;
    }

    .campaign-wizard {
        border-radius: var(--radius);
        padding: 1.2rem;
    }

    .contact-split-page {
        grid-template-columns: 1fr;
    }

    .contact-left-inner,
    .contact-right-inner {
        margin: 0;
        padding: 2rem 1rem;
    }

    .faq-accordion .accordion-button {
        font-size: 1.45rem;
    }

    .special-hero-panel {
        padding: 1rem;
    }

    .special-hero-image {
        height: 210px;
    }

    .special-stat-strip {
        gap: .5rem;
        grid-template-columns: 1fr;
        margin-top: 1rem;
    }

    .special-stat-strip > div {
        border-right: 0;
    }

    .special-callback {
        flex-direction: column;
        gap: .8rem;
        text-align: center;
    }

    .special-callback span {
        font-size: 1rem;
    }

    .donation-switch-top {
        grid-template-columns: 1fr;
    }

    .special-nav-switch,
    .quick-amount-row,
    .payment-method-grid,
    .exit-donate-actions,
    .medical-amount-grid {
        grid-template-columns: 1fr;
    }

    .donate-checkout-shell {
        padding-top: .8rem;
    }

    .detail-mini-metrics {
        grid-template-columns: 1fr;
    }

    .detail-mini-metrics div {
        border-right: 0;
        border-bottom: 1px solid #e2ece5;
        justify-items: start;
        padding: 0 0 .45rem;
        text-align: left;
    }

    .detail-mini-metrics div:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .special-image-grid {
        grid-template-columns: 1fr;
    }

    .special-image-grid img:first-child {
        grid-column: auto;
        grid-row: auto;
        min-height: 220px;
    }

    .monthly-hero {
        min-height: auto;
    }

    .monthly-hero-wrap {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .monthly-hero-image {
        position: relative;
        height: 400px;
        order: 1;
    }

    .monthly-hero-content {
        padding: 1rem;
        justify-content: center;
    }

    .monthly-hero-quote {
        text-align: center;
        max-width: 100%;
        padding: 1.5rem;
    }

    .monthly-pledge-card {
        right: auto;
        left: auto;
    }

    .monthly-hero-quote h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .monthly-hero-quote .word-great {
        font-size: 2.25rem;
    }

    .monthly-hero-subtitle {
        font-size: 1rem;
    }

    .monthly-pledge-card {
        margin: 0;
        max-width: none;
        position: static;
        transform: none;
        left: auto;
        order: 2;
        border-radius: 0;
        box-shadow: none;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }

    .monthly-pill-row,
    .monthly-amount-grid {
        grid-template-columns: 1fr;
    }

    .user-stat-panel,
    .fundraiser-stat-box,
    .detail-primary-actions,
    .campaign-card-actions,
    .admin-stat-grid,
    .admin-nav {
        grid-template-columns: 1fr;
    }

    .detail-primary-actions .share-toggle,
    .share-toggle {
        width: 100%;
    }
}

/* ========== NEW FOOTER STYLES ========== */
.site-footer.new-footer {
    background: #f8f9fa;
    color: var(--ink);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--line);
}

.footer-newsletter {
    background: var(--brand);
    color: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 3rem;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: #fff;
}

.newsletter-subtitle {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
}

.newsletter-form .form-control {
    flex: 1;
    border: 0;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
}

.btn-subscribe {
    background: #fff;
    color: var(--brand);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 0;
    border-radius: var(--radius);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.btn-subscribe:hover {
    background: var(--brand-soft);
}

.footer-main {
    margin-bottom: 2rem;
}

.site-footer.new-footer a:not(.brand-mark) {
    color: var(--muted);
    display: block;
    margin-bottom: .55rem;
    text-decoration: none;
}

.site-footer.new-footer a:not(.brand-mark):hover {
    color: var(--brand);
}

.site-footer.new-footer .footer-heading {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: none;
}

.footer-brand-col {
    padding-right: 2rem;
}

.footer-tagline {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.footer-description {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
}

.footer-contact-row {
    background: var(--soft);
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
}

.contact-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ink);
}

.contact-info p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--brand);
    margin-right: 0.5rem;
}

.footer-certificates {
    padding: 0.75rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 0.75rem;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid var(--line);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--muted);
}

.cert-badge i {
    color: var(--brand);
}

.site-footer.new-footer .social-row a {
    border: 1px solid var(--line);
    color: var(--muted);
}

.site-footer.new-footer .social-row a:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.site-footer.new-footer .footer-bottom {
    border-top: 1px solid var(--line);
    color: var(--muted);
    margin-top: 0;
    padding-top: 1rem;
}

.footer-bottom-links a {
    color: var(--muted);
    margin-right: 1.5rem;
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--brand);
}

.footer-bottom-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.footer-bottom-links .footer-legal-btn {
    background: #fff;
    border: 1px solid rgba(21, 148, 71, .25);
    border-radius: 999px;
    color: var(--brand-dark);
    display: inline-flex;
    font-size: .9rem;
    font-weight: 750;
    line-height: 1;
    margin-right: 0;
    padding: .65rem 1.15rem;
}

.footer-bottom-links .footer-legal-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.footer-copy-small {
    font-size: 0.85rem;
    color: var(--muted);
}

.legal-page {
    background: #fff;
    padding: 4.5rem 0;
}

.legal-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
    color: #5c6670;
    margin: 0 auto;
    max-width: 1060px;
    padding: 3rem;
}

.legal-card .legal-date,
.legal-card p,
.legal-card li {
    font-size: .92rem;
    line-height: 1.85;
}

.legal-card h2 {
    color: var(--brand);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 850;
    letter-spacing: 0;
    margin: 2rem 0 .7rem;
}

.legal-card ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.legal-card li {
    margin-bottom: .35rem;
}

/* ========== CAUSE CAROUSEL ========== */
.cause-carousel-section {
    overflow: hidden;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 50%, #f0f4f8 100%);
    position: relative;
}

.cause-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(25, 135, 84, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(25, 135, 84, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.cause-carousel-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(25, 135, 84, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.cause-carousel-track {
    display: flex;
    gap: 2rem;
    padding: 0 2rem;
    width: max-content;
    animation: scrollLeft 80s linear infinite;
}

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

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.cause-carousel-card {
    width: 420px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
}

.cause-carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--brand) 0%, transparent 50%, var(--brand-light) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.cause-carousel-card:hover::before {
    opacity: 1;
}

.cause-carousel-card:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.cause-carousel-card:nth-child(even) {
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.cause-carousel-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15), 0 15px 40px rgba(25, 135, 84, 0.12);
    animation-play-state: paused;
}

.cause-carousel-images {
    display: block;
    padding: 12px;
    position: relative;
    background: linear-gradient(180deg, rgba(25, 135, 84, 0.02) 0%, transparent 100%);
}

.cause-carousel-img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: blur(0.3px) brightness(0.97);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cause-carousel-card:hover .cause-carousel-img {
    filter: blur(0) brightness(1.05);
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.cause-carousel-text {
    padding: 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    position: relative;
}

.cause-carousel-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
    border-radius: 0 0 2px 2px;
}

.cause-carousel-text h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cause-carousel-text p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.cause-carousel-text .btn {
    padding: 0.6rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 3px 12px rgba(25, 135, 84, 0.25);
}

.cause-carousel-text .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 135, 84, 0.4);
}

@media (max-width: 768px) {
    .cause-carousel-card {
        width: 320px;
    }

    .cause-carousel-img {
        height: 200px;
        object-fit: contain;
    }

    .cause-carousel-text h2 {
        font-size: 1.2rem;
    }

    .cause-carousel-text p {
        font-size: 0.85rem;
    }

    .cause-carousel-text {
        padding: 1.25rem;
    }

    .cause-carousel-section {
        padding: 2.5rem 0;
    }
}

/* ========== INDIA MAP SECTION ========== */
.india-impact-section {
    background: var(--soft);
}

.pan-india-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

.pan-india-text {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.pan-india-motto {
    font-size: 1.1rem;
    color: var(--brand);
    font-weight: 500;
    font-style: italic;
}

.india-map-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.india-map-img {
    width: 100%;
    height: auto;
    filter: grayscale(60%) sepia(30%) hue-rotate(100deg) saturate(1.8) brightness(1.02);
}

.map-caption {
    text-align: center;
    margin-top: 1rem;
}

.map-caption strong {
    display: block;
    color: var(--ink);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.map-caption span {
    color: var(--muted);
    font-size: 0.9rem;
}

/* ========== FAQ BANNER ========== */
.faq-banner-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.faq-banner-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: hue-rotate(120deg) saturate(1.5);
}

.faq-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21, 148, 71, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-banner-overlay h1 {
    color: #fff;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

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

.btn-outline-primary:hover {
    background: var(--blue) !important;
    border-color: var(--blue) !important;
    color: #fff !important;
}

/* ========== NEWSLETTER TOAST ========== */
.newsletter-toast {
    background: var(--brand) !important;
    color: #fff !important;
    border-radius: var(--radius) !important;
    box-shadow: 0 8px 32px rgba(21, 148, 71, .35) !important;
}

.newsletter-toast .toast-body {
    color: #fff;
    font-size: .95rem;
    line-height: 1.6;
    padding: 1.25rem 1.5rem;
}

.newsletter-toast .toast-body strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .35rem;
}

.newsletter-toast .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* ========== MEDICAL BLUE BUTTON ========== */
.btn-medical-blue {
    background: var(--blue) !important;
    border-color: var(--blue) !important;
    color: #fff !important;
}

.btn-medical-blue:hover {
    background: #0b5ed7 !important;
    border-color: #0b5ed7 !important;
}

.medical-amount-grid .btn-medical-blue {
    border-color: var(--blue) !important;
    color: var(--blue) !important;
    background: transparent !important;
}

.medical-amount-grid .btn-medical-blue:hover {
    background: var(--blue) !important;
    color: #fff !important;
}

/* ========== IMAGE SCROLL CAROUSEL ========== */
.image-scroll-carousel {
    width: 100%;
    overflow: hidden;
    background: #000;
    margin-top: 78px;
}

/* Donate Now Section */
.donate-now-section {
    background: #fff;
    padding: 3rem 0;
}

.btn-donate-now-small {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-donate-now-small:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
    color: #fff;
}

.btn-donate-now-small i {
    font-size: 1rem;
}

.image-scroll-track {
    display: flex;
    gap: 0;
    animation: scrollImages 40s linear infinite;
}

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

@keyframes scrollImages {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.image-scroll-item {
    flex: 0 0 auto;
    position: relative;
    width: 600px;
    overflow: hidden;
}

.image-scroll-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.btn-scroll-donate {
    position: absolute;
    bottom: 20px;
    left: 140px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-scroll-donate:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
    color: #fff;
}

@media (max-width: 768px) {
    .image-scroll-item {
        width: 400px;
    }
    
    .btn-scroll-donate {
        padding: 6px 16px;
        font-size: 0.75rem;
        bottom: 15px;
        left: 90px;
    }
}

/* ========== HERO CAROUSEL ========== */
.hero-carousel-section {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
}

.hero-carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    animation: heroAutoScroll 45s linear infinite;
}

.hero-carousel-track::-webkit-scrollbar {
    display: none;
}

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

@keyframes heroAutoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100%));
    }
}

.hero-carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: start;
}

.hero-carousel-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
    transition: transform 8s ease;
}

.hero-carousel-card:hover img {
    transform: scale(1.1);
}

.hero-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.8) 100%);
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(21, 148, 71, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(21, 148, 71, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(21, 148, 71, 0.6);
    }
}

.hero-carousel-overlay h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    max-width: 900px;
}

.hero-carousel-overlay p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    font-weight: 400;
}

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

.btn-hero-donate {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(21, 148, 71, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-hero-donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-hero-donate:hover::before {
    left: 100%;
}

.btn-hero-donate:hover {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #0a5629 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(21, 148, 71, 0.6);
    color: #fff;
}

.btn-hero-learn {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-learn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    color: #fff;
}

.hero-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 10;
}

.hero-carousel-nav-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    color: var(--brand);
    font-size: 1.5rem;
}

.hero-carousel-nav-btn:hover {
    background: var(--brand);
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(21, 148, 71, 0.5);
}

.hero-carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-carousel-indicator {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-carousel-indicator.active {
    background: var(--brand);
    width: 80px;
    box-shadow: 0 2px 10px rgba(21, 148, 71, 0.5);
}

@media (max-width: 768px) {
    .hero-carousel-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-carousel-overlay h1 {
        font-size: 2rem;
    }
    
    .hero-carousel-overlay p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .btn-hero-donate,
    .btn-hero-learn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-carousel-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .hero-carousel-nav {
        padding: 0 1rem;
    }
}

/* ========== MONTHLY DONATION CAROUSEL ========== */
.monthly-carousel-section {
    margin: 2rem 0;
    padding: 0 1rem;
    background: linear-gradient(135deg, #f6fbf8 0%, #eaf8ef 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(21, 148, 71, 0.1);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    animation: autoScroll 30s linear infinite;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

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

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 1.5rem));
    }
}

.carousel-slide {
    flex: 0 0 320px;
    scroll-snap-align: start;
}

.carousel-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.carousel-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(21, 148, 71, 0.25);
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-card:hover img {
    transform: scale(1.1);
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 2rem 1.25rem 1.25rem;
    color: #fff;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.carousel-card:hover .carousel-overlay {
    transform: translateY(-5px);
}

.carousel-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-overlay p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.btn-donate-monthly {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(21, 148, 71, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-donate-monthly:hover {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #0a5629 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 148, 71, 0.5);
    color: #fff;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-nav-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    pointer-events: auto;
    color: var(--brand);
    font-size: 1.25rem;
}

.carousel-nav-btn:hover {
    background: var(--brand);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(21, 148, 71, 0.35);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0 1rem;
}

.carousel-indicator {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(21, 148, 71, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: var(--brand);
    width: 60px;
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 280px;
    }
    
    .carousel-overlay h3 {
        font-size: 1.2rem;
    }
    
    .carousel-overlay p {
        font-size: 0.85rem;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
