@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.step-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(187, 189, 192, 0.3);
}

.option-card {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-color: rgba(187, 189, 192, 0.4);
}

.option-card:hover {
    transform: translateY(-2px);
    border-color: #2F4783;
    background-color: rgba(47, 71, 131, 0.03);
}

.option-card.selected {
    border-color: #2F4783;
    background-color: rgba(47, 71, 131, 0.06);
    box-shadow: 0 0 0 2px rgba(47, 71, 131, 0.1);
}

.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #BBBDC0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { 
        background-position: 200% 0; 
    }
    100% { 
        background-position: -200% 0; 
    }
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Mobile Menu Styles */
#mobileMenu {
    transition: opacity 0.3s ease-in-out;
}

#mobileMenu:not(.hidden) {
    animation: fadeIn 0.3s ease-out;
}

#mobileMenu .absolute.right-0 {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Ensure mobile menu items have proper touch targets */
#mobileMenu nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
}
