.contacts-section {
    padding: 1rem 1rem;
    background: #23272b;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(255, 179, 0, 0.05), 0 1px 4px rgba(0, 0, 0, 0.09);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contacts-section h1 {
    font-size: 3em;
    /* text-align: center; */
    margin-bottom: 0.5rem;
    color: #ffb300;
}

.contacts-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contacts-info {
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 240px;
    max-width: 320px;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #181a1b;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(255, 179, 0, 0.04);
    color: #fff;
    font-size: 1.08rem;
}

.contact-icon {
    font-size: 1.6rem;
    color: #ffb300;
    margin-top: 2px;
    min-width: 2rem;
}

.contacts-form-map {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 300px;
}

.contact-form {
    background: #181a1b;
    padding: 1.5rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(255, 179, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form h2 {
    color: #ffb300;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-form input,
.contact-form textarea {
    background: #23272b;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ffb300;
    background: #23272b;
}

.contact-form button {
    background: #ffb300;
    color: #23272b;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.contact-form button:hover {
    background: #ffd54f;
    color: #181a1b;
}

.contacts-map {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(255, 179, 0, 0.04);
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.fab,
.fas {
    font-size: 1.5em;
}

.fas {
    font-size: 1.2em;
}

/* Адаптивність */
@media (max-width: 900px) {
    .contacts-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .contacts-form-map {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .contacts-section {
        padding: 1rem 0.2rem;
    }

    .contact-form {
        padding: 1rem 0.5rem;
    }
}