/* Additional CSS for enhanced responsiveness and animations */

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animations to elements */
.feature-card,
.content-text,
.stat-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced button styles */
.cta-button,
.submit-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before,
.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before,
.submit-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Blue accent animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.feature-icon {
    animation: pulse 2s infinite;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }
    
    .features,
    .content,
    .cta-section {
        padding: 50px 0;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

/* Print styles */
@media print {
    .hero,
    .footer,
    .form-container {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}
