/* ============================================================
   FAST PROFILES - MAIN STYLES (Fixed Font)
   ============================================================ */

/* ---------- Import Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
    color: #0b1a33;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0b1a33;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    color: #4a5a72;
    line-height: 1.7;
}

a {
    color: #2563FF;
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #1a52d4;
}

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #2563FF;
    color: white;
    border: none;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    background: #1a52d4;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37,99,255,0.3);
    color: white;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: #4a5a72;
    border: 2px solid #e9edf4;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    border-color: #2563FF;
    color: #2563FF;
    transform: translateY(-2px);
}

.btn-success {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #22C55E;
    color: white;
    border: none;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.btn-success:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(34,197,94,0.3);
    color: white;
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 60px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(239,68,68,0.3);
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---------- Badges ---------- */
.badge-pending {
    background: #fef3c7;
    color: #d97706;
    padding: 2px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.badge-processing {
    background: #dbeafe;
    color: #1e40af;
    padding: 2px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.badge-completed {
    background: #d1fae5;
    color: #065f46;
    padding: 2px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.badge-cancelled {
    background: #fee2e2;
    color: #991b1b;
    padding: 2px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* ---------- Cards ---------- */
.card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e9edf4;
    padding: 24px;
    transition: all 0.25s ease;
}

.card:hover {
    border-color: #2563FF;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.card h3 {
    margin-bottom: 8px;
}

/* ---------- Form Elements ---------- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    color: #0b1a33;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.form-group .required {
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9edf4;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    background: white;
    color: #0b1a33;
}

.form-control:focus {
    border-color: #2563FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37,99,255,0.1);
}

.form-control::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* ---------- Alerts ---------- */
.alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.alert-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #065f46;
}

.alert-warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #d97706;
}

.alert-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-muted { color: #6b7280; }
.text-primary { color: #2563FF; }
.text-success { color: #22C55E; }
.text-danger { color: #ef4444; }
.text-warning { color: #f59e0b; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }

/* ---------- Grid ---------- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    
    .grid-4 {
        grid-template-columns: 1fr;
    }
}