/* ==========================================================================
   General & Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', system-ui, -apple-system, sans-serif;
    direction: rtl;
    background: #f8f9fa;
    color: #333;
    line-height: 1.8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.mt-15 { margin-top: 15px; }
.mb-20 { margin-bottom: 20px; }

/* ==========================================================================
   1. الشريط العلوي الأزرق (الوكيل المعتمد)
   ========================================================================== */
.top-bar {
    background: #0d3b66;
    color: #ffffff;
    text-align: center;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 700;
}

.top-bar i {
    margin-left: 6px;
    color: #f39c12;
}

/* ==========================================================================
   2. الهيدر العمودي (اللوجو فوق والزر تحته)
   ========================================================================== */
header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    padding: 12px 0;
}

.navbar {
    display: flex;
    flex-direction: column !important; /* يجبر الزر على النزول أسفل اللوجو */
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.auth-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* الزر البرتقالي الكبير تحت اللوجو */
.btn-login {
    background: #f39c12;
    color: #ffffff !important;
    padding: 8px 30px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 6px rgba(243, 156, 18, 0.25);
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #d68910;
}

/* ==========================================================================
   Hero Section & Rest of Page Styles
   ========================================================================== */
.about-hero {
    background: #0d3b66;
    padding: 35px 20px;
    text-align: center;
    color: #ffffff;
}

.about-hero h1 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.about-hero p {
    font-size: 14px;
    color: #f39c12;
    font-weight: 600;
}

.about-container {
    padding: 30px 0;
}

.about-section {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.section-title-about {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 8px;
}

.section-title-about i {
    font-size: 20px;
    color: #f39c12;
}

.section-title-about h3 {
    font-size: 18px;
    color: #0d3b66;
    font-weight: 800;
}

.grid-two-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

@media (min-width: 769px) {
    .grid-two-columns {
        grid-template-columns: 1fr 1fr;
    }
}

.vision-mission-box {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.partners-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-item {
    background: #f1f5f9;
    color: #0d3b66;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
    border-right: 4px solid #f39c12;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.badge-item i {
    color: #25d366;
}

.highlight-box {
    background: #0d3b66;
    color: #fff;
}

.highlight-box .section-title-about h3 {
    color: #fff;
}

.quote-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.8;
    color: #e2e8f0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
}

.cap-card {
    background: #f8f9fa;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.cap-card i {
    font-size: 24px;
    color: #0d3b66;
    margin-bottom: 8px;
}

.cap-card h4 {
    color: #0d3b66;
    margin-bottom: 6px;
    font-size: 1rem;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.coverage-card {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #eef2f5;
    cursor: pointer;
}

.coverage-card strong {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0d3b66;
    font-size: 14px;
}

.coverage-details {
    display: none;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px dashed #cbd5e1;
}

.coverage-card.active .coverage-details {
    display: block;
}

.coverage-details ul {
    padding-right: 16px;
}

.coverage-details li {
    list-style-type: disc;
    color: #555;
    font-size: 0.85rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.sector-card {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-top: 3px solid #f39c12;
}

.sector-card h5 {
    color: #0d3b66;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
    font-size: 14px;
}

.why-list i {
    color: #f39c12;
}

footer {
    background: #0d3b66;
    color: #ffffff;
    padding: 18px 0;
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
