/* ========================= Kontakt ========================= */
.contact-section {
    background-color: var(--primary-color);
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    padding: 25px;
    max-width: 500px;
    margin: 45px auto 0 auto; /* oben 45px, horizontal auto */
    width: 75%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.contact-section h2 {
    color: #fff;
    margin-top: 0;
}

.contact-section label {
    display: block;
    margin-top: 12px;
    color: #fff;
    font-weight: bold;
}

.contact-section select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--primary-color);
    border: 1px solid #333;
    border-radius: 0;
    color: var(--text-color);
    cursor: pointer;
    font-size: 0.9rem;
    height: 30px;
    padding: 3px;
    width: 200px;
    margin-top: 10px;
}

.contact-section input,
.contact-section textarea {
    width: 90%;
    height: 100%;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 4px;
    background: var(--primary-color);
    color: #fff;
    margin-top: 4px;
}

.contact-section button {
    margin-top: 20px;
    background: #C40014;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.contact-section button:hover {
    background: #a10010;
}

/* ========================= Angebotsfelder verstecken ========================= */
.contact-section .angebot-details {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

/* ========================= Animation ========================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
