/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

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

.slide-in {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

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

/* Header/Hero Section */
.hero-section {
    background: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.logo-container {
    margin-bottom: 30px;
}

.hero-logo {
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    margin: 10px;
}

.primary-btn {
    background: linear-gradient(45deg, #10B981, #06B6D4);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.primary-btn:active {
    transform: translateY(0);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background: white;
    color: #7C3AED;
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.benefit-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.benefit-item p {
    color: #666;
    font-size: 1rem;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: white;
}

.testimonial-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #333;
}

.testimonial-carousel {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: transparent;
    padding: 0 0 60px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #7C3AED, #06B6D4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: 15px;
}

.testimonial-info h4 {
    font-weight: 600;
    color: #333;
}

.testimonial-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-actions {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #666;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(124, 58, 237, 0.2);
    color: #7C3AED;
    transform: scale(1.1);
}

.nav-btn:active {
    transform: scale(0.95);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #7C3AED;
    transform: scale(1.5);
}

.dot:hover {
    background: rgba(124, 58, 237, 0.6);
    transform: scale(1.2);
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
    background: linear-gradient(45deg, #7C3AED, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-now-section .section-title {
    color: white;
    background: linear-gradient(45deg, #FFD700, #FF6500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.how-it-works-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.how-it-works-item:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #7C3AED, #06B6D4);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.how-it-works-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.how-it-works-item p {
    color: #666;
    line-height: 1.6;
}

.benefits-for-you {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.benefits-for-you h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.benefits-for-you ul {
    list-style: none;
    padding: 0;
}

.benefits-for-you li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Why Now Section */
.why-now-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
    color: white;
}

.why-now-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 30px;
    opacity: 0.9;
}

.why-now-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
}

.why-now-list li {
    padding: 15px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.call-to-action-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0;
    color: #FFD700;
}

.final-message {
    font-size: 1.2rem;
    margin: 20px 0;
    opacity: 0.9;
}

.dream-text {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 30px;
    background: linear-gradient(45deg, #FFD700, #FF6500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
    color: white;
}

.form-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.lead-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.form-group input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-legal {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

.form-legal a {
    color: white;
    text-decoration: underline;
}

.success-message {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: rgba(16, 185, 129, 0.2);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: #1f2937;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, #FFD700, #FF6500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        width: 240px;
        height: 240px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-for-you {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .lead-form {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .how-it-works-item {
        padding: 30px 20px;
    }
    
    .benefits-for-you {
        padding: 25px 15px;
    }
    
    .why-now-content {
        padding: 0 15px;
    }
    
    .hero-logo {
        width: 200px;
        height: 200px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-title {
        font-size: 1.7rem;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .benefit-item {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .form-title,
    .cta-title {
        font-size: 1.7rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

/* Error styles */
.form-group.error input {
    border: 2px solid #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}
