/* ==========================================================================
   سداد قروض - تصميم عصري، بسيط، وسريع التحويل
   Clean, Compact, Luxury Fintech Landing Page
   ========================================================================== */

:root {
    --primary: #0a192f;
    --primary-card: #112240;
    --accent-gold: #d4af37;
    --accent-gold-hover: #e5be42;
    --accent-green: #25d366;
    --accent-green-hover: #22bf5b;
    --accent-blue: #0284c7;
    
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 25px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 15px 35px rgba(15, 23, 42, 0.12);
    --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.3);
    --shadow-green: 0 8px 25px rgba(37, 211, 102, 0.35);

    --transition: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Alexandria', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.65;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----------------------------------------------------
   Header
---------------------------------------------------- */
.site-header {
    background: #0a192f;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b89628 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #0a192f;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.logo-text span {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ----------------------------------------------------
   Buttons
---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c49e28 100%);
    color: #0a192f;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--accent-gold-hover) 0%, var(--accent-gold) 100%);
    transform: translateY(-2px);
    color: #0a192f;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    box-shadow: var(--shadow-green);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #2ae772 0%, #16a08f 100%);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-phone {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
}

.btn-phone:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.12rem;
    border-radius: 12px;
}

/* ----------------------------------------------------
   Hero Section
---------------------------------------------------- */
.hero-section {
    background: linear-gradient(145deg, #061120 0%, #0a192f 60%, #0f274a 100%);
    color: #ffffff;
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-glow {
    position: absolute;
    top: -120px;
    right: 50%;
    transform: translateX(50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 860px;
    position: relative;
    z-index: 2;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 18px;
}

.gold-highlight {
    background: linear-gradient(135deg, #fef08a 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.75;
    margin-bottom: 26px;
}

.coverage-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    display: inline-flex;
}

.cov-label {
    font-size: 0.88rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.city-pill {
    font-size: 0.88rem;
    font-weight: 600;
    color: #f1f5f9;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.city-pill i {
    color: var(--accent-gold);
    font-size: 0.75rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ----------------------------------------------------
   Services Section (Clean & Simple)
---------------------------------------------------- */
.section {
    padding: 65px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 22px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
    color: #b89628;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent-gold);
    color: #0a192f;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ----------------------------------------------------
   Features Strip
---------------------------------------------------- */
.features-strip {
    background: #0a192f;
    color: #ffffff;
    padding: 50px 0;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    text-align: center;
}

.feat-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    display: inline-block;
}

.feat-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #ffffff;
}

.feat-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ----------------------------------------------------
   CTA Box
---------------------------------------------------- */
.cta-section {
    padding: 50px 0 65px;
}

.cta-box {
    background: linear-gradient(135deg, #061120 0%, #0a192f 100%);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-md);
}

.cta-box h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 28px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ----------------------------------------------------
   Footer
---------------------------------------------------- */
.site-footer {
    background: #040c17;
    color: var(--text-light);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-info strong {
    color: #ffffff;
}

.footer-phone a {
    color: var(--accent-gold);
    font-weight: 700;
    direction: ltr;
    display: inline-block;
}

.footer-copy {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 6px;
}

/* ----------------------------------------------------
   Floating Sticky Actions
---------------------------------------------------- */
.floating-actions {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.12);
}

.float-btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.float-btn-call {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

/* ----------------------------------------------------
   Mobile Bottom Bar
---------------------------------------------------- */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a192f;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 14px;
    z-index: 998;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.25);
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mobile-bottom-bar .btn {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
}

/* ----------------------------------------------------
   Responsive
---------------------------------------------------- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .cta-btns {
        flex-direction: column;
    }

    .cta-btns .btn {
        width: 100%;
    }

    .mobile-bottom-bar {
        display: grid;
    }

    .floating-actions {
        bottom: 74px;
        left: 14px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    body {
        padding-bottom: 60px;
    }
}
