/* =========================================================
   تصميم آمن ونظامي 100% (Compliant & Ultra-Modern Financial Services)
   النمط: Clean Executive Minimalist مع قائمة "لماذا نحن؟" الشبيهة بالنموذج
   ========================================================= */

:root {
    --bg-page: #f8fafc;
    --bg-card: #ffffff;
    --bg-subtle: #f1f5f9;
    --bg-accent-soft: #eff6ff;
    
    --navy-primary: #0f2744;
    --navy-dark: #0a192f;
    --navy-hover: #1e3a8a;
    
    --emerald-safe: #059669;
    --emerald-hover: #047857;
    --emerald-soft: #ecfdf5;
    
    --whatsapp-green: #22c55e;
    --whatsapp-hover: #16a34a;
    
    --call-blue: #0284c7;
    --call-hover: #0369a1;
    
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    
    --border-light: #e2e8f0;
    --border-subtle: #edf2f7;
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-pill: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.08);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-primary);
    min-height: 100vh;
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--navy-primary);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.brand-title h1 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy-primary);
    line-height: 1.2;
}

.header-contact-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-head {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-head-call {
    background: var(--bg-subtle);
    color: var(--navy-primary);
    border: 1px solid var(--border-light);
}

.btn-head-call:hover {
    background: #ffffff;
    border-color: var(--call-blue);
    color: var(--call-blue);
}

.btn-head-wa {
    background: var(--whatsapp-green);
    color: #ffffff;
}

.btn-head-wa:hover {
    background: var(--whatsapp-hover);
}

/* Hero Section */
.hero-box-section {
    padding: 24px 0 16px;
}

.hero-main-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--call-blue), var(--emerald-safe));
}

.trust-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--emerald-soft);
    color: var(--emerald-safe);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
    border: 1px solid rgba(5, 150, 105, 0.15);
}

.hero-title {
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--navy-primary);
    line-height: 1.35;
    margin-bottom: 10px;
}

.hero-title .highlight {
    color: var(--call-blue);
}

.hero-description {
    font-size: 0.98rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

/* Action Buttons */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.cta-button {
    flex: 1;
    min-width: 180px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 0.98rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-call {
    background: var(--navy-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(15, 39, 68, 0.2);
}

.cta-call:hover {
    background: var(--navy-hover);
    transform: translateY(-2px);
}

.cta-whatsapp {
    background: var(--whatsapp-green);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.2);
}

.cta-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
}

/* =========================================================
   لماذا نحن؟ (Why Us List Style - Inspired by Mockup)
   ========================================================= */
.why-us-section {
    padding: 12px 0 24px;
}

.why-us-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.why-us-header {
    background: #f8fafc;
    border-bottom: 1.5px solid var(--border-light);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.why-us-header h2 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--navy-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-us-header-icon {
    width: 28px;
    height: 28px;
    background: #22c55e;
    color: #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.why-us-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
    gap: 14px;
    transition: background-color 0.15s ease;
}

.why-us-item:last-child {
    border-bottom: none;
}

.why-us-item:hover {
    background-color: #fafbfc;
}

.why-us-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 600;
}

.why-us-text strong {
    color: var(--navy-primary);
    font-weight: 800;
}

.why-us-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: #22c55e;
    color: #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-top: 2px;
}

/* Distinctive styling for highlight & note items */
.why-us-item.highlight-item {
    background-color: #f8fbfd;
}

.why-us-item.note-item {
    background-color: #fffbeb;
    border-right: 3px solid #f59e0b;
}

.why-us-item.note-item .why-us-text {
    color: #92400e;
}

.why-us-item.note-item .why-us-check {
    background: #f59e0b;
}

.why-us-item.example-item {
    background-color: #f0fdf4;
    border-right: 3px solid #22c55e;
}

.why-us-item.example-item .why-us-text {
    color: #166534;
}

/* Liability Disclaimer Notice (إخلاء مسؤولية) */
.liability-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    border: 2px solid #f59e0b;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #78350f;
    line-height: 1.6;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.liability-notice i {
    font-size: 1.3rem;
    color: #d97706;
    flex-shrink: 0;
}

.liability-notice strong {
    color: #92400e;
    font-weight: 900;
    font-size: 1rem;
}

/* Disclaimer Box (طبيعة الخدمة المقدمة) */
.disclaimer-card {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 30px;
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
}

.disclaimer-card strong {
    color: var(--text-secondary);
}

/* Footer */
.site-footer {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    padding: 20px 0;
    text-align: center;
    font-size: 0.84rem;
    color: var(--text-muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-inner a {
    color: var(--navy-primary);
    font-weight: 700;
}

.footer-copy {
    text-align: center;
    line-height: 1.7;
}

.footer-brand-name {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--navy-primary);
    margin-top: 2px;
}

/* Floating Action Dock */
.floating-dock {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.dock-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);
    transition: transform 0.25s;
}

.dock-btn:hover {
    transform: scale(1.1);
}

.dock-wa {
    background: var(--whatsapp-green);
}

.dock-tel {
    background: var(--navy-primary);
}

/* Mobile Bottom Navigation Bar */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    padding: 10px 14px;
    z-index: 99;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}

.mobile-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-mobile-tap {
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
}

.btn-mobile-tap.tel {
    background: var(--navy-primary);
}

.btn-mobile-tap.wa {
    background: var(--whatsapp-green);
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
    .header-contact-btns {
        display: none;
    }
    .hero-title {
        font-size: 1.55rem;
    }
    .hero-main-card {
        padding: 24px 16px;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    .cta-button {
        width: 100%;
        padding: 14px;
    }
    .why-us-item {
        padding: 14px 16px;
    }
    .why-us-text {
        font-size: 0.9rem;
    }
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .floating-dock {
        bottom: 78px;
        left: 16px;
    }
    .mobile-action-bar {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
}
