/* General Styles */
body {
    font-family: 'Noto Kufi Arabic', sans-serif;
    background-color: #f7f9fc;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Banner Section */
.contactus-banner {
    position: relative;
    /* Makes the pseudo-element relative to this container */
    text-align: center;
    margin-bottom: 4vh;
}

.banner-img {
    width: 100%;
    max-height: 45vh;
    object-fit: cover;
    display: block;
    /* Ensures no extra space below the image */
}

/* Add Overlay on the Banner Image */
.contactus-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 82, 135, 0.2);
    /* Solid blue overlay with 20% opacity */
    z-index: 1;
    /* Ensure it appears above the image */
    pointer-events: none;
    /* Allow interaction through the overlay */
}


/* Main Content Container */
.contactus-container {
    max-width: 65vw;
    margin: 0 auto;
    padding: 5vh 3vw;
    background-color: #ffffff;
    border-radius: 1vw;
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.05);
}

/* Content Styling */
.contactus-content h3 {
    color: #007bff;
    text-align: center;
    margin-top: 3vh;
    font-size: 1.8vw;
    font-weight: bold;
}

.contact-info {
    margin: 3vh 0;
    font-size: 2.15vw;
    line-height: 1.1;
    text-align: center;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0056b3;
}

/* Branches List */
.branches-list {
    list-style-type: none;
    padding: 0;
    margin: 4vh 0;
    font-size: 1.9vw;
    text-align: center;
}

.branches-list li {
    margin-bottom: 2vh;
}

.branches-list a {
    color: #007bff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.branches-list a:hover {
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contactus-container {
        padding: 5vh 4vw;
    }

    .contactus-content h3 {
        font-size: 4vw;
    }

    .contact-info,
    .branches-list {
        font-size: 2.2vw;
    }
}

@media (max-width: 480px) {
    .contactus-content h3 {
        font-size: 5vw;
    }

    .contact-info,
    .branches-list {
        font-size: 2.5vw;
    }
}

/* brought these from ContactUsEN.cshtml*/

.contact-page {
        background: linear-gradient(180deg, #fef2f2 0%, #ffffff 100%);
        padding: 60px 0 80px;
        min-height: 100vh;
    }

    .contact-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .contact-header h1 {
        font-size: 48px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 20px;
    }

    .contact-header h1 span {
        color: #a51c30;
    }

    .contact-header p {
        font-size: 1.25rem;
        color: #6b7280;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.7;
    }

    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    /* Left Column - Info Cards */
    .contact-info-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .info-cards-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .info-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        border: 1px solid #f3f4f6;
        transition: all 0.3s ease;
    }

    .info-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    .info-card-icon {
        width: 56px;
        height: 56px;
        background: #fef2f2;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        border: 2px solid #fecaca;
    }

    .info-card-icon i {
        font-size: 22px;
            color: #a51c30;
    }

    .info-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 12px;
    }

    .info-card p {
        font-size: 1rem;
        color: #6b7280;
        line-height: 1.6;
        margin: 0;
    }

    .info-card a {
        color: #6b7280;
        text-decoration: none;
        transition: color 0.2s;
    }

    .info-card a:hover {
        color: #dc2626;
    }

    /* Why Choose Section */
.why-choose-section {
    text-align: left;
    background: #fffbeb;
    border: 2px solid #a51c30;
    border-radius: 12px;
    padding: 24px 28px;
}

    .why-choose-section h3 {
        font-size: 18px;
        font-weight: 600;
            color: #a51c30;
        margin-bottom: 16px;
    }

    .why-choose-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .why-choose-section li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 1rem;
        color: #a51c30;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .why-choose-section li::before {
        content: "•";
        color: #a51c30;
        font-size: 18px;
        font-weight: bold;
        line-height: 1;
    }

    /* Right Column - Contact Form */
    .contact-form-section {
        background: #ffffff;
        border-radius: 12px;
        padding: 32px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        border: 1px solid #f3f4f6;
    }

    .contact-form-section h2 {
        font-size: 22px;
        font-weight: 600;
        color: #a51c30;
        margin-bottom: 8px;
    }

    .contact-form-section > p {
        font-size: 1.25rem;
        color: #6b7280;
        margin-bottom: 24px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group.full-width {
        grid-column: 1 / -1;
    }

    .form-group label {
        display: block;
        font-size: 1.25rem;
        font-weight: 500;
        color: #374151;
        margin-bottom: 8px;
    }

    .form-group label .required {
        color: #dc2626;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        font-size: 14px;
        color: #1f2937;
        background: #ffffff;
        transition: all 0.2s;
        box-sizing: border-box;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #dc2626;
        box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #9ca3af;
    }

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

    .submit-btn {
        width: 100%;
        padding: 14px 24px;
        background-color: #a51c30;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s ease;
        margin-top: 8px;
    }

    .submit-btn:hover {
        background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
        transform: translateY(-1px);
    }

    .submit-btn i {
        font-size: 16px;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .contact-container {
            grid-template-columns: 1fr;
        }

        .contact-form-section {
            order: -1;
        }
    }

    @media (max-width: 600px) {
        .contact-header h1 {
            font-size: 32px;
        }

        .info-cards-grid {
            grid-template-columns: 1fr;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .contact-form-section {
            padding: 24px 20px;
        }
    }