/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light theme - Enhanced Green */
    --bg-primary: #ffffff;
    --bg-secondary: #f0fdf4;
    --bg-accent: #dcfce7;
    --bg-green-light: #f7fee7;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border: #d1fae5;
    --border-hover: #a7f3d0;
    --accent-primary: #22c55e;
    --accent-secondary: #16a34a;
    --accent-hover: #15803d;
    --accent-light: #4ade80;
    --accent-dark: #166534;
    --shadow: 0 1px 3px 0 rgba(34, 197, 94, 0.1), 0 1px 2px 0 rgba(34, 197, 94, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(34, 197, 94, 0.1), 0 4px 6px -2px rgba(34, 197, 94, 0.05);
    --gradient-primary: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-secondary: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    --gradient-accent: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-accent: #334155;
    --bg-green-light: #1a2e05;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border: #374151;
    --border-hover: #4b5563;
    --accent-primary: #22c55e;
    --accent-secondary: #16a34a;
    --accent-hover: #15803d;
    --accent-light: #4ade80;
    --accent-dark: #166534;
    --shadow: 0 1px 3px 0 rgba(34, 197, 94, 0.3), 0 1px 2px 0 rgba(34, 197, 94, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(34, 197, 94, 0.3), 0 4px 6px -2px rgba(34, 197, 94, 0.2);
    --gradient-primary: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-secondary: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --gradient-accent: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    width: 300px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.search-btn {
    position: absolute;
    right: 5px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: var(--accent-primary);
}

.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--bg-accent);
    color: var(--accent-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 10px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 0 20px;
    margin-left: 5%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--bg-accent);
    border-color: var(--accent-primary);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.section-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

/* Mission Section */
.mission {
    background: var(--bg-secondary);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.mission-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    opacity: 0.8;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
}

.mission .mission-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.mission-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.mission .leaf-icon {
    font-size: 3rem;
    color: white;
    background: var(--gradient-primary);
    border-radius: 50%;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.mission .leaf-icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
}

.mission .mission-tagline {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
}

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.mission-text-block {
    flex: 1 1 50%;
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mission-text-block:hover {
    transform: translateY(-5px);
}

.mission-text-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.mission-content {
    position: relative;
    z-index: 1;
}

.mission-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-intro strong {
    color: var(--accent-primary);
    font-weight: 700;
}

.mission-features {
    margin: 2rem 0;
}

.mission-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-accent);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-primary);
}

.mission-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.2);
}

.mission-feature i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.mission-feature span {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.mission-purpose {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent-primary);
}

.mission-stats-block {
    flex: 1 1 45%;
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-stats-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.stats-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stats-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stats-header p {
    color: var(--text-muted);
    font-size: 1rem;
    font-style: italic;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.mission-stats-block .stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-accent);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.mission-stats-block .stat:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
}

.mission-stats-block .stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.5s;
}

.mission-stats-block .stat:hover::before {
    left: 100%;
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.stat-icon:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

/* Ensure stat icon animation works independently of parent hover */
.mission-stats-block .stat-icon {
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.mission-stats-block .stat-icon:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

.mission-stats-block .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    display: inline-block;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.mission-stats-block .stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    display: inline-block;
    margin-left: 0.2rem;
}

.mission-stats-block .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 0.5rem;
}

/* Animation Classes */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mission-animate {
    animation: fadeInUp 0.8s ease-out;
}

.mission-animate.delay-1 { animation-delay: 0.2s; }
.mission-animate.delay-2 { animation-delay: 0.4s; }
.mission-animate.delay-3 { animation-delay: 0.6s; }

/* Counter animation effects */
.counter-complete {
    animation: counterComplete 0.5s ease-out;
}

@keyframes counterComplete {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Stat number animation states */
.mission-stats-block .stat-number {
    transition: all 0.3s ease;
}

.mission-stats-block .stat.counter-complete .stat-number {
    color: var(--accent-secondary);
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mission-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mission-text-block,
    .mission-stats-block {
        flex: 1 1 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mission .leaf-icon {
        font-size: 2.5rem;
        padding: 1rem;
    }
    
    .mission-stats-block .stat-number {
        font-size: 2rem;
    }
}

/* Featured Items */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.item-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-info {
    padding: 1.5rem;
}

.item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.item-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.item-condition {
    padding: 4px 8px;
    background: var(--bg-accent);
    color: var(--text-secondary);
    border-radius: 6px;
    font-size: 0.875rem;
}

/* Offers Section */
.offers {
    background: var(--bg-secondary);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.featured-offer {
    background: var(--gradient-secondary);
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}

.offer-badge {
    position: absolute;
    top: -8px;
    right: 20px;
    background: var(--accent-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.offer-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.offer-code {
    font-weight: 600;
    color: var(--accent-primary);
    font-family: 'Courier New', monospace;
}

.offer-expires {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Contributors Section */
.contributors-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contributor-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
}

.contributor-card:hover {
    transform: translateY(-5px);
}

.contributor-rank {
    position: absolute;
    top: -8px;
    left: 20px;
    background: var(--accent-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.contributor-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contributor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.contributor-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contributor-stats {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.contributor-contributions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contribution-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.contribution-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Donation Section */
.donation {
    background: var(--bg-secondary);
}

.donation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.donation-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.donation-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: 8px;
}

.benefit i {
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.donation-form {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.donation-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

/* Footer */
.footer {
    background: var(--bg-accent);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    color: var(--text-secondary);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

/* Modal */
/* Quick View Modal - Enhanced Version */
.quick-view-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(12px) saturate(1.2);
    overflow-y: auto;
    padding: 1rem;
    animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-overflow-scrolling: touch;
}

@keyframes modalFadeIn {
    from { 
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to { 
        opacity: 1;
        backdrop-filter: blur(12px) saturate(1.2);
    }
}

.quick-view-modal .modal-content {
    max-width: 1000px;
    width: min(95vw, 1000px);
    min-height: 600px;
    max-height: calc(100vh - 2rem);
    overflow: hidden;
    background: var(--bg-primary);
    border-radius: 24px;
    box-shadow: 
        0 32px 64px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    animation: modalSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin: auto;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from { 
        opacity: 0;
        transform: translateY(-40px) scale(0.92);
        filter: blur(4px);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

/* Enhanced Close Button */
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    user-select: none;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 25px -8px rgba(239, 68, 68, 0.3);
}

.modal-close:active {
    transform: scale(0.95) rotate(90deg);
}

/* Quick View Grid Layout */
.quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    overflow: hidden;
}

/* Enhanced Image Container */
.quick-view-image-container {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    overflow: hidden;
}

.quick-view-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.quick-view-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 
        0 20px 40px -12px rgba(0, 0, 0, 0.25),
        0 8px 16px -8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.quick-view-image:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 
        0 32px 64px -12px rgba(0, 0, 0, 0.3),
        0 16px 32px -8px rgba(0, 0, 0, 0.15);
}

/* Enhanced Info Section */
.quick-view-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow-y: auto;
}

.quick-view-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
}

.quick-view-info h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
}

.quick-view-info h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #22c55e 0%, #3b82f6 100%);
    border-radius: 2px;
}

/* Enhanced Rating */
.quick-view-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fed7aa 100%);
    border-radius: 16px;
    border: 2px solid #fbbf24;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px -8px rgba(251, 191, 36, 0.3);
}

.quick-view-rating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    pointer-events: none;
}

.quick-view-rating i {
    color: #f59e0b;
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.4));
    transition: transform 0.2s ease;
}

.quick-view-rating i:hover {
    transform: scale(1.2) rotate(10deg);
}

.quick-view-rating .rating-value {
    font-weight: 700;
    color: #92400e;
    font-size: 1.25rem;
    text-shadow: 0 1px 2px rgba(146, 64, 14, 0.2);
}

/* Enhanced Price */
.quick-view-price {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1;
    position: relative;
    text-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
}

.quick-view-price::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 8px;
    height: 60%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 4px;
    transform: translateY(-50%);
}

/* Enhanced Description */
.quick-view-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: 16px;
    border-left: 4px solid var(--accent-primary);
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.quick-view-description::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    color: var(--accent-primary);
    opacity: 0.3;
    font-family: serif;
}

/* Enhanced Impact Info */
.impact-info {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #059669 100%);
    border: none;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 12px 32px -8px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.impact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.impact-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, 30px);
}

.impact-title {
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.impact-title::before {
    content: '🌱';
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.impact-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced Product Details */
.quick-view-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(34, 197, 94, 0.03) 100%);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.quick-view-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quick-view-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, #3b82f6 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.quick-view-detail:hover {
    border-color: var(--accent-primary);
    box-shadow: 
        0 8px 25px -8px rgba(34, 197, 94, 0.25),
        0 0 0 1px rgba(34, 197, 94, 0.1);
    transform: translateY(-2px);
}

.quick-view-detail:hover::before {
    transform: scaleX(1);
}

.quick-view-detail span:first-child {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.quick-view-detail span:last-child {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
    text-transform: capitalize;
}

/* Enhanced Actions */
.quick-view-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 2rem;
}

.quick-view-actions .btn {
    flex: 1;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: none;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.quick-view-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.quick-view-actions .btn:hover::before {
    left: 100%;
}

.quick-view-actions .btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    color: white;
    box-shadow: 
        0 8px 25px -8px rgba(34, 197, 94, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.quick-view-actions .btn-primary:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 50%, #166534 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 16px 40px -8px rgba(34, 197, 94, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.quick-view-actions .btn-primary:active {
    transform: translateY(-1px);
}

.quick-view-actions .btn-rent {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    color: white;
    box-shadow: 
        0 8px 25px -8px rgba(59, 130, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.quick-view-actions .btn-rent:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 50%, #1e3a8a 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 16px 40px -8px rgba(59, 130, 246, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.quick-view-actions .btn-rent:active {
    transform: translateY(-1px);
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .quick-view-modal {
        padding: 0.5rem;
    }
    
    .quick-view-modal .modal-content {
        width: 98vw;
        min-height: auto;
        border-radius: 20px;
    }
    
    .quick-view-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .quick-view-image-container {
        border-radius: 20px 20px 0 0;
        padding: 2rem;
        min-height: 300px;
    }
    
    .quick-view-image {
        height: 280px;
    }
    
    .quick-view-info {
        padding: 2rem;
        border-radius: 0 0 20px 20px;
    }
    
    .quick-view-info h2 {
        font-size: 1.75rem;
    }
    
    .quick-view-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-view-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .quick-view-modal {
        padding: 0.25rem;
    }
    
    .quick-view-image-container,
    .quick-view-info {
        padding: 1.5rem;
    }
    
    .quick-view-info h2 {
        font-size: 1.5rem;
    }
    
    .quick-view-price {
        font-size: 2rem;
    }
    
    .quick-view-rating {
        padding: 0.75rem 1rem;
    }
    
    .quick-view-details {
        padding: 1.5rem;
    }
    
    .quick-view-actions .btn {
        padding: 1rem 1.5rem;
    }
}

/* Loading and Performance Optimizations */
.quick-view-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .quick-view-modal,
    .quick-view-modal .modal-content,
    .modal-close,
    .quick-view-image,
    .quick-view-detail,
    .quick-view-actions .btn {
        animation: none;
        transition: none;
    }
}

/* Focus states for accessibility */
.modal-close:focus,
.quick-view-actions .btn:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .quick-view-modal .modal-content {
        border: 2px solid var(--text-primary);
    }
    
    .quick-view-rating {
        border-width: 2px;
    }
    
    .impact-info {
        border: 2px solid var(--accent-primary);
    }
}


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

/* Shop Page Styles */
.breadcrumb-container {
    background: var(--bg-secondary);
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.breadcrumb-separator {
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--accent-primary);
    font-weight: 600;
}

.shop-container {
    padding: 2rem 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 120px;
    height: fit-content;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.filter-checkbox:hover {
    color: var(--accent-primary);
}

.filter-checkbox input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid var(--accent-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-checkbox input:checked ~ .checkmark {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.filter-checkbox input:checked ~ .checkmark::after {
    opacity: 1;
    border-color: white;
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-inputs input {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.875rem;
}

.price-inputs input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.price-slider {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-slider input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--accent-primary);
    border-radius: 50%;
    cursor: pointer;
}

.price-slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--accent-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.slider-value {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

.sort-select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.875rem;
    cursor: pointer;
}

.sort-select:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 10px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: var(--accent-primary);
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--accent-primary);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.nav-link.active {
    color: var(--accent-primary);
}

.nav-link.active::after {
    width: 100%;
}

/* Shop Main Content */
.shop-main {
    min-height: 100vh;
}

.shop-header {
    margin-bottom: 3rem;
}

.shop-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.shop-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.shop-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.results-count {
    color: var(--text-secondary);
    font-weight: 500;
}

.view-toggles {
    display: flex;
    gap: 0.5rem;
}

.view-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-toggle.active,
.view-toggle:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

/* Featured Products */
.featured-products {
    margin-bottom: 3rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.featured-product {
    background: var(--gradient-secondary);
    border: 2px solid var(--accent-primary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.featured-product::before {
    content: "FEATURED";
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.featured-product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.product-condition {
    padding: 4px 8px;
    background: var(--bg-accent);
    color: var(--text-secondary);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
    flex: 1;
}

.btn-rent {
    background: var(--gradient-accent);
    color: white;
    border: none;
}

.btn-rent:hover {
    background: var(--accent-hover);
}

.quick-view-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--bg-primary);
    color: var(--text-secondary);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: var(--accent-primary);
    color: white;
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

/* Quick View Modal */
.quick-view-modal .modal-content {
    max-width: 800px;
    width: 90%;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.quick-view-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.quick-view-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.quick-view-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.quick-view-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quick-view-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.quick-view-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.quick-view-detail:last-child {
    border-bottom: none;
}

.quick-view-actions {
    display: flex;
    gap: 1rem;
}

.impact-info {
    background: var(--bg-green-light);
    border: 1px solid var(--accent-primary);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.impact-title {
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.impact-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: relative;
        top: 0;
        grid-row: 1;
    }
    
    .quick-view-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        border-top: 1px solid var(--border);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .search-container {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .donation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .contributors-timeline {
        grid-template-columns: 1fr;
    }

    .items-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .shop-header {
        text-align: center;
    }
    
    .shop-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-actions {
        flex-direction: row;
    }
    
    .quick-view-actions {
        flex-direction: column;
    }
}

/* List View Styles */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.products-list .product-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    max-width: none;
}

.products-list .product-image {
    width: 200px;
    height: 150px;
    margin-right: 1.5rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.products-list .product-info {
    flex: 1;
    padding: 0;
}

.products-list .product-actions {
    margin-left: auto;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 150px;
}

.products-list .quick-view-btn {
    position: relative;
    top: auto;
    right: auto;
    opacity: 1;
    transform: none;
    margin-left: 1rem;
}

/* Additional Rating Styles */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-rating i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.rating-value {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.quick-view-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.quick-view-rating i {
    color: #fbbf24;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.faq-item h3 {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Rentals Page Specific Styles */

/* Rentals Container */
.rentals-container {
    margin-top: 80px;
    padding: 2rem 0;
}

.rentals-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Rental Process Section */
.rental-process {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.process-step {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-secondary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Rental Policies */
.rental-policies {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.rental-policies h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.policy-card {
    background: var(--bg-accent);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-primary);
}

.policy-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.policy-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.policy-card ul {
    list-style: none;
    padding: 0;
}

.policy-card li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.policy-card li::before {
    content: '•';
    color: var(--accent-primary);
    position: absolute;
    left: 0;
}

/* Rental Categories */
.rental-categories {
    padding: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.category-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.category-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.item-count {
    color: var(--accent-primary);
    font-weight: 600;
}

.price-range {
    color: var(--text-muted);
}

/* Featured Rentals */
.featured-rentals {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.rental-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
}

.rental-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.rental-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.rental-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.rental-info {
    padding: 1.5rem;
}

.rental-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.rental-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.rental-pricing {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-accent);
    border-radius: 8px;
}

.price-option {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.price-option.featured {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.price-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

.price-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.rental-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.rating-value {
    color: var(--text-secondary);
    font-weight: 600;
}

.rental-impact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: var(--bg-green-light);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.rental-actions {
    display: flex;
    gap: 0.5rem;
}

.rental-actions .btn {
    flex: 1;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
}

/* Discounted Rentals */
.discounted-rentals {
    padding: 4rem 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rental-offer {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.rental-offer:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.rental-offer.featured-offer {
    background: var(--gradient-secondary);
    border-color: var(--accent-primary);
}

.offer-badge {
    position: absolute;
    top: -10px;
    left: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.offer-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.offer-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-details {
    margin-bottom: 1.5rem;
}

.offer-code {
    display: block;
    font-weight: 600;
    color: var(--accent-primary);
    font-family: monospace;
    background: var(--bg-accent);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.offer-expires {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* FAQ Section */
.rental-faq {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-accent);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Button Variants */
.btn-rent {
    background: var(--gradient-accent);
    color: white;
    border: none;
}

.btn-rent:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Navigation Active State for Rentals */
.nav-link.active {
    color: var(--accent-primary);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Modal Styles for Rentals */
.rental-booking-modal {
    max-width: 900px;
    margin: 0 auto;
}

.rental-booking-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.booking-image-section {
    text-align: center;
}

.booking-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.item-condition {
    background: var(--bg-accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: inline-block;
}

.rental-booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rental-summary {
    background: var(--bg-accent);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.rental-summary h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.summary-line.total {
    border-top: 2px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.category-modal {
    max-width: 800px;
    margin: 0 auto;
}

.category-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.mini-rental-card {
    background: var(--bg-accent);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.mini-rental-card:hover {
    transform: translateY(-3px);
}

.mini-rental-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.mini-rental-info {
    padding: 1rem;
}

.mini-rental-info h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.mini-rental-price {
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Responsive Design for Rentals */
@media (max-width: 768px) {
    .rental-booking-content {
        grid-template-columns: 1fr;
    }
    
    .categories-grid,
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
    }
    
    .rental-pricing {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .rental-actions {
        flex-direction: column;
    }
}

















/* Contact Page Styles */
.contact-container {
    padding: 2rem 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Contact Information Sidebar */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-primary);
}

.info-header i {
    color: var(--accent-primary);
    font-size: 1.5rem;
}

.info-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Location Card */
.location-details .address h4,
.location-details .store-hours h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.location-details .address {
    margin-bottom: 2rem;
}

.location-details .address p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.hour-item.special {
    color: var(--text-muted);
    font-style: italic;
}

.hour-item .day {
    font-weight: 500;
    color: var(--text-primary);
}

.hour-item .time {
    color: var(--accent-primary);
    font-weight: 600;
}

.map-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-accent);
    border-radius: 8px;
    border-left: 4px solid var(--accent-primary);
}

.map-note p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.map-note i {
    color: var(--accent-primary);
    margin-right: 0.5rem;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-accent);
    border-radius: 10px;
    flex-shrink: 0;
}

.method-icon i {
    color: var(--accent-primary);
    font-size: 1.25rem;
}

.method-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.method-details p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.method-details a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.method-details a:hover {
    color: var(--accent-secondary);
}

.method-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Social Media Grid */
.social-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.social-link-card:hover {
    background: var(--bg-accent);
    transform: translateX(5px);
}

.social-link-card i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
}

.social-link-card.facebook i { background: #4267B2; }
.social-link-card.instagram i { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-link-card.twitter i { background: #1DA1F2; }
.social-link-card.linkedin i { background: #0077B5; }
.social-link-card.youtube i { background: #FF0000; }

.social-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.social-details span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* FAQ Links */
.faq-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.faq-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-link:hover {
    background: var(--bg-accent);
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.faq-link i {
    color: var(--accent-primary);
    font-size: 1.125rem;
}

/* Help Section */
.help-section {
    margin-top: 4rem;
    text-align: center;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.help-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
}

.help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--bg-accent);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.help-icon i {
    font-size: 2rem;
    color: var(--accent-primary);
}

.help-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.help-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive Design - Contact Page */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section {
        order: 1;
    }

    .contact-info-section {
        order: 2;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        display: grid;
        gap: 1.5rem;
    }

    .help-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-section {
        grid-template-columns: 1fr;
    }

    .social-link-card {
        padding: 0.75rem;
    }

    .social-link-card i {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }

    .help-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .help-icon {
        width: 60px;
        height: 60px;
    }

    .help-icon i {
        font-size: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced Animation Styles */
.animate-counter {
    position: relative;
    overflow: hidden;
}

.animate-counter .stat-number {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.animate-counter.counting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    animation: shimmer 1s ease-in-out;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Enhanced mission stats with better animations */
.mission-stats-block .stat {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    border: 1px solid var(--border);
}

.mission-stats-block .stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.15);
    border-color: var(--accent-primary);
}

.mission-stats-block .stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.5s;
}

.mission-stats-block .stat:hover::before {
    left: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-shadow: 0 2px 4px rgba(34, 197, 94, 0.2);
}

.stat-plus, .stat-currency {
    color: var(--accent-secondary);
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced fade-in animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays */
.mission-stats-block .stat:nth-child(1) { animation-delay: 0.1s; }
.mission-stats-block .stat:nth-child(2) { animation-delay: 0.2s; }
.mission-stats-block .stat:nth-child(3) { animation-delay: 0.3s; }
.mission-stats-block .stat:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Loading pulse animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.loading-pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Hover effects for cards */
.item-card, .offer-card, .contributor-card {
    transition: all 0.3s ease;
}

.item-card:hover, .offer-card:hover, .contributor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Enhanced hero section */
.hero-title .highlight {
    position: relative;
    z-index: 2;
}

.hero-title .highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineExpand 2s ease forwards 1s;
}

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

/* Donate Page Styles with Enhanced Animations */
.donate-container {
    padding: 2rem 0;
    animation: fadeInUp 0.8s ease-out;
}

/* Enhanced Header with Animations */
.donate-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 50%, var(--accent-primary) 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: headerFloat 6s ease-in-out infinite;
}

.donate-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, rgba(59, 130, 246, 0.1) 50%, transparent 70%);
    animation: rotate 20s linear infinite;
    opacity: 0.8;
}

.donate-header::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.donate-header > * {
    position: relative;
    z-index: 1;
}

.page-title {
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.page-subtitle {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.header-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-highlight {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: statFloat 4s ease-in-out infinite;
}

.stat-highlight:nth-child(1) { animation-delay: 0s; }
.stat-highlight:nth-child(2) { animation-delay: 1s; }
.stat-highlight:nth-child(3) { animation-delay: 2s; }

.stat-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.stat-highlight:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.3);
    border-color: var(--accent-primary);
}

.stat-highlight:hover::before {
    left: 100%;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: counterUp 2s ease-out;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Enhanced Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes headerFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(34, 197, 94, 0.6), 0 0 30px rgba(34, 197, 94, 0.4);
    }
}

@keyframes statFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    33% {
        transform: translateY(-5px);
    }
    66% {
        transform: translateY(5px);
    }
}

@keyframes counterUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.9) translateY(0px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Materials Section */
.materials-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
    animation: fadeInUp 0.8s ease-out;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-light));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.material-category {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: bounceIn 0.8s ease-out;
    animation-fill-mode: both;
}

.material-category:nth-child(1) { animation-delay: 0.1s; }
.material-category:nth-child(2) { animation-delay: 0.2s; }
.material-category:nth-child(3) { animation-delay: 0.3s; }
.material-category:nth-child(4) { animation-delay: 0.4s; }
.material-category:nth-child(5) { animation-delay: 0.5s; }
.material-category:nth-child(6) { animation-delay: 0.6s; }

.material-category:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.material-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.material-item.accepted {
    background: rgba(34, 197, 94, 0.05);
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.material-item.not-accepted {
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.material-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Enhanced Donation Guidelines */
.donation-guidelines {
background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
border-radius: 25px;
padding: 3rem;
margin-top: 3rem;
position: relative;
overflow: hidden;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
animation: fadeInUp 0.8s ease-out 0.5s both;
}

.donation-guidelines::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guideline {
background: var(--bg-accent);
backdrop-filter: blur(10px);
border-radius: 15px;
padding: 2rem;
text-align: center;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: 2px solid var(--border);
animation: slideInLeft 0.8s ease-out;
animation-fill-mode: both;
}

.guideline:nth-child(1) { animation-delay: 0.1s; }
.guideline:nth-child(2) { animation-delay: 0.2s; animation-name: slideInRight; }
.guideline:nth-child(3) { animation-delay: 0.3s; }
.guideline:nth-child(4) { animation-delay: 0.4s; animation-name: slideInRight; }

.guideline:hover {
transform: translateY(-10px) scale(1.05);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
border-color: var(--accent-primary);
background: var(--accent-secondary);
}

.guideline i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    display: block;
    animation: pulse 3s ease-in-out infinite;
}
/* Enhanced Drop-off Locations Section */
.locations-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.locations-container {
    position: relative;
    z-index: 1;
}

.location-category {
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out;
}

.location-category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.location-category-title::after {
    content: '';
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    border-radius: 2px;
    margin-left: 2rem;
}

.location-category-title i {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.location-card {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 10px 30px -10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    animation: slideInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.location-card:nth-child(1) { animation-delay: 0.1s; }
.location-card:nth-child(2) { animation-delay: 0.2s; }
.location-card:nth-child(3) { animation-delay: 0.3s; }
.location-card:nth-child(4) { animation-delay: 0.4s; }

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.location-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px -15px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

.location-card:hover::before {
    transform: scaleX(1);
}

.location-card.primary {
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-color: rgba(34, 197, 94, 0.2);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.location-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.location-badge {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.location-details {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(34, 197, 94, 0.05);
    transform: translateX(5px);
}

.detail-item i {
    color: var(--accent-primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.detail-item span {
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 500;
}

.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Special Collections */
.special-collections {
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
    border-radius: 25px;
    padding: 3rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.special-collections::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.special-collections > * {
    position: relative;
    z-index: 1;
}

.special-collections h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.special-collections h3 i {
    color: var(--accent-primary);
    font-size: 1.8rem;
}

.special-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: bounceIn 0.8s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    display: block;
    animation: pulse 2.5s ease-in-out infinite;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-card .btn {
    position: relative;
    z-index: 2;
}

/* Enhanced Donation Process Section */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.process-timeline {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 4rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    z-index: 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: 
        0 8px 25px -8px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    margin-left: 2rem;
    animation: slideInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(6) { animation-delay: 0.6s; }
.process-step:nth-child(7) { animation-delay: 0.7s; }
.process-step:nth-child(8) { animation-delay: 0.8s; }

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 20px 40px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(34, 197, 94, 0.1);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:nth-child(even) {
    grid-template-columns: 1fr auto;
}

.process-step:nth-child(even) .step-content {
    order: -1;
    text-align: right;
}

.step-number {
    position: absolute;
    left: -3rem;
    top: 2rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 
        0 8px 20px rgba(34, 197, 94, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 
        0 15px 30px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    animation: iconFloat 4s ease-in-out infinite;
    flex-shrink: 0;
}

.process-step:nth-child(1) .step-icon { animation-delay: 0s; }
.process-step:nth-child(2) .step-icon { animation-delay: 0.5s; }
.process-step:nth-child(3) .step-icon { animation-delay: 1s; }
.process-step:nth-child(4) .step-icon { animation-delay: 1.5s; }
.process-step:nth-child(5) .step-icon { animation-delay: 2s; }
.process-step:nth-child(6) .step-icon { animation-delay: 2.5s; }
.process-step:nth-child(7) .step-icon { animation-delay: 3s; }
.process-step:nth-child(8) .step-icon { animation-delay: 3.5s; }

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 20px 40px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.step-content {
    flex: 1;
    padding-left: 1rem;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.detail {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
}

.detail:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.process-statistics {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.efficiency-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.efficiency-stat {
    background: var(--bg-primary);
border-radius: 15px;
padding: 2rem 1.5rem;
text-align: center;
transition: all 0.3s ease;
border: 2px solid var(--border);
position: relative;
overflow: hidden;
box-shadow: var(--shadow);
}

/* Additional animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .process-timeline {
        padding: 0 1rem;
    }
    
    .process-timeline::before {
        left: 2.5rem;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
        margin-left: 1rem;
    }
    
    .step-number {
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 1rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .step-content {
        padding-left: 0;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

.impact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-accent) 100%);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.impact-dashboard {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Current Stats Section */
.current-stats {
    background: var(--bg-primary);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out;
}

.current-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.current-stats > * {
    position: relative;
    z-index: 1;
}

.current-stats h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-align: center;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.impact-stat-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    animation: bounceIn 0.8s ease-out;
    animation-fill-mode: both;
}

.impact-stat-card:nth-child(1) { animation-delay: 0.1s; }
.impact-stat-card:nth-child(2) { animation-delay: 0.2s; }
.impact-stat-card:nth-child(3) { animation-delay: 0.3s; }
.impact-stat-card:nth-child(4) { animation-delay: 0.4s; }

.impact-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.impact-stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.2);
    border-color: var(--accent-primary);
}

.impact-stat-card:hover::before {
    left: 100%;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.stat-content .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-content .stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-progress {
    background: var(--bg-accent);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 4px;
    transition: width 2s ease-out;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Material Breakdown Section */
.material-breakdown {
    background: var(--bg-primary);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.material-breakdown h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-align: center;
}

.breakdown-chart {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.material-stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.material-stat:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-primary);
}

.material-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.material-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.material-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.material-bar {
    height: 12px;
    background: var(--bg-accent);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 2s ease-out;
    position: relative;
    overflow: hidden;
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.material-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Historical Data Section */
.historical-data {
    background: var(--bg-primary);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.historical-data h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-align: center;
}

.yearly-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.year-stat {
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.year-stat.current {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-color: var(--accent-primary);
}

.year-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-primary);
}

.year-stat h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.year-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.year-details span {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem;
    background: var(--bg-accent);
    border-radius: 8px;
}

/* Top Contributors Section */
.top-contributors {
    background: var(--bg-primary);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.top-contributors h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-align: center;
}

.contributors-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contributor-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contributor-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-primary);
}

.rank {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.contributor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contributor-info .name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contributor-info .contribution {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contributor-badge {
    color: var(--accent-primary);
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Impact Calculator Section */
.impact-calculator {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 100%);
    border-radius: 25px;
    padding: 3rem;
    margin-top: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.impact-calculator::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.impact-calculator > * {
    position: relative;
    z-index: 1;
}

.impact-calculator h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.impact-calculator p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 1.1rem;
}

.calculator-form {
    max-width: 600px;
    margin: 0 auto;
}

.calc-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-group select,
.calc-group input {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.calc-group select:focus,
.calc-group input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

/* Enhanced Animation Keyframes */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Enhanced Responsive Design for Impact Section */
@media (max-width: 768px) {
    .impact-dashboard {
        padding: 0 1rem;
        gap: 2.5rem;
    }
    
    .current-stats,
    .material-breakdown,
    .historical-data,
    .top-contributors,
    .impact-calculator {
        padding: 2rem 1.5rem;
    }
    
    .current-stats h3,
    .material-breakdown h3,
    .historical-data h3,
    .top-contributors h3,
    .impact-calculator h3 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .yearly-comparison {
        grid-template-columns: 1fr;
    }
    
    .material-stat {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contributor-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .calc-inputs {
        grid-template-columns: 1fr;
    }
}

.thank-you-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-green-light) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.thank-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(34, 197, 94, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.thank-you-content {
    position: relative;
    z-index: 2;
}

/* Thank You Header */
.thank-you-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.thank-you-header .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    animation: heartbeat 2s ease-in-out infinite;
}

.thank-you-header .section-title::after {
    content: '💚';
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.thank-you-header .section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

/* Gratitude Message */
.gratitude-message {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 
        0 20px 40px -12px rgba(34, 197, 94, 0.2),
        0 8px 16px -8px rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.gratitude-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-light) 50%, var(--accent-primary) 100%);
}

.message-content {
    text-align: center;
}

.thank-you-icon {
    font-size: 4rem;
    color: #ef4444;
    margin-bottom: 2rem;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(239, 68, 68, 0.3));
}

.message-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.message-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-light) 100%);
    border-radius: 2px;
}

.message-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.achievement::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.8s ease;
}

.achievement:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 35px -8px rgba(34, 197, 94, 0.3);
}

.achievement:hover::before {
    left: 100%;
}

.achievement i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.achievement:hover i {
    transform: scale(1.1) rotate(10deg);
    background: var(--accent-primary);
    color: white;
}

.achievement h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.achievement p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Donor Recognition Section */
.donor-recognition {
    margin-bottom: 4rem;
}

.donor-recognition h3 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.donor-recognition h3::before {
    content: '👑';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-60%) scale(1.1); }
}

.donor-recognition > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Recognition Tiers */
.recognition-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tier {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    overflow: hidden;
}

.tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier:hover::before {
    opacity: 1;
}

/* Platinum Tier */
.tier.platinum {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-color: #9ca3af;
    box-shadow: 0 15px 35px -8px rgba(156, 163, 175, 0.4);
}

.tier.platinum:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 25px 50px -12px rgba(156, 163, 175, 0.6),
        0 0 0 1px rgba(156, 163, 175, 0.2);
}

.tier.platinum .tier-header i {
    color: #9ca3af;
    background: rgba(156, 163, 175, 0.2);
}

/* Gold Tier */
.tier.gold {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
    box-shadow: 0 15px 35px -8px rgba(245, 158, 11, 0.4);
}

.tier.gold:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 25px 50px -12px rgba(245, 158, 11, 0.6),
        0 0 0 1px rgba(245, 158, 11, 0.2);
}

.tier.gold .tier-header i {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.2);
}

/* Silver Tier */
.tier.silver {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 35px -8px rgba(34, 197, 94, 0.4);
}

.tier.silver:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 25px 50px -12px rgba(34, 197, 94, 0.6),
        0 0 0 1px rgba(34, 197, 94, 0.2);
}

.tier.silver .tier-header i {
    color: var(--accent-primary);
    background: rgba(34, 197, 94, 0.2);
}

/* Tier Header */
.tier-header {
    margin-bottom: 2rem;
}

.tier-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tier:hover .tier-header i {
    transform: scale(1.1) rotate(15deg);
}

.tier-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tier-header p {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Tier Benefits */
.tier-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tier-benefits span {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-benefits span::before {
    content: '✓';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-primary);
    font-weight: bold;
    transition: left 0.3s ease;
}

.tier-benefits span:hover::before {
    left: 8px;
}

.tier-benefits span:hover {
    padding-left: 2rem;
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    margin-top: 4rem;
}

.testimonials h3 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 3rem;
    position: relative;
}

.testimonials h3::before {
    content: '💬';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: swing 2s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    25% { transform: translateY(-50%) rotate(10deg); }
    75% { transform: translateY(-50%) rotate(-10deg); }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px -8px rgba(34, 197, 94, 0.15);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: var(--accent-primary);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px -12px rgba(34, 197, 94, 0.25);
}

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--accent-primary);
    font-weight: 500;
}

/* Responsive Design for Thank You Section */
@media (max-width: 1024px) {
    .recognition-tiers {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 4rem 0;
    }
    
    .gratitude-message {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .thank-you-header .section-title {
        font-size: 2.5rem;
    }
    
    .thank-you-header .section-title::after {
        font-size: 1.5rem;
        right: -15px;
        top: -5px;
    }
    
    .thank-you-header .section-subtitle {
        font-size: 1.1rem;
    }
    
    .message-content h3 {
        font-size: 2rem;
    }
    
    .thank-you-icon {
        font-size: 3rem;
    }
    
    .achievement {
        padding: 1.5rem;
    }
    
    .achievement i {
        font-size: 2.5rem;
    }
    
    .tier {
        padding: 2rem;
    }
    
    .donor-recognition h3::before,
    .testimonials h3::before {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .recognition-tiers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .thank-you-header .section-title {
        font-size: 2rem;
    }
    
    .message-content h3 {
        font-size: 1.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .achievement {
        padding: 1.25rem;
    }
    
    .tier-benefits span {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
}

.shop-notice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: popupFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.shop-notice-overlay.show {
    opacity: 1;
    visibility: visible;
}

@keyframes popupFadeIn {
    from { 
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to { 
        opacity: 1;
        backdrop-filter: blur(10px);
    }
}

.shop-notice-popup {
    background: var(--bg-primary);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 
        0 32px 64px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    animation: popupSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

@keyframes popupSlideIn {
    from { 
        opacity: 0;
        transform: translateY(-40px) scale(0.92);
        filter: blur(4px);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

.shop-notice-header {
    position: relative;
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-bottom: 1px solid var(--border);
}

.shop-notice-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 12px 32px -8px rgba(34, 197, 94, 0.4);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 12px 32px -8px rgba(34, 197, 94, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 16px 40px -8px rgba(34, 197, 94, 0.6);
    }
}

.shop-notice-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.shop-notice-close:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 25px -8px rgba(239, 68, 68, 0.3);
}

.shop-notice-close:active {
    transform: scale(0.95) rotate(90deg);
}

.shop-notice-content {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.shop-notice-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.shop-notice-message {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.shop-notice-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.notice-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent-primary);
    transition: all 0.3s ease;
}

.notice-info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.15);
}

.notice-info-item i {
    font-size: 1.25rem;
    color: var(--accent-primary);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.notice-info-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.shop-notice-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.shop-notice-understood {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 
        0 8px 25px -8px rgba(34, 197, 94, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.shop-notice-understood::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.shop-notice-understood:hover::before {
    left: 100%;
}

.shop-notice-understood:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 50%, #166534 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 16px 40px -8px rgba(34, 197, 94, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.shop-notice-understood:active {
    transform: translateY(-1px);
}

/* Responsive Design for Shop Notice */
@media (max-width: 640px) {
    .shop-notice-popup {
        margin: 1rem;
        max-width: calc(100vw - 2rem);
    }
    
    .shop-notice-header,
    .shop-notice-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .shop-notice-title {
        font-size: 1.5rem;
    }
    
    .notice-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .notice-info-item {
        padding: 0.75rem;
    }
    
    .shop-notice-understood {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Accessibility Improvements for Shop Notice */
@media (prefers-reduced-motion: reduce) {
    .shop-notice-overlay,
    .shop-notice-popup,
    .notice-icon,
    .shop-notice-close,
    .notice-info-item,
    .shop-notice-understood {
        animation: none;
        transition: none;
    }
}

/* Focus states for accessibility */
.shop-notice-close:focus,
.shop-notice-understood:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .shop-notice-popup {
        border: 2px solid var(--text-primary);
    }
    
    .notice-info-item {
        border-width: 2px;
    }
}

/* School Branding Section */
.footer-section.school-branding {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.school-logo-placeholder {
    margin-bottom: 1rem;
}

.placeholder-box {
    width: 80px;
    height: 80px;
    border: 2px dashed var(--accent-primary);
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.placeholder-box:hover {
    border-color: var(--accent-secondary);
    background: var(--bg-secondary);
}

.placeholder-box span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.school-motto {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    font-style: italic;
    margin: 0;
}

