/* ============================================
   AIPhotoMaker.cloud - Complete Main Stylesheet
   Professional Photo Editing Platform
   Version: 1.0
   Last Updated: November 26, 2025
   ============================================ */

/* ============================================
   TABLE OF CONTENTS:
   1. CSS Variables & Reset
   2. Typography
   3. Layout & Containers
   4. Navigation
   5. Buttons
   6. Hero Section
   7. Features & Cards
   8. Forms
   9. Footer
   10. Legal Pages
   11. Utility Classes
   12. Animations
   13. Responsive Design
   ============================================ */

/* ============================================
   1. CSS VARIABLES & RESET
   ============================================ */

:root {
    /* Colors */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-color: #667eea;
    --primary-dark: #5568d3;
    --secondary-color: #764ba2;
    --success-color: #48bb78;
    --danger-color: #f56565;
    --warning-color: #ed8936;
    --info-color: #4299e1;
    
    /* Neutral Colors */
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --text-lighter: #a0aec0;
    --border-color: #e2e8f0;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* ============================================
   2. TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: var(--font-size-4xl);
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

h5, h6 {
    font-size: var(--font-size-lg);
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   3. LAYOUT & CONTAINERS
   ============================================ */

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--spacing-3xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
}

/* ============================================
   4. NAVIGATION
   ============================================ */

.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform var(--transition-base);
}

.navbar.scroll-down {
    transform: translateY(-100%);
}

.navbar.scroll-up {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-dark);
}

.logo img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-medium);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-base);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   5. BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-feature {
    background: transparent;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
    border: 1px solid var(--primary-color);
}

.btn-feature:hover {
    background: var(--primary-color);
    color: white;
}

.btn-cta {
    padding: 1.25rem 2.5rem;
    font-size: var(--font-size-lg);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* ============================================
   HERO SECTION - FULL WIDTH LAYOUT
   ============================================ */

/* Remove any white borders/lines */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1px;
    overflow: hidden;
    text-align: center;
    color: white;
    margin: 0; /* Remove margin */
    border: none; /* Remove border */
}

.hero .container {
    max-width: 1400px;
    margin: 0px;
    padding: 0px;
    border: none; /* Remove border */
}

/* Hero Content - Center Aligned */
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 ;
}

/* Hero Content - Single Line Heading */
.hero-content h1 {
    font-size: 3.2rem; /* Reduced slightly to fit one line */
    font-weight: 800;
    color: white;
    /*margin-bottom: 1rem;*/
    margin-top: -120px;
    line-height: 1.2;
    white-space: nowrap; /* Keep in one line */
    overflow: visible; /* Allow overflow */
}

/* Yellow "Made Easy" Text */
.hero-content h1 .gradient-text {
    color: #ff5100;
    white-space: nowrap;
}

/* Subtitle - Directly Below H1, Centered */
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    text-align: center !important; /* Force center */
    max-width: 700px; /* Limit width */
    margin: -100px auto 2rem auto !important; /* Center with auto margins */
    display: block;
}


/* Feature Tags - Inline badges */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
}

/* Hero Buttons - Center aligned */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Stats Section - ALL 4 Cards in ONE LINE */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    border: none !important; /* Force remove border */
    outline: none !important; /* Force remove outline */
}

.stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: none !important; /* Remove border */
}

.stat:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat strong {
    display: block;
    font-size: 1.5rem; /* Slightly smaller for better fit */
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}


/* Hero Images - Bottom Horizontal Row */
.hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-images img {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-images img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* ============================================
   MOBILE RESPONSIVE - Tablet (768px)
   ============================================ */
@media (max-width: 968px) {
    .hero {
        padding: 50px 0;
    }
    
    /* H1 - Smaller on tablet */
    .hero-content h1 {
        font-size: 2.5rem;
       margin-left: 20px;
       
    }
    
    /* Subtitle - Smaller */
    .hero-subtitle {
        font-size: 1.05rem;
        max-width: 600px;
    }
    
    /* Stats - 2 columns on tablet */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

/* ============================================
   MOBILE RESPONSIVE - Mobile (640px)
   ============================================ */
@media (max-width: 640px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero .container {
        padding: 0 15px;
    }
    
    /* H1 - Responsive for mobile (WRAP TEXT) */
    .hero-content h1 {
        font-size: 2rem !important; /* Smaller */
        white-space: normal !important; /* Allow wrapping */
        line-height: 1.3 !important;
        word-wrap: break-word;
        margin-top: auto;
        padding: 0 10px;
    }
    
    /* Subtitle - Smaller & narrower */
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        padding: 0 20px;
        margin-bottom: 1.5rem !important;
    }

    .hero-stats {
        grid-template-columns: 1fr !important; /* Single column */
        max-width: 320px !important; /* NARROW WIDTH */
        margin-left: auto !important; /* Center */
        margin-right: auto !important;
    }


    /* Feature Tags - Stack vertically */
    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 15px;
    }
    
    .feature-tag {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    /* Buttons - Stack vertically */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    /* Stats - 1 column ONLY + REDUCE WIDTH */
    .hero-stats {
        grid-template-columns: 1fr !important; /* Single column */
        gap: 1rem;
        max-width: 320px !important; /* REDUCE WIDTH - as marked */
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 15px;
    }
    
    .stat {
        padding: 20px 15px !important;
        max-width: 100%;
    }
    
    .stat strong {
        font-size: 1.8rem !important;
    }
    
    .stat span {
        font-size: 0.85rem !important;
    }
}

/* ============================================
   EXTRA SMALL MOBILE (320px)
   ============================================ */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem !important;
        padding: 0 5px;
        margin-top: auto;
        
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        padding: 0 15px;
    }
    
    /* Stats even narrower on very small screens */
    .hero-stats {
        max-width: 280px !important;
        gap: 0.8rem;
    }
    
    .stat {
        padding: 18px 12px !important;
    }
    
    .stat strong {
        font-size: 1.6rem !important;
    }
}


/* ============================================
   7. FEATURES & CARDS
   ============================================ */

.features {
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.feature-list li i {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* How It Works */
.how-it-works {
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials {
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-2xl);
    border-left: 4px solid var(--primary-color);
}

.stars {
    color: #fbbf24;
    font-size: var(--font-size-lg);
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author span {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

/* CTA Section */
.cta {
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
}

/* ============================================
   8. FORMS
   ============================================ */

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: var(--transition-base);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-note {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-top: 1rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-2xl);
}

.contact-info {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-2xl);
}

.contact-methods {
    margin: var(--spacing-xl) 0;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    color: white;
    font-size: 1.5rem;
}

.method-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: 0.5rem;
}

.response-time {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--text-lighter);
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-link i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ============================================
   9. FOOTER
   ============================================ */

.footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #cbd5e0;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #cbd5e0;
    transition: var(--transition-base);
}

.footer-col ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
}

.footer-bottom a {
    color: #cbd5e0;
}

.footer-bottom a:hover {
    color: white;
}

/* ============================================
   10. LEGAL PAGES
   ============================================ */

.page-header {
    background: var(--primary-gradient);
    color: white;
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
}

.legal-page {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-2xl);
    padding: var(--spacing-2xl) 0;
}

.legal-content {
    background: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
}

.legal-section {
    margin-bottom: var(--spacing-2xl);
}

.legal-section h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.legal-section h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.highlight-box.warning {
    background: rgba(237, 137, 54, 0.1);
    border-left-color: var(--warning-color);
}

.highlight-box i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.contact-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin: 1rem 0;
}

.consent-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: var(--font-size-lg);
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid var(--primary-color);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 0.75rem;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    transition: var(--transition-base);
}

.sidebar-links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

/* About Page Specific */
.about-page {
    display: block;
    max-width: 1200px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    margin-bottom: var(--spacing-2xl);
}

.content-image img {
    width: 100%;
    height: auto;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: var(--spacing-xl);
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.highlight-item strong {
    display: block;
    font-size: var(--font-size-2xl);
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.highlight-item span {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.value-card {
    text-align: center;
    padding: var(--spacing-xl);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: var(--spacing-xl);
}

.why-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.why-item i {
    color: var(--success-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tech-stack {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tech-item {
    text-align: center;
}

.tech-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tech-item span {
    display: block;
    color: var(--text-medium);
    font-size: var(--font-size-sm);
}

/* Contact Page FAQ */
.faq-section {
    margin-top: var(--spacing-2xl);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.faq-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item i {
    color: var(--primary-color);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.support-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: var(--radius-xl);
}

.support-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   11. UTILITY CLASSES
   ============================================ */

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: var(--spacing-md); }
.mt-2 { margin-top: var(--spacing-lg); }
.mt-3 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-md); }
.mb-2 { margin-bottom: var(--spacing-lg); }
.mb-3 { margin-bottom: var(--spacing-xl); }

.note {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    font-style: italic;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10000;
    transform: translateX(400px);
    transition: var(--transition-base);
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid var(--success-color);
}

.toast-error {
    border-left: 4px solid var(--danger-color);
}

.toast i {
    font-size: 1.5rem;
}

.toast-success i {
    color: var(--success-color);
}

.toast-error i {
    color: var(--danger-color);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-spinner {
    text-align: center;
    color: white;
}

.loading-spinner i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
    z-index: 9999;
    animation: slideUp var(--transition-base);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* ============================================
   12. ANIMATIONS
   ============================================ */

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* ============================================
   MOBILE NAVIGATION - FIXED VERSION
   ============================================ */

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Styles */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu li a:hover,
    .nav-menu li a.active {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
        color: var(--primary-color);
    }
    
    .nav-menu li a.active::after {
        display: none;
    }
    
    /* Body scroll lock when menu open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Tablet View */
@media (max-width: 768px) {
    .nav-menu {
        width: 260px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        right: -100%;
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .nav-menu.active {
        right: 0;
    }
}


/* Print Styles */
@media print {
    .navbar,
    .footer,
    .scroll-to-top,
    .cookie-banner {
        display: none !important;
    }
}

/* Animation CSS - Add to main.css */

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.zoom-in.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: 10000;
    transition: width 0.2s ease;
}

/* Cursor Trail */
.cursor-trail {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #667eea, transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

/* Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Text Reveal Animation */
@keyframes revealLetter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-reveal] span {
    transform: translateY(20px);
}

/* Card Tilt */
.feature-card,
.testimonial-card {
    transition: transform 0.3s ease;
}
/* ============================================
   AFFILIATE BANNERS
   ============================================ */

.affiliate-banners {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.affiliate-banner {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%) !important;
    border-color: #7b1fa2 !important;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.affiliate-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.hostinger-banner {
    border-color: #673ab7;
}

.hostinger-banner:hover {
    border-color: #673ab7;
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.05), rgba(103, 58, 183, 0.02));
}

.amazon-banner {
    border-color: #ff9900;
}

.amazon-banner:hover {
    border-color: #ff9900;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.05), rgba(255, 153, 0, 0.02));
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hostinger-banner .banner-icon {
    background: linear-gradient(135deg, #673ab7, #9c27b0);
    color: white;
}

.amazon-banner .banner-icon {
    background: linear-gradient(135deg, #ff9900, #ff6600);
    color: white;
}

.banner-text {
    flex: 1;
    min-width: 200px;
}

.banner-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 5px 0;
}

.banner-text p {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
}

.banner-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.banner-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white;
}

.hostinger-banner .banner-btn {
    background: linear-gradient(135deg, #673ab7, #9c27b0);
}

.amazon-banner .banner-btn {
    background: linear-gradient(135deg, #ff9900, #ff6600);
}

/* Responsive Design */
@media (max-width: 968px) {
    .banners-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        justify-content: space-between;
    }
}

@media (max-width: 640px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-btn {
        width: 100%;
        justify-content: center;
    }
    
    .banner-text h4 {
        font-size: 0.95rem;
    }
}
/* ============================================
   DONATION SECTION - FULL VERSION
   ============================================ */

.donation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7f8fc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decorative Elements */
.donation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1), transparent);
    border-radius: 50%;
    z-index: 0;
}

.donation-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.1), transparent);
    border-radius: 50%;
    z-index: 0;
}

/* Donation Card */
.donation-card {
    background: white;
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s ease;
}

.donation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

/* Animated Heart Icon */
.donation-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    animation: heartbeat 1.5s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    position: relative;
}

.donation-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(255, 107, 107, 0.3);
    animation: pulse 2s ease-out infinite;
}

.donation-icon i {
    font-size: 2.8rem;
    color: white;
}

/* Heartbeat Animation */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.1);
    }
    20% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.1);
    }
    40% {
        transform: scale(1);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Heading */
.donation-card h2 {
    font-size: 2.8rem;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Message */
.donation-message {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.donation-message strong {
    color: #667eea;
    font-weight: 700;
}

/* Tagline */
.donation-tagline {
    font-size: 1.15rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 35px;
}

/* Donation Stats */
.donation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px 0;
    border-top: 2px dashed rgba(102, 126, 234, 0.2);
    border-bottom: 2px dashed rgba(102, 126, 234, 0.2);
}

.donation-stat {
    text-align: center;
}

.donation-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.donation-stat span {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

/* Donation Buttons */
.donation-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-donate {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
}

.btn-donate:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-donate-alt {
    background: white;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 3px solid #667eea;
    cursor: pointer;
}

.btn-donate-alt:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Payment Options */
.payment-options {
    margin-bottom: 20px;
}

.payment-options p {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    transform: translateY(-3px) scale(1.1);
    color: #764ba2;
}

/* Security Note */
.donation-note {
    font-size: 0.95rem;
    color: #a0aec0;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.donation-note i {
    color: #48bb78;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donation-card {
        padding: 40px 30px;
    }
    
    .donation-card h2 {
        font-size: 2.2rem;
    }
    
    .donation-message {
        font-size: 1.05rem;
    }
    
    .donation-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .donation-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-donate,
    .btn-donate-alt {
        width: 100%;
        justify-content: center;
    }
    
    .payment-icons i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .donation-card {
        padding: 30px 20px;
    }
    
    .donation-icon {
        width: 70px;
        height: 70px;
    }
    
    .donation-icon i {
        font-size: 2.2rem;
    }
    
    .donation-card h2 {
        font-size: 1.8rem;
    }
    
    .donation-message {
        font-size: 0.95rem;
    }
}
/* Donation Success Overlay */
.donation-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.donation-success-overlay.show {
    opacity: 1;
}

.donation-success-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.donation-success-overlay.show .donation-success-card {
    transform: scale(1);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    animation: successPulse 1s ease-in-out;
}

.success-icon i {
    font-size: 3rem;
    color: white;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.donation-success-card h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.success-message {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* ============================================
   END OF STYLESHEET
   ============================================ */

