/* Start custom CSS for html, class: .elementor-element-79a734e *//* Główny kontener kontaktowy */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;

    padding: 60px 5%; /* ZMIANA: Dodane odstępy po bokach (5%) */
    border-radius: 16px;
    width: 100%; 
    max-width: 1200px;
    margin: 0 auto;
}

/* Lewa kolumna z tekstem */
.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-title {
    font-size: 2.8em;
    color: #32373c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-desc {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.contact-email {
    font-size: 1.2em;
    font-weight: bold;
    color: #7d9183; 
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.contact-email:hover {
    opacity: 0.8;
}

/* Sekcja social media */
.contact-socials {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e2e2e2;
}

.contact-socials p {
    font-weight: 600;
    color: #32373c;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #b46a4d;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 8px; /* ZMIANA: Zaokrąglenie takie jak w przycisku newslettera */
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-link:hover {
    background-color: #9C5B42; /* ZMIANA: Ciemniejsza miedź, spójna z newsletterem */
    transform: translateY(-2px);
}

/* Prawa kolumna z formularzem CF7 */
.contact-form-container {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* Stylizacja pól Contact Form 7 */
.contact-form-container label {
    font-weight: 600;
    color: #32373c;
    display: block;
    margin-bottom: 5px;
}

.contact-form-container .wpcf7-form-control.wpcf7-text,
.contact-form-container .wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 15px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background-color: #fafafa;
    font-family: inherit;
    color: #333;
    transition: border-color 0.3s ease;
}

.contact-form-container .wpcf7-form-control:focus {
    border-color: #7d9183;
    outline: none;
}

/* Przycisk wysyłania */
.contact-form-container .wpcf7-form-control.wpcf7-submit {
    background-color: #32373c;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.contact-form-container .wpcf7-form-control.wpcf7-submit:hover {
    background-color: #7d9183;
}/* End custom CSS */