/* Landing Page Custom Styles for "مأرب بين يديك" */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #198754;
    --dark-blue: #0f172a;
    --light-bg: #f8fafc;
    --text-muted: #64748b;
}

body {
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-blue);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-blue) !important;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Features */
.features-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card {
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #eef2ff;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

/* Services */
.services-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.service-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

/* Statistics */
.stats-section {
    padding: 60px 0;
    background: var(--primary-color);
    color: white;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(13, 110, 253, 0.9)), url('/assets/images/bg/login.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

/* Footer */
footer {
    padding: 50px 0 20px;
    background: #0f172a;
    color: rgba(255,255,255,0.7);
}

footer .footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

footer h5 {
    color: white;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

footer ul li a:hover {
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* RTL Specific */
body.rtl {
    text-align: right;
}

body.rtl .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}
