/* =============================================
   Home Page Styles - الصفحة الرئيسية
   شركة رزام للمحاماة والاستشارات القانونية
   ============================================= */

:root {
    --primary-color: #B8860B;
    --secondary-color: #1a2332;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #fff;
}

/* =============================================
   Hero Section
   ============================================= */

.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0f1823 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo-img {
    max-width: 200px;
    height: auto;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-whatsapp {
    background: #25D366 !important;
    color: var(--white) !important;
}

.btn-whatsapp:hover {
    background: #128C7E !important;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.hero-trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-trust-badges i {
    color: var(--primary-color);
}

/* =============================================
   Legal Services Section - خدماتنا القانونية
   ============================================= */

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

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

.legal-service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: block;
}

.legal-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.legal-service-card .service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.legal-service-card .service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.legal-service-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.legal-service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s;
}

.legal-service-card:hover .service-link {
    gap: 10px;
}

/* =============================================
   Why Us Section - لماذا تختارنا
   ============================================= */

.why-us-section {
    padding: 80px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-us-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s;
}

.why-us-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.why-num {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.why-content h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.why-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =============================================
   Social Section - التواصل الاجتماعي
   ============================================= */

.social-section {
    padding: 60px 0;
    background: var(--light-bg);
    text-align: center;
}

.social-section h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: var(--primary-color);
}

.social-icon.linkedin:hover {
    background-color: #0077B5;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

.social-icon.snapchat:hover {
    background-color: #FFFC00;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 252, 0, 0.4);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

.social-icon.facebook:hover {
    background-color: #1877F2;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.social-icon.whatsapp:hover {
    background-color: #25D366;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* =============================================
   Responsive Styles
   ============================================= */

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .legal-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 1.7rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .legal-services-section,
    .why-us-section,
    .social-section {
        padding: 60px 0;
    }
    
    .legal-services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .hero-logo-img {
        max-width: 150px;
    }
    
    .legal-service-card {
        padding: 25px 20px;
    }
    
    .why-us-item {
        flex-direction: column;
        text-align: center;
    }
    
    .why-num {
        margin: 0 auto;
    }
}

/**code class="stat-number has-plus"**/
.stat-number.has-plus::after{
    content: "+";
    margin-inline-start: 6px; /* ممتاز للـ RTL و LTR */
    font-weight: inherit;
    font-size: inherit;
}
/**end class="stat-number has-plus"***/

