/* ============================================
   FERAL WATCH & TNR - Modern Website Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Brand colors matched to Feral Watch logo */
    --primary: #00a757;
    --primary-dark: #008a48;
    --primary-light: #e6f7ee;
    --primary-glow: rgba(0, 167, 87, 0.15);

    --accent: #00a757;
    --accent-dark: #008a48;
    --accent-light: #e6f7ee;

    --danger: #dc2626;
    --danger-light: #fef2f2;

    --dark: #1a1a1a;
    --dark-700: #2a2a2a;
    --dark-600: #3a3a3a;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #eaebed;
    --gray-100: #f6f6f6;
    --white: #ffffff;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s ease;
}

/* --- Custom Cat Paw Cursors --- */
/* Normal paw cursor */
html {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cellipse cx='16' cy='22' rx='7' ry='6' fill='%231a1a1a'/%3E%3Cellipse cx='9' cy='13' rx='3.5' ry='4' fill='%231a1a1a' transform='rotate(-15 9 13)'/%3E%3Cellipse cx='16' cy='10' rx='3.5' ry='4' fill='%231a1a1a'/%3E%3Cellipse cx='23' cy='13' rx='3.5' ry='4' fill='%231a1a1a' transform='rotate(15 23 13)'/%3E%3Cellipse cx='16' cy='23' rx='5' ry='4' fill='%2300a757' opacity='0.35'/%3E%3C/svg%3E") 16 16, auto;
}

/* Pointer paw for clickable elements */
a, button, [role="button"], .btn, .donate-btn, .gallery-item, input[type="submit"],
label, select, .nav-toggle, .lightbox-close, .lightbox-prev, .lightbox-next,
.floating-donate, .help-card, .feral-card {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cellipse cx='16' cy='22' rx='7' ry='6' fill='%2300a757'/%3E%3Cellipse cx='9' cy='13' rx='3.5' ry='4' fill='%2300a757' transform='rotate(-15 9 13)'/%3E%3Cellipse cx='16' cy='10' rx='3.5' ry='4' fill='%2300a757'/%3E%3Cellipse cx='23' cy='13' rx='3.5' ry='4' fill='%2300a757' transform='rotate(15 23 13)'/%3E%3Cellipse cx='16' cy='23' rx='5' ry='4' fill='%231a1a1a' opacity='0.2'/%3E%3C/svg%3E") 16 16, pointer;
}

/* --- Claw Mark Click Effect --- */
.claw-mark {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) rotate(-20deg);
    animation: clawFade 0.8s ease-out forwards;
}

.claw-mark svg {
    overflow: visible;
}

.claw-line {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: clawScratch 0.3s ease-out forwards;
}

.claw-line-1 { animation-delay: 0s; }
.claw-line-2 { animation-delay: 0.06s; }
.claw-line-3 { animation-delay: 0.12s; }

@keyframes clawScratch {
    to { stroke-dashoffset: 0; }
}

@keyframes clawFade {
    0% { opacity: 1; transform: translate(-50%, -50%) rotate(-20deg) scale(0.7); }
    30% { opacity: 1; transform: translate(-50%, -50%) rotate(-20deg) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) rotate(-20deg) scale(1.1); }
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-600);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
}

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

.section {
    padding: 80px 0;
}

/* --- Mascot Cat SVG (reusable) --- */
.mascot-cat {
    display: inline-block;
    flex-shrink: 0;
}

.mascot-cat svg {
    width: 100%;
    height: 100%;
}

/* Hero mascot - large cat sitting beside text */
.hero-mascot {
    position: absolute;
    right: 8%;
    bottom: 10%;
    width: 200px;
    height: auto;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}

/* Stats section - small cat peeking from corner */
.stats-mascot {
    position: absolute;
    right: -10px;
    top: -35px;
    width: 60px;
    opacity: 0.7;
    z-index: 4;
    transform: scaleX(-1);
}

.stats {
    position: relative;
}

/* Section divider cat */
.section-cat {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.section-cat .mascot-cat {
    width: 40px;
    opacity: 0.15;
}

/* Donate CTA cat silhouette */
.donate-mascot {
    position: absolute;
    left: 5%;
    bottom: 0;
    width: 140px;
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
}

/* Contact section cat */
.contact-mascot {
    width: 80px;
    opacity: 0.08;
    position: absolute;
    right: 20px;
    bottom: 20px;
    pointer-events: none;
}

/* Footer cat */
.footer-mascot {
    width: 50px;
    opacity: 0.15;
    margin-top: 12px;
}

/* Vacuum callout cat */
.vacuum-mascot {
    width: 50px;
    opacity: 0.2;
    flex-shrink: 0;
}

/* Gallery page hero cat */
.page-hero-mascot {
    position: absolute;
    right: 10%;
    bottom: -5px;
    width: 100px;
    opacity: 0.1;
    pointer-events: none;
}

.page-hero {
    position: relative;
    overflow: hidden;
}

/* Help section card cat watermark */
.help-card-mascot {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 35px;
    opacity: 0.06;
    pointer-events: none;
}

.help-card {
    position: relative;
    overflow: visible;
}

/* Education warning cat */
.edu-card-mascot {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 30px;
    opacity: 0.07;
    pointer-events: none;
}

.edu-card {
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-mascot {
        width: 120px;
        opacity: 0.08;
        right: 5%;
        bottom: 15%;
    }

    .stats-mascot {
        display: none;
    }

    .donate-mascot {
        width: 100px;
    }

    .page-hero-mascot {
        width: 70px;
    }
}

/* --- Top Banner --- */
.top-banner {
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-size: 0.875rem;
    position: relative;
    z-index: 1001;
}

.top-banner p {
    margin: 0;
}

.top-banner strong {
    color: #3ddc84;
}

.top-banner a {
    color: #3ddc84;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.top-banner a:hover {
    color: var(--white);
}

/* --- Header / Navigation --- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--dark);
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-menu a {
    display: block;
    padding: 8px 14px;
    color: var(--dark-600);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.btn-nav {
    background: var(--primary) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    border-radius: var(--radius-md) !important;
}

.btn-nav:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #1a1a1a;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    filter: grayscale(10%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 40, 20, 0.75) 0%,
        rgba(0, 80, 42, 0.4) 50%,
        rgba(0, 30, 15, 0.85) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--gray-300);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.text-accent {
    color: #3ddc84;
    position: relative;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--gray-300);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.8rem;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--gray-400);
    border-bottom: 2px solid var(--gray-400);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(8px); }
}

/* --- Stats --- */
.stats {
    background: var(--white);
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.stat-card {
    padding: 36px 24px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--gray-200);
}

.stat-card:hover {
    background: var(--primary-light);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.stat-detail {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* --- About --- */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-content .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 16px;
}

.about-content p {
    margin-bottom: 16px;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.badge-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.about-image {
    position: relative;
}

.image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 3px solid var(--primary);
    opacity: 0.2;
}

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Operations Note */
.operations-note {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.operations-note h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.op-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.op-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.op-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* --- TNR Section --- */
.tnr {
    background: var(--gray-100);
}

.tnr-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
}

.tnr-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition);
}

.tnr-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    color: var(--primary);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.tnr-step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.tnr-step p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

.tnr-connector {
    display: flex;
    align-items: center;
    padding-top: 80px;
    color: var(--primary);
    flex-shrink: 0;
}

.tnr-connector svg {
    width: 40px;
    height: 24px;
}

/* TNR Badge Info */
.tnr-badge-info {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
}

.badge-visual {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    color: var(--primary);
}

.badge-visual svg {
    width: 100%;
    height: 100%;
}

.badge-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.badge-text p {
    color: var(--gray-500);
}

/* Benefits */
.tnr-benefits {
    margin-bottom: 40px;
}

.tnr-benefits h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.benefit:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.benefit svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary);
}

.benefit span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Vacuum Callout */
.vacuum-callout {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 32px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.vacuum-callout h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.vacuum-callout p {
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Feral Info --- */
.feral-info {
    background: var(--white);
}

.feral-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fact-card {
    padding: 32px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.fact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.fact-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.fact-icon svg {
    width: 100%;
    height: 100%;
}

.fact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.fact-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* --- Help / Ways to Help --- */
.help {
    background: var(--gray-100);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.help-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.help-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.help-card.featured {
    border-color: var(--primary);
    background: linear-gradient(to bottom, var(--primary-light), var(--white));
}

.help-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--dark);
    color: #3ddc84;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    white-space: nowrap;
}

.help-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--primary);
}

.help-icon svg {
    width: 100%;
    height: 100%;
}

.help-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.help-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.help-price span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-500);
}

.help-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    flex-grow: 1;
}

.help-card .btn {
    align-self: center;
    width: 100%;
}

/* --- Partners & Supporters --- */
.partners {
    background: var(--gray-100);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.partner-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all var(--transition);
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.partner-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.partner-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.partner-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.tech-partners {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary);
}

.tech-partners-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.tech-partners-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.tech-partners h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.tech-partners p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.tech-partners p strong {
    color: var(--dark);
}

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

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .tech-partners {
        padding: 24px 20px;
    }

    .tech-partners-content {
        flex-direction: column;
    }
}

/* --- Donate CTA --- */
.donate-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.donate-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 167, 87, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 167, 87, 0.08) 0%, transparent 40%);
}

.donate-content {
    position: relative;
    z-index: 1;
}

.donate-cta h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.donate-cta p {
    color: var(--gray-300);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.donate-options {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.donate-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 48px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition);
    min-width: 240px;
}

.donate-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.donate-btn.payfast {
    background: var(--primary);
    color: var(--white);
}

.donate-btn.payfast:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.donate-btn.paypal {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--gray-300);
}

.donate-btn.paypal:hover {
    background: var(--gray-100);
    color: var(--dark);
    border-color: var(--primary);
}

.donate-btn-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.donate-btn-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
}

.donate-btn-desc {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 4px;
}

.donate-bank {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.donate-bank h4 {
    color: var(--gray-300);
    font-size: 1rem;
    margin-bottom: 8px;
}

.donate-bank a {
    color: #3ddc84;
}

.bank-details {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.bank-details p {
    color: var(--white);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.tax-badge-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(61, 220, 132, 0.15), rgba(0, 167, 87, 0.1));
    border: 1px solid rgba(61, 220, 132, 0.3);
    border-radius: var(--radius-md);
    text-align: left;
}

.tax-badge-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(61, 220, 132, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3ddc84;
}

.tax-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tax-badge-text strong {
    color: #3ddc84;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.tax-badge-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.donate-snapscan {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.snapscan-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all var(--transition);
}

.snapscan-toggle:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
}

.snapscan-toggle svg {
    flex-shrink: 0;
}

.snapscan-chevron {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.donate-snapscan.open .snapscan-chevron,
.snapscan-option.open .snapscan-chevron {
    transform: rotate(180deg);
}

.snapscan-qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.donate-snapscan.open .snapscan-qr-wrap,
.snapscan-option.open .snapscan-qr-wrap {
    max-height: 400px;
    opacity: 1;
    margin-top: 16px;
}

.snapscan-qr {
    width: 180px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.snapscan-qr-small .snapscan-qr {
    width: 150px;
}

.snapscan-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Donate page sidebar snapscan (dark on light) */
.snapscan-toggle-sm {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    color: var(--dark);
    padding: 12px 16px;
    font-size: 0.9rem;
}

.snapscan-toggle-sm:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.snapscan-option .snapscan-hint {
    color: var(--gray-400);
}

/* --- Education --- */
.education {
    background: var(--white);
}

.education-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.edu-card {
    padding: 32px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.edu-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.edu-card.warning {
    border-color: var(--danger);
    background: var(--danger-light);
}

.edu-card.warning:hover {
    border-color: var(--danger);
}

.edu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.edu-header svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--primary);
}

.edu-card.warning .edu-header svg {
    color: var(--danger);
}

.edu-header h3 {
    font-size: 1.15rem;
}

.edu-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.edu-list {
    list-style: none;
    margin-bottom: 16px;
}

.edu-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.edu-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.edu-card.warning .edu-list li::before {
    background: var(--danger);
}

.edu-alternative {
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
}

/* --- Contact --- */
.contact {
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.contact-item:hover {
    box-shadow: var(--shadow-md);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 4px;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.contact-item p {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-item a {
    font-weight: 500;
}

.contact-note {
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 700;
    font-style: italic;
    padding: 16px 24px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.contact-cta {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-cta-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-cta-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-cta-card p {
    color: var(--gray-500);
    margin-bottom: 16px;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--dark-700);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text .logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
}

.footer-logo-text .logo-sub {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.footer-about p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-donate h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.footer-donate p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gray-400);
    transition: color var(--transition);
}

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

/* --- Floating Donate Button --- */
.floating-donate {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 167, 87, 0.4);
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 999;
    transition: all var(--transition);
    text-decoration: none;
}

.floating-donate:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 167, 87, 0.5);
}

.floating-donate svg {
    width: 20px;
    height: 20px;
}

/* --- Sub-Page Shared Styles --- */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #0a0a0a 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-hero .section-tag {
    margin-bottom: 16px;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: var(--gray-400);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}

/* Page CTA Banner */
.page-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0;
    text-align: center;
}

.page-cta-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.page-cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.page-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.page-cta .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* Active nav link */
.nav-menu a.active {
    color: var(--primary);
    background: var(--primary-light);
}

/* --- Donate Page --- */
.donate-page-section {
    padding: 60px 0 80px;
}

.donate-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.donate-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-light);
}

.donate-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.donate-form-header svg {
    color: var(--primary);
    margin-bottom: 12px;
}

.donate-form-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.donate-form-header p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.donate-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.amount-btn {
    padding: 14px 8px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    transition: all var(--transition);
    font-family: var(--font-body);
}

.amount-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.amount-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.amount-input-wrap {
    margin-bottom: 24px;
}

.amount-input-wrap label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.95rem;
}

.amount-input-field {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.amount-input-field:focus-within {
    border-color: var(--primary);
}

.amount-prefix {
    padding: 14px 16px;
    background: var(--gray-100);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
    border-right: 2px solid var(--gray-200);
}

.amount-input-field input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    outline: none;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--dark);
    background: transparent;
}

.amount-input-field input::placeholder {
    color: var(--gray-400);
}

.amount-min {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 6px;
}

.donate-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.payfast-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-400);
    text-align: center;
}

/* Donate page info sidebar */
.donate-impact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.donate-impact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.impact-list {
    list-style: none;
}

.impact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.impact-list li:last-child {
    border-bottom: none;
}

.impact-amount {
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
    min-width: 60px;
}

.impact-desc {
    font-size: 0.9rem;
    color: var(--dark-600);
    line-height: 1.4;
}

.other-donate-option {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.other-donate-option:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.other-donate-option h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.other-donate-option p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 10px;
    line-height: 1.5;
}

.other-donate-option .btn {
    font-size: 0.8rem;
}

.donate-tax-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    padding: 20px;
    border-left: 4px solid var(--primary);
}

.donate-tax-note svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.donate-tax-note strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.donate-tax-note p {
    font-size: 0.85rem;
    color: var(--dark-600);
    line-height: 1.5;
    margin: 0;
}

.donate-tax-note-highlight {
    background: linear-gradient(135deg, var(--primary-light), #d4f5e2);
    border-left: 5px solid var(--primary);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0, 167, 87, 0.1);
}

.donate-tax-note-highlight .tax-note-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.donate-tax-note-highlight .tax-note-icon svg {
    color: var(--white);
}

.donate-tax-note-highlight strong {
    font-size: 1.05rem;
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .donate-page-grid {
        grid-template-columns: 1fr;
    }

    .donate-form-card {
        padding: 28px 20px;
    }

    .donate-amounts {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .amount-btn {
        padding: 12px 4px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .donate-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Gallery Page --- */
.gallery-section {
    background: var(--gray-100);
}

.gallery-grid {
    columns: 3;
    column-gap: 16px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* --- Privacy Policy Page --- */
.policy-section {
    background: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.policy-content h3 {
    font-size: 1.15rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--dark);
}

.policy-content p {
    margin-bottom: 14px;
    color: var(--dark-600);
}

.policy-content ul {
    margin: 0 0 16px 24px;
    color: var(--dark-600);
}

.policy-content ul li {
    margin-bottom: 6px;
    padding-left: 4px;
}

.policy-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.policy-contact-card {
    padding: 28px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.policy-contact-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.policy-contact-card p {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .gallery-grid {
        columns: 2;
    }

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

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

    .stat-card:nth-child(2)::after {
        display: none;
    }

    .stat-card:nth-child(1)::after,
    .stat-card:nth-child(3)::after {
        height: 100%;
        top: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .image-frame img {
        height: 300px;
    }

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

    .tnr-steps {
        flex-direction: column;
        align-items: center;
    }

    .tnr-connector {
        transform: rotate(90deg);
        padding-top: 0;
        padding: 10px 0;
    }

    .tnr-step {
        max-width: 400px;
        width: 100%;
    }

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

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

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

@media (max-width: 768px) {
    .gallery-grid {
        columns: 2;
    }

    .page-hero {
        padding: 100px 0 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .section {
        padding: 60px 0;
    }

    .top-banner {
        font-size: 0.8rem;
        padding: 8px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-scroll {
        display: none;
    }

    .stats {
        margin-top: -30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: var(--radius-lg);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .tnr-badge-info {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .badge-visual {
        width: 80px;
        height: 80px;
    }

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

    .feral-facts {
        grid-template-columns: 1fr;
    }

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

    .education-cards {
        grid-template-columns: 1fr;
    }

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

    .donate-options {
        flex-direction: column;
        align-items: center;
    }

    .donate-btn {
        width: 100%;
        max-width: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        columns: 1;
    }

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

    .stat-card::after {
        display: none !important;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .vacuum-callout {
        padding: 24px 20px;
    }
}
