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

body {
    font-family: 'Inter', sans-serif;
    background-color: hsl(210, 40%, 98%);
    color: hsl(222, 47%, 7%);
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, #0A2540 0%, #00A3E0 100%);
}

.glow-blue {
    box-shadow: 0 4px 24px rgba(0, 163, 224, 0.25), 0 1px 4px rgba(0, 163, 224, 0.15);
}

.glow-navy {
    box-shadow: 0 4px 24px rgba(10, 37, 64, 0.18), 0 1px 4px rgba(10, 37, 64, 0.10);
}

.dot-grid {
    background-image: radial-gradient(circle, rgba(0, 163, 224, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
}

.navy-section {
    background-color: #0A2540;
}

.accent-line {
    background: linear-gradient(90deg, #00A3E0, #67E8F9);
}

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

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Form inputs */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.15s, box-shadow 0.15s;
    background-color: #ffffff;
    color: #0A2540;
}

.form-input:focus {
    outline: none;
    border-color: #00A3E0;
    box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.12);
}

.form-error {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Mobile menu transition */
#mobile-menu {
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
}

#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}
