/* contact.css — Contact — MediProvital */


    /* Contact Info Card */
    .contact-info-card {
        background: white;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        padding: 30px;
    }

    .contact-info-item {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 25px;
        border-bottom: 1px solid #eee;
    }

    .contact-info-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .contact-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background: var(--color-primary);
        color: white;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-icon i {
        width: 24px;
        height: 24px;
    }

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

    .contact-content p {
        margin: 0;
        color: var(--color-text-light);
        font-size: 15px;
        line-height: 1.6;
    }

    .contact-content a {
        color: var(--color-text-light);
        transition: var(--transition);
    }

    .contact-content a:hover {
        color: var(--color-primary);
    }

    /* Contact Form */
    .contact-form-wrapper {
        background: white;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        padding: 40px;
    }

    .contact-form .form-group {
        margin-bottom: 0;
    }

    .contact-form .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    @media (max-width: 991px) {
        .contact-info-card {
            margin-bottom: 30px;
        }

        .contact-form-wrapper {
            padding: 25px;
        }
    }
