/* Clean CSS for VSCRM Landing Page */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Form focus states */
input:focus,
textarea:focus {
    outline: none;
    ring: 2px;
    ring-color: rgb(37 99 235);
    border-color: transparent;
}

/* FAQ functionality */
.faq-icon.rotate {
    transform: rotate(45deg);
}

.faq-answer.open {
    max-height: 500px;
}

/* Flash messages */
.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 50;
    min-width: 300px;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile navigation */
.mobile-menu {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.mobile-menu.open {
    max-height: 500px;
}

/* Hover effects for cards */
.hover-lift:hover {
    transform: translateY(-2px);
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Print styles */
@media print {
    nav,
    footer,
    .fixed {
        display: none !important;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-4xl {
        font-size: 2rem;
    }
    
    .text-3xl {
        font-size: 1.75rem;
    }
}