* {
    font-family: 'Inter', system-ui, sans-serif;
}

body {
    background: radial-gradient(circle at 20% 35%, #fef9e8, #ffe6cc);
    min-height: 100vh;
}

.input-group:focus-within .input-label {
    color: #d41367;
    transform: translateY(-1px);
    font-weight: 600;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

.custom-select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%23d41367" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 30px -12px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.25);
}

.splash-card {
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}