/* ===================================
   PREMIUM ANIMATIONS & INTERACTIONS
   ================================== */

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(139, 115, 85, 0.1);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    width: 0%;
    transition: width 0.1s ease;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for cards */
.testimonial-card.animate-on-scroll {
    transition-delay: 0.1s;
}

.testimonial-card:nth-child(2).animate-on-scroll {
    transition-delay: 0.2s;
}

.testimonial-card:nth-child(3).animate-on-scroll {
    transition-delay: 0.3s;
}

/* Enhanced Mobile Navigation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

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

.nav-menu.active {
    left: 0;
    opacity: 1;
    visibility: visible;
}

/* ✅ CORRECTED VERSION */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .hamburger {
        display: flex;
    }
}

/* Desktop menu should always be visible */
@media (min-width: 769px) {
    .nav-menu {
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
    }
    
    .hamburger {
        display: none;
    }
}

/* Prevent body scroll when nav is open */
body.nav-open {
    overflow: hidden;
}

/* ===================================
   CONTACT PAGE STYLES
   ================================== */

.contact-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-moss) 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.contact-hero h1 {
    color: rgb(0, 0, 0);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(0, 0, 0, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    padding: 5rem 0;
    background: var(--color-neutral);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.support-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
}

.support-card h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-card p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.payment-info {
    background: var(--color-neutral);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--color-primary);
}

.payment-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-detail:last-child {
    margin-bottom: 0;
}

.payment-detail strong {
    color: var(--color-text);
    font-size: 0.95rem;
}

.copyable {
    font-family: 'Courier New', monospace;
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    color: var(--color-text);
}

.copy-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.copy-btn:hover {
    background: var(--color-moss);
    transform: translateY(-1px);
}

.copy-btn.copied {
    background: #28a745;
    transform: scale(0.95);
}

.payment-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
}

.support-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-moss) 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 150px;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
    color: white;
    text-decoration: none;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

/* Thank You Section */
.thank-you-section {
    padding: 4rem 0;
    background: var(--color-neutral);
    text-align: center;
}

.thank-you-section h2 {
    color: var(--color-text);
    margin-bottom: 2rem;
}

.thank-you-section p {
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.contact-email {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

/* ===================================
   BOOK PAGE STYLES (if needed)
   ================================== */

.book-hero {
    background: linear-gradient(135deg, var(--color-neutral) 0%, var(--color-cream) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.book-hero h1 {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.book-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   ENHANCED BUTTON STYLES
   ================================== */

/* All CTA buttons get premium treatment */
.cta-button,
.cta-cta-button {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

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

.cta-button:hover::before,
.cta-cta-button:hover::before {
    left: 100%;
}

/* Premium loading states */
.loading {
    position: relative;
    color: transparent;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================
   MOBILE RESPONSIVENESS
   ================================== */

@media (max-width: 768px) {
    .contact-hero,
    .support-hero,
    .about-hero {
        padding: 6rem 0 3rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .support-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-card.featured {
        transform: none;
    }
    
    .support-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .payment-detail {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .copy-btn {
        align-self: flex-end;
        margin-top: 0.5rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .support-card,
    .contact-card,
    .impact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .payment-info {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
    }
}

/* ===================================
   ACCESSIBILITY IMPROVEMENTS
   ================================== */

/* Focus styles for keyboard navigation */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .contact-card,
    .support-card,
    .impact-card {
        border: 2px solid var(--color-text);
    }
    
    .btn,
    .cta-button,
    .support-btn {
        border: 2px solid currentColor;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .scroll-progress-bar,
    .contact-card,
    .support-card,
    .cta-button,
    button,
    a {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
    
    .animate-on-scroll {
        opacity: 1;
    }
}

/* ===================================
   BOOK PAGE ADDITIONAL STYLES
   ================================== */

.book-details {
    padding: 5rem 0;
    background: var(--color-neutral);
}

.book-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.book-image-large {
    position: sticky;
    top: 2rem;
}

.book-image-large img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.book-image-large img:hover {
    transform: scale(1.02) rotate(1deg);
}

.book-info-detailed h2 {
    color: var(--color-text);
    margin-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.book-info-detailed p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.book-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.book-benefits li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 115, 85, 0.2);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--color-text);
}

.book-benefits li:last-child {
    border-bottom: none;
}

.book-benefits strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Learning Section */
.book-learning {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-neutral) 100%);
}

.book-learning h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.learning-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.learning-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.learning-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.learning-card h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.learning-card p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Book Formats Section */
.book-formats {
    padding: 5rem 0;
    background: var(--color-neutral);
}

.book-formats h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.format-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 115, 85, 0.1);
    position: relative;
}

.format-card.featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
}

.format-card.featured::before {
    content: '⭐ Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.format-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.format-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
}

.format-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.format-card h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.format-card p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.savings {
    font-size: 1rem;
    color: #28a745;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

.format-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-moss) 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.format-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
    color: white;
    text-decoration: none;
}

/* Book Preview Detailed */
.book-preview-detailed {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-neutral) 100%);
}

.book-preview-detailed h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.chapter-list h3 {
    color: var(--color-text);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.chapter-list ul {
    list-style: none;
    padding: 0;
}

.chapter-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 115, 85, 0.2);
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
}

.chapter-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

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

.preview-text {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.preview-text h4 {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.preview-text blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text);
    margin: 0 0 1rem 0;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
}

.preview-text blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--color-primary);
    position: absolute;
    top: -0.5rem;
    left: 0;
    font-family: Georgia, serif;
}

.preview-text cite {
    color: var(--color-text-light);
    font-style: normal;
    font-weight: 600;
}

/* Book CTA */
.book-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-moss) 100%);
    color: white;
    text-align: center;
}

.book-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.book-cta p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
}

.cta-button.large {
    font-size: 1.4rem;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.cta-button.large:hover {
    background: var(--color-neutral);
    transform: translateY(-3px) scale(1.05);
}

.guarantee {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

/* Mobile Responsiveness for Book Page */
@media (max-width: 768px) {
    .book-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .book-image-large {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .formats-grid {
        grid-template-columns: 1fr;
    }
    
    .format-card.featured {
        transform: none;
    }
    
    .format-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .learning-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .book-details,
    .book-learning,
    .book-formats,
    .book-preview-detailed,
    .book-cta {
        padding: 3rem 0;
    }
    
    .format-card,
    .learning-card {
        padding: 2rem 1.5rem;
    }
    
    .preview-text {
        padding: 2rem 1.5rem;
    }
    
    .book-content {
        padding: 0 1rem;
    }
}

@media print {
    .navbar,
    .scroll-progress,
    .hamburger,
    .share-buttons,
    .copy-btn {
        display: none !important;
    }
    
    .contact-card,
    .support-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

.contact-link:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-neutral) 100%);
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    background: #fff5f5;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.submit-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-moss) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ===================================
   SUPPORT PAGE STYLES
   ================================== */

.support-hero {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.support-hero h1 {
    color: rgb(0, 0, 0);
    margin-bottom: 1rem;
}

.support-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(0, 0, 0, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.mission-section {
    padding: 5rem 0;
    background: var(--color-neutral);
}

.mission-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.mission-content > p {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.impact-card h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.impact-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Support Options */
.support-options {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-neutral) 100%);
}

.support-options h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.support-card.featured {
    border: 2px solid var(--color-primary);
    position: relative;
    transform: scale(1.02);
}

.support-card.featured::before {
    content: '⭐ Recommended';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}