/* =====================================================
   Paws & Hope — design tokens
===================================================== */
:root {
    --primary: #FF7A30;
    --primary-dark: #E85D04;
    --primary-light: #FFE8D6;
    --ink: #241C15;
    --ink-soft: #5B4E42;
    --cream: #FFF8F0;
    --cream-dark: #FBEEE0;
    --white: #FFFFFF;
    --teal: #0EA5A5;
    --gold: #F4B400;
    --danger: #E5484D;
    --success: #2E9E5B;
    --border: rgba(36, 28, 21, 0.10);
    --shadow-sm: 0 2px 10px rgba(36, 28, 21, 0.06);
    --shadow-md: 0 10px 30px rgba(36, 28, 21, 0.10);
    --shadow-lg: 0 20px 50px rgba(36, 28, 21, 0.16);
    --radius: 18px;
    --radius-sm: 10px;
    --font-head: 'Fredoka', 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-head {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 90px 0; }
.section-sm { padding: 50px 0; }
.bg-cream { background: var(--cream-dark); }
.bg-ink { background: var(--ink); color: #EFE6DB; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 14px; }
.section-head p { color: var(--ink-soft); font-size: 17px; margin: 0; }
.section-head.align-left { margin-left: 0; text-align: left; }

/* =====================================================
   Buttons
===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 10px 24px rgba(232, 93, 4, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(232, 93, 4, 0.4); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost { background: var(--primary-light); color: var(--primary-dark); }
.btn-ghost:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; }

/* =====================================================
   Navbar
===================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .3s ease;
}
.navbar.scrolled {
    background: rgba(255, 248, 240, 0.9);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--ink); }
.brand .paw { font-size: 26px; }
.navbar.on-dark:not(.scrolled) .brand { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
    font-weight: 600; font-size: 15px; color: var(--ink); position: relative; padding: 4px 0;
}
.navbar.on-dark:not(.scrolled) .nav-links a { color: #fff; }
.nav-links a.active,
.nav-links a:hover { color: var(--primary-dark); }
.navbar.on-dark:not(.scrolled) .nav-links a.active,
.navbar.on-dark:not(.scrolled) .nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; color: inherit; }

@media (max-width: 900px) {
    .nav-toggle { display: block; z-index: 1100; }
    .nav-links {
        position: fixed; inset: 0 0 0 30%; background: var(--ink); flex-direction: column;
        justify-content: center; gap: 28px; transform: translateX(100%); transition: transform .35s ease;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { color: #fff !important; font-size: 20px; }
    .navbar .nav-actions .btn-primary { padding: 10px 18px; font-size: 13px; }
}

/* =====================================================
   Hero
===================================================== */
.hero {
    position: relative;
    padding: 170px 0 120px;
    background: radial-gradient(1200px 600px at 80% -10%, #3a2c1f 0%, var(--ink) 55%);
    color: #fff;
    overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
.hero h1 { font-size: clamp(34px, 5vw, 58px); color: #fff; margin: 18px 0 20px; }
.hero h1 .highlight { color: var(--primary); position: relative; }
.hero p.lead { font-size: 18px; color: #D8CDBF; max-width: 520px; margin-bottom: 34px; }
.hero .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; margin-top: 46px; flex-wrap: wrap; }
.hero-trust div strong { display: block; font-family: var(--font-head); font-size: 24px; color: var(--gold); }
.hero-trust div span { font-size: 13px; color: #BFB2A2; }

.hero-visual { position: relative; }
.hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 28px;
    padding: 14px;
    backdrop-filter: blur(6px);
}
.hero-card img { border-radius: 20px; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-float {
    position: absolute;
    background: #fff;
    color: var(--ink);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    animation: float 4s ease-in-out infinite;
}
.hero-float.one { top: 10%; left: -40px; }
.hero-float.two { bottom: 8%; right: -30px; animation-delay: 1.5s; }
.hero-float .ico { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; color: var(--primary-dark); font-size: 18px; }
.hero-float small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 12px; }

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

.paw-print { position: absolute; opacity: .12; color: var(--primary); font-size: 60px; z-index: 1; animation: drift 12s ease-in-out infinite; }
@keyframes drift { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-30px) rotate(12deg); } }

@media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero { padding: 140px 0 80px; text-align: center; }
    .hero p.lead { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-trust { justify-content: center; }
    .hero-visual { max-width: 340px; margin: 40px auto 0; }
    .hero-float { display: none; }
}

/* =====================================================
   Stats strip
===================================================== */
.stats-strip {
    background: var(--white);
    margin-top: -60px;
    position: relative;
    z-index: 5;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    max-width: 1180px;
    margin-left: auto; margin-right: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item { text-align: center; padding: 34px 10px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-item .num { font-family: var(--font-head); font-size: 36px; color: var(--primary-dark); }
.stat-item .lbl { font-size: 13px; color: var(--ink-soft); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
@media (max-width: 780px) {
    .stats-strip { grid-template-columns: repeat(2, 1fr); border-radius: 18px; margin-top: -40px; }
    .stat-item { border-bottom: 1px solid var(--border); }
}

/* =====================================================
   About / mission split
===================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.split .checklist li { display: flex; gap: 12px; margin-bottom: 14px; font-weight: 500; }
.split .checklist li .tick { color: var(--success); font-size: 18px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 34px; } }

/* =====================================================
   Campaign cards
===================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid var(--border);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.campaign-card .thumb { position: relative; height: 190px; overflow: hidden; }
.campaign-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.campaign-card:hover .thumb img { transform: scale(1.08); }
.campaign-card .badge {
    position: absolute; top: 14px; left: 14px; background: rgba(36,28,21,.75); color: #fff;
    font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em;
}
.campaign-card .body { padding: 22px; }
.campaign-card h3 { font-size: 19px; margin: 0 0 8px; }
.campaign-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 18px; }
.progress { height: 9px; background: var(--cream-dark); border-radius: 999px; overflow: hidden; margin-bottom: 10px; }
.progress > span { display: block; height: 100%; background: linear-gradient(90deg, var(--primary), var(--gold)); border-radius: 999px; transition: width 1.2s ease; }
.campaign-meta { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 18px; }
.campaign-meta strong { color: var(--ink); font-family: var(--font-head); font-size: 15px; }
.campaign-meta span { color: var(--ink-soft); }

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

/* =====================================================
   How it works
===================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step { text-align: center; position: relative; padding: 10px; }
.step .step-ico {
    width: 76px; height: 76px; border-radius: 50%; background: var(--primary-light); color: var(--primary-dark);
    display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 20px; position: relative;
}
.step .step-num {
    position: absolute; top: -6px; right: calc(50% - 46px); background: var(--ink); color: #fff;
    width: 26px; height: 26px; border-radius: 50%; font-size: 12px; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.step h3 { font-size: 18px; margin: 0 0 8px; }
.step p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 46px; } }

/* =====================================================
   Gallery
===================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid a { display: block; border-radius: 14px; overflow: hidden; position: relative; aspect-ratio: 1/1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid a:hover img { transform: scale(1.1); }
.gallery-grid a::after {
    content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px;
    background: rgba(36,28,21,0); transition: background .25s ease, opacity .25s ease; opacity: 0;
}
.gallery-grid a:hover::after { background: rgba(36,28,21,.45); opacity: 1; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.lightbox { position: fixed; inset: 0; background: rgba(20,15,10,.92); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox .close-lb { position: absolute; top: 26px; right: 30px; color: #fff; font-size: 30px; background: none; border: none; }

/* =====================================================
   Testimonials
===================================================== */
.testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card { background: var(--white); border-radius: var(--radius); padding: 30px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.testi-card .quote-ico { color: var(--primary); font-size: 26px; margin-bottom: 14px; }
.testi-card p.msg { color: var(--ink-soft); font-size: 15px; margin: 0 0 22px; }
.testi-card .who { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-light); color: var(--primary-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-head); }
.testi-card .who strong { display: block; font-size: 14.5px; }
.testi-card .who span { font-size: 12.5px; color: var(--ink-soft); }
@media (max-width: 900px) { .testi-track { grid-template-columns: 1fr; } }

/* =====================================================
   Donor wall
===================================================== */
.donor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.donor-card {
    display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; padding: 16px 18px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.donor-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.donor-card .testi-avatar { flex-shrink: 0; }
.donor-card .info { min-width: 0; flex: 1; }
.donor-card .info strong { display: block; font-size: 14.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.donor-card .info span { font-size: 12.5px; color: var(--ink-soft); }
.donor-card .amt { font-family: var(--font-head); font-weight: 700; color: var(--primary-dark); font-size: 16px; flex-shrink: 0; }
.donor-card.anon .testi-avatar { background: var(--cream-dark); color: var(--ink-soft); }
@media (max-width: 980px) { .donor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .donor-grid { grid-template-columns: 1fr; } }

/* =====================================================
   CTA banner
===================================================== */
.cta-banner {
    background: linear-gradient(120deg, var(--primary-dark), var(--primary));
    border-radius: 28px;
    padding: 60px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.cta-banner h2 { color: #fff; margin: 0 0 10px; font-size: 30px; }
.cta-banner p { margin: 0; color: rgba(255,255,255,.85); }
@media (max-width: 700px) { .cta-banner { padding: 40px 26px; text-align: center; justify-content: center; } }

/* =====================================================
   Footer
===================================================== */
.site-footer { background: var(--ink); color: #C9BCAC; padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.site-footer .brand { color: #fff; }
.site-footer p.desc { font-size: 14.5px; margin: 16px 0 20px; max-width: 300px; }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .2s ease, transform .2s ease; }
.social-row a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 15px; margin: 0 0 18px; }
.footer-col li { margin-bottom: 12px; font-size: 14.5px; }
.footer-col a:hover { color: var(--primary); }
.footer-col .contact-line { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.footer-col .contact-line i { color: var(--primary); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 10px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.back-to-top {
    position: fixed; bottom: 26px; right: 26px; width: 46px; height: 46px; border-radius: 50%;
    background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); border: none; font-size: 18px; opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all .3s ease; z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* =====================================================
   Page header (inner pages)
===================================================== */
.page-head {
    background: radial-gradient(1000px 500px at 85% 0%, #3a2c1f, var(--ink) 60%);
    color: #fff; padding: 160px 0 70px; text-align: center;
}
.page-head .eyebrow { background: rgba(255,255,255,.1); color: var(--gold); }
.page-head h1 { color: #fff; font-size: clamp(30px, 4.5vw, 46px); margin: 14px 0 0; }
.breadcrumb { margin-top: 14px; font-size: 14px; color: #BFB2A2; }
.breadcrumb a:hover { color: var(--gold); }

/* =====================================================
   Alerts / badges / forms
===================================================== */
.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; font-size: 14.5px; font-weight: 500; display: flex; gap: 10px; align-items: flex-start; }
.alert-success { background: #E7F7EE; color: #1D7A44; border: 1px solid #BEE8CE; }
.alert-error { background: #FDEBEC; color: #B3232A; border: 1px solid #F6C3C6; }
.alert-info { background: #E9F6F6; color: #0B6E6E; border: 1px solid #BFE7E7; }

.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.badge-pending { background: #FFF3D6; color: #93690A; }
.badge-verified { background: #E1F6E9; color: #1D7A44; }
.badge-rejected { background: #FDEBEC; color: #B3232A; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.form-group .hint { font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; }
.form-control {
    width: 100%; padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border);
    background: var(--white); font-family: inherit; font-size: 15px; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-light); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.file-drop {
    border: 2px dashed var(--border); border-radius: var(--radius-sm); padding: 26px; text-align: center; cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}
.file-drop:hover { border-color: var(--primary); background: var(--primary-light); }
.file-drop i { font-size: 26px; color: var(--primary); margin-bottom: 8px; }
.file-drop .fname { font-weight: 600; font-size: 13.5px; margin-top: 8px; color: var(--ink); }

/* =====================================================
   Donate page
===================================================== */
.donate-wrap { max-width: 780px; margin: 0 auto; }
.donate-card { background: var(--white); border-radius: 24px; box-shadow: var(--shadow-lg); padding: 44px; border: 1px solid var(--border); }
.donate-stepper { display: flex; justify-content: space-between; margin-bottom: 40px; position: relative; }
.donate-stepper::before { content: ''; position: absolute; top: 17px; left: 5%; right: 5%; height: 2px; background: var(--border); z-index: 0; }
.donate-stepper .ds-item { position: relative; z-index: 1; text-align: center; flex: 1; }
.donate-stepper .ds-circle {
    width: 36px; height: 36px; border-radius: 50%; background: var(--white); border: 2px solid var(--border); color: var(--ink-soft);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; font-weight: 700; font-size: 14px; transition: all .3s ease;
}
.donate-stepper .ds-item.active .ds-circle,
.donate-stepper .ds-item.done .ds-circle { background: var(--primary); border-color: var(--primary); color: #fff; }
.donate-stepper .ds-label { font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.donate-stepper .ds-item.active .ds-label { color: var(--ink); }

.donate-step { display: none; }
.donate-step.active { display: block; animation: fadeUp .4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 20px; }
.amount-pill {
    border: 2px solid var(--border); border-radius: 14px; padding: 18px 10px; text-align: center; font-weight: 700; font-size: 18px;
    background: var(--white); transition: all .2s ease;
}
.amount-pill:hover { border-color: var(--primary); }
.amount-pill.selected { border-color: var(--primary); background: var(--primary-light); color: var(--primary-dark); }
.amount-pill small { display: block; font-weight: 500; font-size: 11.5px; color: var(--ink-soft); margin-top: 4px; }

.upi-box { text-align: center; background: var(--cream-dark); border-radius: var(--radius); padding: 30px; margin-bottom: 26px; }
.upi-box img.qr { border-radius: 12px; margin: 0 auto 16px; box-shadow: var(--shadow-sm); background: #fff; padding: 10px; }
.upi-id-row { display: inline-flex; align-items: center; gap: 10px; background: #fff; padding: 10px 16px; border-radius: 999px; border: 1.5px solid var(--border); font-weight: 700; }
.upi-id-row button { background: var(--primary); color: #fff; border: none; width: 30px; height: 30px; border-radius: 50%; font-size: 13px; }
.upi-apps { display: flex; justify-content: center; gap: 14px; margin-top: 18px; flex-wrap: wrap; }
.upi-apps a { background: #fff; border: 1.5px solid var(--border); padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 13.5px; display: flex; align-items: center; gap: 8px; }
.upi-apps a:hover { border-color: var(--primary); color: var(--primary-dark); }

.donate-nav { display: flex; justify-content: space-between; margin-top: 30px; gap: 14px; }
.summary-box { background: var(--cream-dark); border-radius: var(--radius-sm); padding: 18px 22px; margin-bottom: 24px; }
.summary-box .row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 6px 0; }
.summary-box .row strong { color: var(--ink); }

/* =====================================================
   Misc pages: about/contact/status
===================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; display: flex; gap: 16px; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.info-card .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--primary-light); color: var(--primary-dark); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.info-card h4 { margin: 0 0 4px; font-size: 15.5px; }
.info-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.status-search { max-width: 520px; margin: 0 auto; text-align: center; }
.status-result { max-width: 560px; margin: 30px auto 0; }

/* utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.d-flex { display: flex; }
.gap-2 { gap: 10px; }
.w-100 { width: 100%; }
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-aos].aos-in { opacity: 1; transform: translateY(0); }
[data-aos="zoom-in"] { transform: scale(0.92); }
[data-aos="zoom-in"].aos-in { transform: scale(1); }
[data-aos-delay="100"] { transition-delay: .1s; }
[data-aos-delay="200"] { transition-delay: .2s; }
[data-aos-delay="300"] { transition-delay: .3s; }
[data-aos-delay="400"] { transition-delay: .4s; }
