/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
    --navy: #0d2240;
    --navy-mid: #1a3a5c;
    --blue: #1f5799;
    --blue-light: #2d6ab4;
    --sky: #4a9fd4;
    --gold: #c8972a;
    --gold-light: #e0b84a;
    --red: #c0392b;
    --cream: #f8f5f0;
    --white: #ffffff;
    --gray-100: #f4f6f9;
    --gray-200: #e8ecf1;
    --gray-300: #cdd3db;
    --gray-500: #7a8896;
    --gray-700: #3d4f61;
    --text: #1a2535;
    --text-light: #4a5c6d;

    --shadow-sm: 0 1px 4px rgba(13,34,64,0.08);
    --shadow: 0 4px 16px rgba(13,34,64,0.12);
    --shadow-lg: 0 8px 32px rgba(13,34,64,0.18);
    --radius: 8px;
    --radius-lg: 14px;
    --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
}

/* ── HEADER ─────────────────────────────────── */
.site-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.header-top {
    background: var(--navy-mid);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 13px;
    color: var(--gray-300);
}

.header-top a { color: var(--gray-300); text-decoration: none; }
.header-top a:hover { color: var(--gold-light); }

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.logo-text { color: var(--white); }
.logo-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.logo-text span {
    font-size: 12px;
    color: var(--gray-300);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* NAV */
.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 600 !important;
    margin-left: 8px;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.nav-user {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
}

.nav-user .user-btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 7px 16px;
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}
.nav-user .user-btn:hover { background: rgba(255,255,255,0.2); }
.nav-user .logout-btn { background: var(--red); border-color: var(--red); }
.nav-user .logout-btn:hover { background: #a93226; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, #1a4570 100%);
    position: relative;
    overflow: hidden;
    padding: 90px 0 70px;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-flag {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    opacity: 0.07;
    background: linear-gradient(to right, transparent, rgba(200,151,42,0.4));
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,151,42,0.2);
    border: 1px solid rgba(200,151,42,0.4);
    color: var(--gold-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--gold-light); }

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.2px;
    font-family: 'Source Sans 3', sans-serif;
}

.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-mid); }

.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
}

.stat-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--gold-light);
}

.stat-item span { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-alt { background: var(--gray-100); }
.section-navy { background: var(--navy); color: white; }
.section-navy h2 { color: white; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 40px);
    color: var(--navy);
    margin-bottom: 14px;
}
.section-header p { font-size: 17px; color: var(--text-light); max-width: 580px; margin: 0 auto; }
.section-header .label {
    display: inline-block;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ── CARDS ── */
.card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.card-body { padding: 28px; }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--blue), var(--sky));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 58px; height: 58px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card p { font-size: 15px; color: var(--text-light); line-height: 1.6; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; position: relative; }

.step-item { text-align: center; }

.step-num {
    width: 56px; height: 56px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.step-item h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.step-item p { font-size: 14px; color: var(--text-light); }

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, var(--blue), var(--navy-mid));
    color: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.info-banner h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 8px; }
.info-banner p { color: rgba(255,255,255,0.8); }

/* ── FOOTER ── */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 14px; color: rgba(255,255,255,0.55); max-width: 280px; }

footer h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}
footer ul li a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 12px;
}

/* ── FORMS ── */
.form-page {
    min-height: 100vh;
    background: var(--gray-100);
    padding: 50px 0;
}

.auth-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 780px;
    margin: 0 auto;
}

.auth-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 36px 40px;
    color: white;
    text-align: center;
}

.auth-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 8px;
}
.auth-header p { color: rgba(255,255,255,0.7); font-size: 15px; }

.auth-tabs {
    display: flex;
    border-bottom: 2px solid var(--gray-200);
    background: white;
}

.auth-tab {
    flex: 1;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}
.auth-tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.auth-tab svg { display: block; margin: 0 auto 6px; }

.auth-body { padding: 36px 40px; }

.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
}

.form-label .req { color: var(--red); margin-left: 2px; }

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text);
    background: white;
    transition: var(--transition);
    outline: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,87,153,0.1); }
.form-control.error { border-color: var(--red); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.input-group { position: relative; }
.input-group .form-control { padding-right: 44px; }
.input-group .toggle-pwd {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--gray-500);
    background: none;
    border: none;
    font-size: 18px;
}

.pwd-strength { margin-top: 8px; }
.pwd-strength-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
}
.pwd-strength-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s, background 0.3s;
}
.pwd-strength-text { font-size: 12px; color: var(--gray-500); }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
}
.checkbox-label input { margin-top: 3px; flex-shrink: 0; }
.checkbox-label a { color: var(--blue); }

.form-footer { margin-top: 24px; text-align: center; }
.form-footer a { color: var(--blue); text-decoration: none; font-size: 14px; }
.form-footer a:hover { text-decoration: underline; }

.alert {
    padding: 13px 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14.5px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert-info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1d4ed8; }

/* ── VISA APPLICATION ── */
.app-wrapper {
    /*min-height: 100vh;*/
    background: var(--gray-100);
    padding: 40px 0;
}

.app-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.app-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    padding: 28px 40px;
    color: white;
    text-align: center;
}

.app-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
}

/* Stepper */
.stepper {
    padding: 28px 40px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-100);
}

.stepper-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
}

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.stepper-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--gray-300);
    z-index: 0;
}
.stepper-item.done:not(:last-child)::after,
.stepper-item.active:not(:last-child)::after { background: var(--blue); }

.step-circle {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.stepper-item.active .step-circle {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
}
.stepper-item.done .step-circle {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
}

.step-label {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 8px;
    text-align: center;
    font-weight: 500;
}
.stepper-item.active .step-label { color: var(--blue); font-weight: 600; }
.stepper-item.done .step-label { color: var(--blue); }

.app-body { padding: 40px; }

.app-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.visa-type-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 28px; }

.purpose-option {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.purpose-option:hover { border-color: var(--blue); background: #eff6ff; }
.purpose-option.selected { border-color: var(--blue); background: #eff6ff; }
.purpose-option .icon { font-size: 32px; margin-bottom: 10px; }
.purpose-option h4 { font-size: 15px; font-weight: 600; color: var(--navy); }

.specific-purpose-list { display: flex; flex-direction: column; gap: 10px; }

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}
.radio-option:hover { border-color: var(--blue); background: #f8fbff; }
.radio-option input[type="radio"] { flex-shrink: 0; margin-top: 2px; accent-color: var(--blue); width: 18px; height: 18px; }
.radio-option label { cursor: pointer; font-size: 15px; color: var(--text); }

.app-nav {
    padding: 24px 40px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-100);
}

/* My Requests */
.requests-table { width: 100%; border-collapse: collapse; }
.requests-table th {
    background: var(--navy);
    color: white;
    padding: 13px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.requests-table td { padding: 13px 16px; border-bottom: 1px solid var(--gray-200); font-size: 14px; }
.requests-table tr:hover td { background: var(--gray-100); }

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.badge-draft { background: #f3f4f6; color: #6b7280; }
.badge-submitted { background: #dbeafe; color: #1d4ed8; }
.badge-review { background: #fef3c7; color: #92400e; }
.badge-approved { background: #d1fae5; color: #065f46; }
.badge-rejected { background: #fee2e2; color: #991b1b; }

/* About page */
.about-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: white;
    padding: 80px 0;
    text-align: center;
}
.about-hero h1 { font-family: 'Playfair Display', serif; font-size: 48px; margin-bottom: 16px; }
.about-hero p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card { text-align: center; }
.team-avatar {
    width: 90px; height: 90px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
}
.team-card h4 { font-size: 16px; font-weight: 600; color: var(--navy); }
.team-card p { font-size: 14px; color: var(--text-light); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-info-item h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--text-light); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 4px; }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 12px 16px; width: 100%; }
    .hamburger { display: flex; }
    .site-header { position: relative; }
    .header-main { position: relative; }

    .form-row { grid-template-columns: 1fr; }
    .auth-body { padding: 28px 24px; }
    .auth-header { padding: 28px 24px; }
    .app-body { padding: 24px; }
    .app-nav { padding: 18px 24px; flex-direction: column; gap: 12px; }
    .stepper { padding: 20px 16px; }
    .step-label { display: none; }
    .info-banner { flex-direction: column; text-align: center; }
    .hero-stats { gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Utility */
.text-center { text-align: center; }
.text-gold { color: var(--gold-light); }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.fw-600 { font-weight: 600; }
.fs-14 { font-size: 14px; }
.separator {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gray-500);
    font-size: 13px;
    margin: 20px 0;
}
.separator::before, .separator::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }

/* Page loader */
.page-loader { display: none; }
