/* Sainfoxiya Global - Premium Blue Theme */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --brand-blue: #2563eb;
    --brand-blue-hover: #1d4ed8;
    --brand-slate: #0f172a;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--brand-slate);
    overflow-x: hidden;
}

/* Base Styles */
.animate-fade-up {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Utility */
.no-scrollbar::-webkit-scrollbar { display: none; }

.btn-premium {
    background: var(--brand-blue);
    color: white;
    font-weight: 800;
    padding: 1rem 2rem;
    border-radius: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-premium:hover {
    background: var(--brand-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
}

.input-premium {
    width: 100%;
    padding: 1.25rem;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 1.5rem;
    font-weight: 700;
    transition: all 0.3s;
    outline: none;
}

.input-premium:focus {
    background: white;
    border-color: var(--brand-blue);
}

/* Card Design */
.card-premium {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 2.5rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px -15px rgba(15, 23, 42, 0.1);
    border-color: #eff6ff;
}
