/* ========================================================
   PREMIUM LIGHT THEME DESIGN SYSTEM (VIBRANT & BRIGHT)
   ======================================================== */

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

:root {
    --bg-color: #f1f5f9;
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --accent-gold: #f59e0b;
    --accent-gold-hover: #d97706;
    --accent-blue: #1d4ed8;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
}

body {
    background-color: var(--bg-color) !important;
    color: var(--text-primary);
    font-family: 'Outfit', 'Hind', sans-serif;
    margin-bottom: 80px;
    overflow-x: hidden;
}

/* Premium Card Style (Light Theme) */
.premium-card, .white-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--card-border) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    color: var(--text-primary) !important;
}

.premium-card:hover, .white-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.08), 0 8px 8px -6px rgba(0, 0, 0, 0.04) !important;
    border-color: #cbd5e1 !important;
}

/* Saffron Border Card */
.border-saffron {
    border-top: 5px solid var(--accent-gold) !important;
}

.border-indigo {
    border-top: 5px solid var(--accent-blue) !important;
}

/* Glow Buttons */
.btn-glow-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25) !important;
    transition: all 0.3s ease;
    border-radius: 20px !important;
}

.btn-glow-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.4) !important;
}

.btn-glow-blue {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25) !important;
    transition: all 0.3s ease;
    border-radius: 20px !important;
}

.btn-glow-blue:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(29, 78, 216, 0.4) !important;
}

/* Inputs styling */
.form-control, .form-select {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #1e293b !important;
    border-radius: 8px;
    padding: 10px;
    transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15) !important;
}

.form-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 13.5px;
    margin-bottom: 6px;
}

/* Custom AJAX Blur Loader Overlay */
#global-loader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    z-index: 999999;
}

.spinner-element {
    width: 50px;
    height: 50px;
    border: 5px solid #e2e8f0;
    border-top: 5px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.15);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-message {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 0.5px;
}
