/* Mobile Responsiveness Improvements */

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text li::before {
        position: relative;
        display: block;
        margin-bottom: 5px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 30px 10px;
    }

    /* Mobile Menu Toggle Logic could be added here if needed, 
       but for now we keep it simple and emphasize the hero buttons */
}

/* Extra polishing for all screen sizes */
img {
    max-width: 100%;
}

.btn {
    text-align: center;
    margin: 5px;
}

[dir="rtl"] .about-text li {
    padding-right: 25px;
    padding-left: 0;
}

[dir="rtl"] .about-text li::before {
    right: 0;
}

/* Glassmorphism for cards */
.product-card,
.quote-form-wrapper,
.controls {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
}