@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Money Rain Animation */
.money-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

.money-emoji {
    position: absolute;
    font-size: 2rem;
    animation: fall linear;
    pointer-events: none;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    line-height: 1.6;
    color: #0D0D0D;
    overflow-x: hidden;
    background: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 208, 132, 0.1);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00D084, #00A86B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #0D0D0D;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links a:hover {
    color: #00D084;
    background: rgba(0, 208, 132, 0.1);
}

/* Mega Menu Styles */
.mega-menu-item {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 208, 132, 0.1);
    padding: 1.5rem;
    width: 650px;
    max-width: 90vw;
    max-height: 70vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mega-menu::-webkit-scrollbar {
    width: 6px;
}

.mega-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.mega-menu::-webkit-scrollbar-thumb {
    background: #00D084;
    border-radius: 3px;
}

.mega-menu::-webkit-scrollbar-thumb:hover {
    background: #00A86B;
}

.mega-menu-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mega-menu-section h4 {
    color: #00D084;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 208, 132, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-menu-section ul {
    list-style: none;
}

.mega-menu-section li {
    margin-bottom: 0.5rem;
}

.mega-menu-section a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    display: block;
    transition: all 0.3s ease;
    border-radius: 5px;
    padding-left: 0.5rem;
}

.mega-menu-section a:hover {
    color: #00D084;
    background: rgba(0, 208, 132, 0.05);
    padding-left: 1rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.mega-menu-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.cta-button {
    background: linear-gradient(135deg, #00D084, #00A86B);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.4);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #F8F9FA 0%, rgba(0, 208, 132, 0.05) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #00D084, #00A86B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-color: rgba(0, 208, 132, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 25px;
    border: 2px dashed #00D084;
    box-shadow: 0 2px 8px rgba(0, 208, 132, 0.3);

}

@media (max-width: 768px) {
    .hero-content h1 .highlight {
        background-color: transparent;
        padding: 0;
        border: none;
        box-shadow: none;
        display: inline;
        border-radius: 0;
        background: linear-gradient(135deg, #00D084, #00A86B);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.hero-content p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Service Badges */
.service-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.badge {
    background: rgba(0, 208, 132, 0.1);
    color: #00A86B;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0, 208, 132, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(0, 208, 132, 0.2);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    display: flex;
    gap: 1rem;
    max-width: 450px;
    margin: 2rem auto;
    justify-content: center;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(0, 208, 132, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: #00D084;
    box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.1);
}

/* Stats */
.stats {
    padding: 80px 0;
    background: #0D0D0D;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00D084;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #999;
    font-size: 1.1rem;
}

/* Services */
.services {
    padding: 100px 0;
    background: #F8F9FA;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0D0D0D;
}

.services-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 208, 132, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 208, 132, 0.15);
    border-color: #00D084;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00D084, #00A86B);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0D0D0D;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00D084;
    font-weight: bold;
}

/* How We Work */
.how-we-work {
    padding: 100px 0;
    background: white;
}

.how-we-work h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #0D0D0D;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00D084, #00A86B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0D0D0D;
}

.step h3 .highlight-text {
    background: linear-gradient(135deg, #00D084, #00A86B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-color: rgba(0, 208, 132, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 25px;
    border: 2px dashed #00D084;
    box-shadow: 0 2px 8px rgba(0, 208, 132, 0.3);
}

.step h3 .highlight-blue {
    color: #4A90E2;
    background-color: rgba(74, 144, 226, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 25px;
    border: 2px dashed #4A90E2;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.testimonials h2 .highlight-white {
    color: #00D084;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00D084, #00A86B);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.testimonial-info h4 {
    font-weight: 600;
    color: #333;
}

.testimonial-info p {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-content {
    color: #333;
    line-height: 1.6;
    font-style: italic;
}

/* CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0D0D0D, #1A1A1A);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.3rem;
    color: #999;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #0D0D0D;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #00D084;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p, .footer-section a {
    color: #999;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #00D084;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    .hero-content h1 .highlight {
        background-color: transparent;
        padding: 0;
        border: none;
        box-shadow: none;
        display: inline;
        border-radius: 0;
    }

    .mega-menu {
        position: static;
        min-width: auto;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-form {
        flex-direction: column;
        max-width: 100%;
    }

    .service-badges {
        flex-direction: column;
        align-items: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #00D084, #00A86B);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    display: none;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}