/* Responsive Styles for RTL Arabic Website */

/* Large Devices (Desktops) */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 {
        font-size: 2.75rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
}

/* Medium Devices (Tablets) */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Hero Section */
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-left: 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    /* Process Steps */
    .process-steps:before {
        display: none;
    }
    
    .step {
        flex-basis: 50%;
        margin-bottom: 2.5rem;
    }
}

/* Small Devices (Mobile) */
@media screen and (max-width: 768px) {
    /* Header */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Hero Section */
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Process Steps */
    .step {
        flex-basis: 100%;
    }
    
    /* Footer */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .footer-legal li {
        margin: 0 0.75rem;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .benefit-card,
    .service-card,
    .testimonial {
        padding: 1.5rem;
    }
}
