*{box-sizing:border-box}
:root{
    --navy:#0B1E4F;
    --gold:#C8A96A;
    --green:#25D366;
    --dark:#111827;
    --muted:#6b7280;
    --bg:#f4f6f9;
    --white:#fff;
}
body{
    margin:0;
    font-family:Arial,sans-serif;
    background:var(--bg);
    color:#1f2937;
    direction:rtl;
}
a{text-decoration:none}
.topbar{
    background:#061638;
    color:white;
    padding:8px 20px;
    font-size:14px;
    text-align:center;
}
.header{
    background:white;
    padding:14px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--navy);
}
.logo-mark{
    width:44px;
    height:44px;
    border-radius:12px;
    background:linear-gradient(135deg,var(--navy),var(--gold));
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-weight:bold;
    font-size:22px;
}
.logo strong{color:var(--navy);font-size:20px}
.logo span{display:block;color:var(--muted);font-size:12px}
.nav a{
    color:#111;
    margin:0 10px;
    font-weight:bold;
}
.header-actions{display:flex;gap:10px}
.btn{
    display:inline-block;
    padding:12px 18px;
    border-radius:12px;
    font-weight:bold;
    border:none;
    cursor:pointer;
}
.btn-dark{background:var(--navy);color:white}
.btn-gold{background:var(--gold);color:#111}
.btn-whatsapp{background:var(--green);color:white}
.hero{
    background:linear-gradient(rgba(11,30,79,.94),rgba(11,30,79,.94));
    color:white;
    text-align:center;
    padding:70px 20px;
}
.hero h1{font-size:40px;margin:0 0 12px}
.hero p{color:#e5e7eb;font-size:18px}
.container{
    max-width:1150px;
    margin:auto;
    padding:45px 25px;
}
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.card{
    background:white;
    padding:25px;
    border-radius:18px;
    box-shadow:0 8px 28px rgba(0,0,0,.07);
}
.card h3,.card h2{color:var(--navy);margin-top:0}
.form-box{
    max-width:850px;
    margin:40px auto;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}
.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}
.full{grid-column:1/-1}
input,select,textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}
textarea{min-height:120px}
label{font-weight:bold;margin-bottom:7px;display:block}
.success{background:#e8f8ef;color:#087a34;padding:14px;border-radius:10px;margin-bottom:15px}
.error{background:#fdecec;color:#b00020;padding:14px;border-radius:10px;margin-bottom:15px}
.footer{
    background:#071227;
    color:white;
    padding:35px 25px;
    margin-top:40px;
}
.footer-wrap{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:25px;
}
.footer a{color:white;display:block;margin:8px 0}
.footer-copy{text-align:center;margin-top:25px}
.float-whatsapp{
    position:fixed;
    left:18px;
    bottom:18px;
    background:var(--green);
    color:white;
    padding:15px 18px;
    border-radius:50px;
    font-weight:bold;
    z-index:2000;
}
.mobile-bottom{display:none}
table{
    width:100%;
    border-collapse:collapse;
    background:white;
    border-radius:14px;
    overflow:hidden;
}
th,td{
    padding:12px;
    border-bottom:1px solid #eee;
    text-align:center;
}
th{background:var(--navy);color:white}

@media(max-width:850px){
    .nav{display:none}
    .header{padding:12px 16px}
    .header-actions .btn-dark{display:none}
    .hero h1{font-size:30px}
    .form-grid{grid-template-columns:1fr}
    .footer-wrap{grid-template-columns:1fr;text-align:center}
    .mobile-bottom{
        display:flex;
        position:fixed;
        bottom:0;
        right:0;
        left:0;
        background:white;
        border-top:1px solid #ddd;
        z-index:1500;
        justify-content:space-around;
        padding:9px 5px;
    }
    .mobile-bottom a{
        color:var(--navy);
        font-size:13px;
        font-weight:bold;
    }
    body{padding-bottom:62px}
    .float-whatsapp{bottom:75px}
}