 body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
        }
      body {
    font-family: 'Tajawal', sans-serif !important;
}

/* Exclude icons from font changes */
.fas, .far, .fab {
    font-family: "Font Awesome 6 Free" !important;
}
        h1 {
            margin-right: 130px;
            margin-top: 50px;
            color: #18bba4;
        }

        /* ===== الهيرو ===== */
        .hero-section {
            background: linear-gradient(to right, #1e3a5c, #2a4b6c, #2dd4bf);
            padding: 6rem 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            height: 60vh;
        }

        .hero-content {
            max-width: 800px;
            opacity: 0;
            transform: translateY(-50px);
            animation: heroFadeIn 0.8s ease-out forwards;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== كروت التواصل ===== */
        .contact {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
            padding: 2rem 1rem;
        }

        .card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 300px;
            text-align: center;
        }

        h2 {
            font-size: 18px;
        }

        p {
            font-size: 16px;
        }

        /* ===== الفورم والخريطة ===== */
        .contact-form {
            direction: rtl;
            margin: 50px auto;
            max-width: 1200px;
            padding: 0 1rem;
        }

        .contact-wrapper {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .contact-wrapper form {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-wrapper form label {
            font-weight: 600;
            text-align: right;
        }

        .contact-wrapper form input,
        .contact-wrapper form textarea {
            width: 100%;
            padding: 12px 16px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 25px;
            outline: none;
            transition: border-color 0.3s;
        }

        .contact-wrapper form textarea {
            border-radius: 12px;
            resize: vertical;
        }

        .contact-wrapper form input:focus,
        .contact-wrapper form textarea:focus {
            border-color: #18bba4;
        }

        .contact-wrapper form button {
            margin-top: 1rem;
            background-color: #18bba4;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 40%;
            align-self: center;
        }

        .contact-wrapper form button:hover {
            background-color: #149e8c;
        }

        .contact-wrapper #map {
            flex: 1;
            min-width: 300px;
            height: 500px;
            border-radius: 15px;
        }

        /* تجاوب الشاشات الصغيرة */
        @media (max-width: 768px) {
            .hero-section {
                height: auto;
                padding: 4rem 1rem;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .contact-wrapper {
                flex-direction: column-reverse;
                align-items: center;
            }

            .contact-wrapper #map {
                width: 100%;
                height: 400px;
            }

            .contact-wrapper form {
                width: 100%;
            }

            h1 {
                margin-right: 0;
                text-align: center;
            }
        }

        /* ===== Loading Overlay ===== */
        #loading-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(255, 255, 255, 0.85);
            z-index: 99999;
            align-items: center;
            justify-content: center;
        }

        .spinner {
            border: 6px solid #eee;
            border-top: 6px solid #079270;
            border-radius: 50%;
            width: 54px;
            height: 54px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }
        .contact-section {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #f5f8fa;
}

.contact-section h1 {
    color: #18bba4;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.contact-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    width: 250px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contact-card i {
    font-size: 3rem;
    color: #18bba4;
    margin-bottom: 1rem;
}

.contact-card.whatsapp i { color: #25D366; }
.contact-card.phone i { color: #149e8c; }
.contact-card.email i { color: #ff6b6b; }

.contact-card h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-card p {
    font-size: 1rem;
    color: #666;
    word-wrap: break-word;
}

.contact-card a {
    color: inherit;
    text-decoration: none;
}
