/**
 * Get in Touch Section Block Styles
 *
 * Matches the "Get in touch" design: full-width background image with a
 * centered white card containing a title, description, primary CTA,
 * phone & email contact details, and a small notice description.
 *
 * @package ACF Child Theme
 */

:root {
    --color-primary: #3a9bf7;
    --color-grey: #f3f3f3;
    --color-text: #252525;
    --color-white: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
}

/* Section
   ========================================================================== */
.get-in-touch-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 90px 0;
    background-color: var(--color-grey, #f3f3f3);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.get-in-touch-section__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.get-in-touch-section__container {
    position: relative;
    z-index: 1;
    max-width: var(--theme-normal-container-max-width, 1290px);
    width: var(--theme-container-width, 100%);
    margin: 0 auto;
    padding: 0;
}

/* Card
   ========================================================================== */
.get-in-touch-section__card {
    background-color: var(--color-white, #ffffff);
    padding: 50px 60px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.get-in-touch-section__title {
    font-family: var(--font-primary), 'Montserrat', sans-serif;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text, #252525);
    margin: 0 0 18px 0;
}

.get-in-touch-section__description {
    font-family: var(--font-primary), 'Montserrat', sans-serif;
    font-size: 22px;
    line-height: 1.65;
    color: var(--color-text, #252525);
    max-width: 620px;
    margin: 0 auto 28px auto;
}

.get-in-touch-section__description p {
    margin: 0 0 10px 0;
}

.get-in-touch-section__description p:last-child {
    margin-bottom: 0;
}

/* CTA Button
   ========================================================================== */
.get-in-touch-section__cta {
    margin-bottom: 32px;
}

.get-in-touch-section__btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-primary), 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-white, #ffffff);
    background-color: var(--color-primary, #3a9bf7);
    border: 2px solid var(--color-primary, #3a9bf7);
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.get-in-touch-section__btn:hover,
.get-in-touch-section__btn:focus-visible {
    background-color: #2a86df;
    border-color: #2a86df;
    color: var(--color-white, #ffffff);
}

/* Contacts (phone + email)
   ========================================================================== */
.get-in-touch-section__contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px 50px;
    margin-bottom: 18px;
}

.get-in-touch-section__contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary), 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text, #252525);
    text-decoration: none;
    transition: color 0.25s ease;
}

.get-in-touch-section__contact:hover,
.get-in-touch-section__contact:focus-visible {
    color: var(--color-primary, #3a9bf7);
}

.get-in-touch-section__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-primary, #3a9bf7);
    flex-shrink: 0;
}

.get-in-touch-section__contact-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

/* Nb description
   ========================================================================== */
.get-in-touch-section__nb {
    font-family: var(--font-primary), 'Montserrat', sans-serif;
    font-size: 21px;
    line-height: 1.5;
    color: var(--color-text, #252525);
    margin-top: 6px;
}

.get-in-touch-section__nb p {
    margin: 0;
}

.get-in-touch-section__nb a,
.get-in-touch-section__nb strong {
    color: var(--color-text, #252525);
    font-weight: 600;
}

.get-in-touch-section__nb a {
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.get-in-touch-section__nb a:hover,
.get-in-touch-section__nb a:focus-visible {
    color: var(--color-primary, #3a9bf7);
    border-bottom-color: var(--color-primary, #3a9bf7);
}

/* Tablet
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1023px) {
    .get-in-touch-section {
        padding: 70px 0;
    }

    .get-in-touch-section__card {
        padding: 42px 40px;
    }

    .get-in-touch-section__title {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .get-in-touch-section__description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .get-in-touch-section__cta {
        margin-bottom: 26px;
    }

    .get-in-touch-section__contacts {
        gap: 14px 36px;
    }

    .get-in-touch-section__contact,
    .get-in-touch-section__nb {
        font-size: 15px;
    }
}

/* Mobile
   ========================================================================== */
@media (max-width: 768px) {
    .get-in-touch-section {
        padding: 50px 0;
    }

    .get-in-touch-section__container {
        padding: 0 16px;
    }

    .get-in-touch-section__card {
        padding: 32px 22px;
    }

    .get-in-touch-section__title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .get-in-touch-section__description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .get-in-touch-section__cta {
        margin-bottom: 22px;
    }

    .get-in-touch-section__btn {
        width: 100%;
        max-width: 280px;
        padding: 13px 24px;
        font-size: 15px;
    }

    .get-in-touch-section__contacts {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 14px;
    }

    .get-in-touch-section__contact {
        font-size: 15px;
    }

    .get-in-touch-section__contact-icon {
        width: 24px;
        height: 24px;
    }

    .get-in-touch-section__contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .get-in-touch-section__nb {
        font-size: 13px;
    }
}
