/* ==============================================
   /kontakt page styles
   ============================================== */

/* ── sections container ── */
.contact-sections-wrap {
    padding-top: 0;
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-sections-wrap_form {
    padding-top: 0;
}

/* ── PROCESS section ── */
.contact-section-process {
    background: #fff;
    padding: 56px 48px;
    border-radius: 20px;
    border: 1px solid #eee;
}
.contact-process-card {
    border: 1px solid #e2dcc8;
    border-radius: 10px;
    padding: 28px 22px;
    background: #faf8f3;
    height: 100%;
    margin-bottom: 24px;
    transition: border-color .2s;
}
.contact-process-card:hover {
    border-color: var(--main-color);
}
.contact-process-num {
    font-size: 44px;
    font-weight: 300;
    color: var(--main-color);
    opacity: .3;
    line-height: 1;
    margin-bottom: 10px;
}
.contact-process-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}
.contact-process-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
}

/* ── CTA banner full-bleed ── */
.cross-link-section_fullbleed {
    margin: 0;
    border-radius: 0;
    border: none;
    border-top: 2px solid var(--main-color);
    background: #111;
    box-shadow: none;
    padding: 52px 40px;
}
.cross-link-section_fullbleed .cross-link-section__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.cross-link-section_fullbleed .cross-link-section__text h3 {
    color: #fff;
}
.cross-link-section_fullbleed .cross-link-section__text p {
    color: rgba(255, 255, 255, .55);
    font-size: 15px;
}

/* ── FORM section (dark, full-bleed) ── */
.contact-form-section {
    position: relative; /* anchor for _zpet partial */
    padding: 72px 48px;
    background: #111;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(200, 168, 0, .12);
    margin-bottom: 0;
}

/* text colours + alignment inside dark section */
.contact-form-section .contact-section-lbl {
    color: var(--main-color);
    text-align: left;
}
.contact-form-section .about-title.ab-hero h2 {
    color: #fff;
    text-align: left;
}
.contact-form-section p {
    color: rgba(255, 255, 255, .45);
    font-size: 15px;
    text-align: left;
}

/* contact links on dark bg */
.contact-form-section .contact-team-links {
    border-color: rgba(255, 255, 255, .1);
}
.contact-form-section .contact-team-link {
    color: rgba(255, 255, 255, .6);
    border-color: rgba(255, 255, 255, .1);
}
.contact-form-section .contact-team-link:hover {
    color: #fff;
}

/* remove cream wrapper box */
.contact-form-section .comment-form {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

/* form inputs – dark style (override both Bootstrap .form-control and base .custom-form selectors) */
.contact-form-section .custom-form input[type="text"],
.contact-form-section .custom-form input[type="email"],
.contact-form-section .custom-form textarea,
.contact-form-section .form-control {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    color: #fff;
    border-radius: 2px;
    font-size: 14px;
    padding: 15px 18px 15px 48px;
    height: 50px;
    transition: border-color .2s, background .2s;
}
.contact-form-section .custom-form textarea,
.contact-form-section .form-control[rows] {
    height: auto;
    min-height: 110px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: none;
}
.contact-form-section .custom-form input[type="text"]::-webkit-input-placeholder,
.contact-form-section .custom-form input[type="email"]::-webkit-input-placeholder,
.contact-form-section .custom-form textarea::-webkit-input-placeholder,
.contact-form-section .form-control::-webkit-input-placeholder { color: rgba(255, 255, 255, .24); }
.contact-form-section .custom-form input[type="text"]::-moz-placeholder,
.contact-form-section .custom-form input[type="email"]::-moz-placeholder,
.contact-form-section .custom-form textarea::-moz-placeholder,
.contact-form-section .form-control::-moz-placeholder           { color: rgba(255, 255, 255, .24); }
.contact-form-section .custom-form input[type="text"]:-ms-input-placeholder,
.contact-form-section .custom-form input[type="email"]:-ms-input-placeholder,
.contact-form-section .custom-form textarea:-ms-input-placeholder,
.contact-form-section .form-control:-ms-input-placeholder       { color: rgba(255, 255, 255, .24); }

.contact-form-section .custom-form input[type="text"]:focus,
.contact-form-section .custom-form input[type="email"]:focus,
.contact-form-section .custom-form textarea:focus,
.contact-form-section .form-control:focus {
    background: rgba(255, 255, 255, .07);
    border-color: var(--main-color);
    box-shadow: none;
    color: #fff;
    outline: none;
}

.contact-form-section .cs-intputwrap i {
    color: rgba(255, 255, 255, .3);
}
.contact-form-section .cs-intputwrap textarea ~ i {
    top: 22px;
    transform: none;
}

/* submit button – gold, full width */
.contact-form-section .commentssubmit {
    width: 100%;
    background: var(--main-color);
    color: #111;
    border-radius: 2px;
    height: 50px;
    line-height: 50px;
    font-size: 13px;
    letter-spacing: .06em;
    display: block;
    text-align: center;
    padding: 0;
}
.contact-form-section .commentssubmit:hover {
    background: #e0b800;
    color: #111;
    border-radius: 2px;
}

.contact-form-lead {
    padding-right: 40px;
    padding-bottom: 20px;
}
.contact-form-lead .about-title.ab-hero {
    margin-bottom: 12px;
}
.contact-form-note {
    font-size: 11px;
    color: rgba(255, 255, 255, .2);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

/* ── tablet (≤991px) ── */
@media (max-width: 991px) {
    .contact-section-process { padding: 40px 32px; }
    .contact-form-section { padding: 56px 32px; }
    .contact-sections-wrap { gap: 16px; padding-top: 24px; padding-bottom: 24px; }
    .contact-section-process .row [class*="col-"] { margin-bottom: 20px; }
    .contact-process-card { margin-bottom: 0; }
    .contact-form-lead { padding-right: 0; margin-bottom: 32px; }
    .cross-link-section_fullbleed {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        gap: 20px;
    }
}

/* ── mobil (≤575px) ── */
@media (max-width: 575px) {
    .contact-section-process { padding: 32px 20px; border-radius: 14px; }
    .contact-form-section { padding: 48px 20px; }
    .contact-sections-wrap { gap: 12px; padding-top: 16px; padding-bottom: 16px; }
    .contact-team-links { gap: 14px; }
    .contact-section-process .row [class*="col-"] { margin-bottom: 16px; }
    .contact-form-lead .about-title.ab-hero h2 { font-size: 22px; }
    .cross-link-section_fullbleed .cross-link-section__btn {
        width: 100%;
        justify-content: center;
    }
}
