/* CONTACT SECTION */
.contacts {
    padding: 60px 0;
    text-align: center;
}

.contacts .section-title {
    color: var(--primary-color); /* Зміна кольору заголовка на оранжевий */
    margin-bottom: 40px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contact-info-block {
    text-align: left;
}

.contact-info-block p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.contact-info-block a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-block a:hover {
    color: var(--accent-color);
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    color: var(--secondary-color);
    font-size: 1.5em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px; /* Обмеження ширини на великих екранах */
    margin: 0 auto; /* Центрування форми */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    background-color: rgba(68, 68, 68, 0.2); /* Напівпрозорий темно-сірий фон */
    color: #ffffff; /* Змінено колір тексту на білий для кращої читабельності */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(68, 68, 68, 0.4); /* Повністю білий фон при фокусі */
}

.contact-form .cta-button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Адаптивні стилі для мобільних пристроїв */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-form {
        max-width: 100%; /* На малих екранах форма займає всю ширину */
    }
}
