/* style.css */

:root {
            --primary-navy: #0f172a;
            --accent-gold: #d97706;
            --glass-white: rgba(255, 255, 255, 0.95);
        }

        body { 
            font-family: 'Tajawal', sans-serif; 
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .login-card { 
            background: var(--glass-white);
            border-radius: 24px;
            padding: 40px;
            width: 100%;
            max-width: 420px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .brand-icon {
            width: 70px; height: 70px; background: var(--primary-navy); color: white;
            border-radius: 18px; display: flex; align-items: center; justify-content: center;
            font-size: 2rem; margin: 0 auto 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .form-label { font-weight: 700; color: #334155; font-size: 0.9rem; }

        .input-group {
            background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 12px; overflow: hidden;
        }

        .input-group:focus-within {
            border-color: var(--accent-gold); background: white; box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
        }

        .input-group-text { background: transparent; border: none; color: #94a3b8; }

        .form-control { border: none; background: transparent; padding: 12px 10px; font-weight: 600; }
        .form-control:focus { box-shadow: none; background: transparent; }

        .btn-login {
            background: var(--primary-navy); color: white; border: none; padding: 14px;
            border-radius: 12px; font-weight: 800; width: 100%; transition: 0.3s; margin-top: 10px;
        }

        .btn-login:hover { background: var(--accent-gold); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(217, 119, 6, 0.2); }

        .footer-links { margin-top: 30px; padding-top: 20px; border-top: 1px solid #f1f5f9; font-size: 0.9rem; text-align: center; }
        .footer-links a { color: var(--acce


:root {
    --primary: #0f172a;
    --accent: #d97706;
    --bg-body: #f8fafc;
    --card-radius: 20px;
}

body { 
    font-family: 'Tajawal', sans-serif; 
    background-color: var(--bg-body); 
    color: #334155; 
}

/* Navbar Custom */
.navbar { background: white; padding: 18px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.05); }
.navbar-brand { font-weight: 800; font-size: 1.6rem; color: var(--primary); }
.btn-nav-action { background: var(--primary); color: white; border-radius: 12px; padding: 10px 25px; font-weight: 700; transition: 0.3s; text-decoration: none; display: inline-block; }
.btn-nav-action:hover { background: var(--accent); color: white; transform: translateY(-2px); }

/* Hero & Search */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    padding: 100px 0 140px; text-align: center; color: white;
    border-radius: 0 0 50px 50px; position: relative;
}

/* Status colors */
.step.active.text-danger .step-circle { background: #dc3545 !important; color: white; }
.step.completed .step-circle, .step.active.completed .step-circle { background: #198754 !important; color: white; }
.step.active.text-primary .step-circle { background: #0d6efd !important; color: white; }

.hero-title { font-size: 3.2rem; font-weight: 800; margin-bottom: 20px; }
.search-container {
    background: white; padding: 12px; border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); display: flex; 
    max-width: 750px; margin: -60px auto 0; position: relative; z-index: 10;
}
.search-input { border: none; flex: 1; padding: 15px 25px; font-size: 1.1rem; outline: none; border-radius: 15px; }
.btn-search { background: var(--accent); color: white; border: none; padding: 12px 40px; border-radius: 15px; font-weight: 800; }

/* Status Timeline */
.status-timeline { display: flex; justify-content: space-between; position: relative; margin: 40px 0; }
.status-timeline::before { content: ''; position: absolute; top: 22px; left: 0; width: 100%; height: 4px; background: #e2e8f0; z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; width: 33.33%; }
.step-circle { width: 45px; height: 45px; background: #e2e8f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-weight: 800; border: 4px solid white; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.step.active .step-circle { background: var(--accent); color: white; }
.step.completed .step-circle { background: #10b981; color: white; }
.step-text { font-size: 0.9rem; font-weight: 800; }

/* Agency Cards */
.agency-card-pro {
    background: white; border-radius: var(--card-radius); padding: 30px 20px;
    transition: 0.3s; border: 1px solid #edf2f7; text-align: center; height: 100%;
}
.agency-card-pro:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); border-color: var(--accent); }
.agency-icon { width: 70px; height: 70px; background: #f0f9ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary); font-size: 1.8rem; }

/* Footer */
.footer-dark { background: var(--primary); color: white; padding: 80px 0 40px; border-top: 6px solid var(--accent); }

.custom-input { background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 12px; padding: 14px; font-weight: 500; }
.custom-input:focus { border-color: var(--accent); box-shadow: none; }

/* Search Filter Container */
.max-width-600 { max-width: 600px; }