.make-an-enquiry-section {
    width: 100%;
    box-sizing: border-box;
}

.make-an-enquiry-section .mae-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    /* Mobile: px 20, py 40 */
    padding: 40px 20px;
}

.make-an-enquiry-section .mae-arrows {
    width: 20px;
    height: 36px;
    flex: 0 0 auto;
}

.make-an-enquiry-section .mae-arrows svg {
    display: block;
    width: 100%;
    height: 100%;
}

.make-an-enquiry-section .mae-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    box-sizing: border-box;
    padding: 40px 20px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
}

.make-an-enquiry-section .mae-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: center;
}

.make-an-enquiry-section .mae-title {
    margin: 0;
    width: 100%;
    color: #000000;
    text-align: center;
    text-transform: capitalize;
    font-family: 'Lato', sans-serif;
    /* Mobile/H2 — 32/40 Black */
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 40px;
    word-break: break-word;
}

.make-an-enquiry-section .mae-intro {
    width: 100%;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: 400;
    word-break: break-word;
}

.make-an-enquiry-section .mae-intro p,
.make-an-enquiry-section .mae-intro a,
.make-an-enquiry-section .mae-intro strong,
.make-an-enquiry-section .mae-intro em {
    color: inherit;
    font: inherit;
}

.make-an-enquiry-section .mae-intro p {
    margin: 0;
}

.make-an-enquiry-section .mae-intro--desktop {
    display: none;
    color: #717174;
    font-size: 18px;
    line-height: 26px;
}

.make-an-enquiry-section .mae-intro--mobile {
    display: block;
    color: #404040;
    /* Mobile/Par — 16/24 */
    font-size: 16px;
    line-height: 24px;
}

.make-an-enquiry-section .mae-form {
    width: 100%;
}

.make-an-enquiry-section .mae-form .wpcf7,
.make-an-enquiry-section .mae-form .form-inner-wrap {
    width: 100%;
    max-width: 100%;
}

.make-an-enquiry-section .mae-form .form-inner-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.make-an-enquiry-section .mae-form .form-two-input {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.make-an-enquiry-section .mae-form .input-wrap {
    margin: 0;
    width: 100%;
}

.make-an-enquiry-section .mae-form .input-wrap p {
    margin: 0;
    color: #000000;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.make-an-enquiry-section .mae-form .input-wrap > p:first-of-type {
    margin-bottom: 6px;
}

.make-an-enquiry-section .mae-form .input-wrap > p:first-of-type span {
    color: inherit;
}

.make-an-enquiry-section .mae-form .input-wrap input[type="text"],
.make-an-enquiry-section .mae-form .input-wrap input[type="email"],
.make-an-enquiry-section .mae-form .input-wrap input[type="tel"],
.make-an-enquiry-section .mae-form .input-wrap textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 20px;
    border: 1px solid #c8c8ca;
    border-radius: 8px;
    background: #ffffff;
    color: #000000;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    outline: none;
}

.make-an-enquiry-section .mae-form .input-wrap textarea {
    resize: none;
    min-height: 152px;
}

.make-an-enquiry-section .mae-form .input-wrap input::placeholder,
.make-an-enquiry-section .mae-form .input-wrap textarea::placeholder {
    color: #9c9c9c;
    opacity: 1;
}

.make-an-enquiry-section .mae-form .btn-submit {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin: 0;
    width: 100%;
}

.make-an-enquiry-section .mae-form .btn-submit .call-form {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.make-an-enquiry-section .mae-form .btn-submit .call-form .pulse-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
}

.make-an-enquiry-section .mae-form .btn-submit .call-form .pulse-icon p {
    margin: 0;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: #5cb3b9;
    box-shadow: 0 0 0 #5cb3b9;
    -webkit-animation: mae-contactpulse 2s infinite;
    animation: mae-contactpulse 2s infinite;
}

.make-an-enquiry-section .mae-form .btn-submit .call-form .pulse-icon svg {
    display: block;
    width: 46px;
    height: 46px;
}

@-webkit-keyframes mae-contactpulse {
    0% {
        box-shadow: 0 0 0 0 #5cb3b9;
    }

    70% {
        box-shadow: 0 0 0 6px rgba(137, 124, 80, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(137, 124, 80, 0);
    }
}

@keyframes mae-contactpulse {
    0% {
        box-shadow: 0 0 0 0 #5cb3b9;
    }

    70% {
        box-shadow: 0 0 0 6px rgba(137, 124, 80, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(137, 124, 80, 0);
    }
}

.make-an-enquiry-section .mae-form .btn-submit .call-form-details p {
    margin: 0;
    font-family: 'Lato', sans-serif;
}

.make-an-enquiry-section .mae-form .btn-submit .call-form-details p:first-child {
    color: #717174;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
}

.make-an-enquiry-section .mae-form .btn-submit .call-form-details p:last-child,
.make-an-enquiry-section .mae-form .btn-submit .call-form-details a {
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-decoration: underline;
}

.make-an-enquiry-section .mae-form .btn-submit > p:last-of-type {
    width: 100%;
    max-width: none;
    margin: 0;
}

.make-an-enquiry-section .mae-form .input-wrap .btn,
.make-an-enquiry-section .mae-form input.wpcf7-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    border: none;
    padding: 16px 60px;
    border-radius: 12px;
    background: #5cb3b9;
    color: #ffffff;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color ease 200ms, color ease 200ms;
}

.make-an-enquiry-section .mae-form .input-wrap .btn:hover,
.make-an-enquiry-section .mae-form input.wpcf7-submit:hover {
    background: #1a454c;
    color: #ffffff;
}

.make-an-enquiry-section .mae-form .wpcf7-spinner {
    position: absolute;
}

.make-an-enquiry-section .mae-form .wpcf7-response-output {
    color: #000000;
}

/* Tablet: stacked, 60px L/R, desktop type */
@media (min-width: 768px) and (max-width: 1279px) {
    .make-an-enquiry-section .mae-inner {
        padding: 60px 60px;
    }

    .make-an-enquiry-section .mae-title {
        /* Desktop/H2 — 36/44 Black */
        font-size: 36px;
        font-weight: 900;
        line-height: 44px;
    }

    .make-an-enquiry-section .mae-intro--desktop {
        display: block;
        font-size: 18px;
        line-height: 26px;
    }

    .make-an-enquiry-section .mae-intro--mobile {
        display: none;
    }

    .make-an-enquiry-section .mae-form .input-wrap p {
        font-size: 18px;
        line-height: 26px;
    }

    .make-an-enquiry-section .mae-form .input-wrap input[type="text"],
    .make-an-enquiry-section .mae-form .input-wrap input[type="email"],
    .make-an-enquiry-section .mae-form .input-wrap input[type="tel"],
    .make-an-enquiry-section .mae-form .input-wrap textarea {
        font-size: 18px;
        line-height: 26px;
    }
}

/* Large desktop — frame: py 100, px 120, card 720 */
@media (min-width: 1280px) {
    .make-an-enquiry-section .mae-inner {
        /* 120 / 1440 */
        padding: 100px 8.333%;
        gap: 40px;
    }

    .make-an-enquiry-section .mae-card {
        width: 60%;
        max-width: 60%;
        padding: 60px;
        border-radius: 32px;
        gap: 40px;
    }

    .make-an-enquiry-section .mae-header {
        gap: 16px;
    }

    .make-an-enquiry-section .mae-title {
        /* Desktop/H2 — 36/44 Black */
        font-size: 36px;
        font-weight: 900;
        line-height: 44px;
    }

    .make-an-enquiry-section .mae-intro--desktop {
        display: block;
        color: #717174;
        font-size: 18px;
        line-height: 26px;
    }

    .make-an-enquiry-section .mae-intro--mobile {
        display: none;
    }

    .make-an-enquiry-section .mae-form .form-inner-wrap {
        gap: 20px;
    }

    .make-an-enquiry-section .mae-form .form-two-input {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .make-an-enquiry-section .mae-form .form-two-input .input-wrap {
        flex: 1 1 0;
        min-width: 0;
    }

    .make-an-enquiry-section .mae-form .input-wrap p {
        /* Desktop/H6 — 18/26 Bold */
        font-size: 18px;
        line-height: 26px;
    }

    .make-an-enquiry-section .mae-form .input-wrap input[type="text"],
    .make-an-enquiry-section .mae-form .input-wrap input[type="email"],
    .make-an-enquiry-section .mae-form .input-wrap input[type="tel"],
    .make-an-enquiry-section .mae-form .input-wrap textarea {
        font-size: 18px;
        line-height: 26px;
    }

    .make-an-enquiry-section .mae-form .btn-submit {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .make-an-enquiry-section .mae-form .btn-submit .call-form {
        width: auto;
        justify-content: flex-start;
    }

    .make-an-enquiry-section .mae-form .btn-submit > p:last-of-type {
        width: auto;
        flex: 0 0 auto;
    }

    .make-an-enquiry-section .mae-form .input-wrap .btn,
    .make-an-enquiry-section .mae-form input.wpcf7-submit {
        width: auto;
        border-radius: 600px;
    }
}
