/* =========================================
   Contact Section – MM Stimme Modern
   ========================================= */

#contact {
    padding: 80px 0;
}

/* =========================================
   Contact Info Cards
   ========================================= */

#contact .contact-item {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
}

#contact .contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

#contact .contact-item .icon {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--ci-accent-dark), var(--ci-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

#contact .contact-item .icon i {
    color: #fff;
    font-size: 22px;
}

#contact .contact-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ci-primary);
}

#contact .contact-item p {
    font-size: 15px;
    color: var(--ci-gray);
    margin-bottom: 0;
}

/* =========================================
   Contact Form Wrapper
   ========================================= */

#contact .contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

#contact .contact-form-wrapper h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--ci-primary);
}

/* Form groups (Forms.css übernimmt den Rest) */
#contact .contact-form-wrapper .form-group {
    margin-bottom: 20px;
}

/* Submit Button */
#contact .contact-form-wrapper .c_btn {
    margin-top: 10px;
}

/* =========================================
   Map
   ========================================= */

#contact .map-wrapper {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 768px) {
    #contact .contact-item {
        text-align: center;
    }

    #contact .contact-item .icon {
        margin-left: auto;
        margin-right: auto;
    }

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