.section-contacts {
    padding: 64px 32px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.45));
    backdrop-filter: blur(6px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    color: #fff;
    margin-bottom: 64px;
}

.section-contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-heading h1 {
    font-size: 36px;
    font-weight: 700;
    color: #7FE366;
    margin: 0 0 16px 0;
}

.contact-heading .text {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
}

.content-contact-information {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-contact-information-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #eee;
}

.contact-form-content .input-link,
.contact-form-content .input-link-sms {
    margin-bottom: 20px;
}

.contact-form-content .name {
    font-weight: 600;
    color: #7FE366;
    margin-bottom: 6px;
}

.input, .input-sms {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.input::placeholder,
.input-sms::placeholder {
    color: #bbb;
}

.contact-form-action {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.action-checkbox-pm {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
}

.terms {
    color: #7FE366;
    cursor: pointer;
    text-decoration: underline;
}

/* Соцсети блок */
.option-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.item {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: scale(1.02);
}

.item img:first-child {
    margin-right: 16px;
}

.item h1 {
    flex-grow: 1;
    font-size: 20px;
    color: #fff;
    margin: 0;
}

.icon-arrow {
    width: 24px;
    height: 24px;
}
