/* CR 5618 – Clarity UI/UX overrides */

/* ========== Header: logo left, Click2Call + Live Chat right ========== */
.header .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

/* Soft elevation under sticky header only after scroll */
.header.active {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.header .header-top .logo-link {
    flex: 0 0 auto;
    display: block;
}

.header .header-top .logo {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.header .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 8px;
    margin-left: auto;
}

.header .header-actions .click2call-btn,
.header .header-actions .livechat-btn {
    position: relative;
    bottom: auto;
    right: auto;
    z-index: auto;
    border: none;
    cursor: pointer;
    outline: none;
    /* Stronger elevation, no border ring */
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.42),
        0 3px 8px rgba(0, 0, 0, 0.28);
}

.header .header-actions .click2call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-sizing: border-box;
    height: 49px;
    min-height: 49px;
    padding: 0 1.35rem 0 1.2rem;
    line-height: 1;
    background-color: #9b0030;
    color: #fff;
    border-radius: 999px;
    font-family: Roboto, Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: background-color .2s ease, transform .15s ease, box-shadow .2s ease;
}

.header .header-actions .click2call-btn:hover {
    background-color: #7f0027;
    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.32);
}

.header .header-actions .click2call-btn-icon {
    position: absolute;
    left: 1.15rem;
    bottom: 8px;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    margin: 0;
    line-height: 0;
    pointer-events: none;
}

.header .header-actions .click2call-btn-icon img {
    display: block;
    width: 28px;
    height: 28px;
}

.header .header-actions .click2call-btn-label {
    display: inline-flex;
    align-items: center;
    padding-left: 30px;
    white-space: nowrap;
    line-height: 1;
}

.header .header-actions .click2call-btn-2 {
    display: block;
    width: auto;
    height: 1.2em;
    margin: 0 1px;
}

.header .header-actions .click2call-btn-call {
    color: #fff;
}

/* Live Chat: match Click2Call button size */
.header .header-actions .livechat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-sizing: border-box;
    height: 49px;
    min-height: 49px;
    padding: 0 1.35rem 0 1.2rem;
    line-height: 1;
    background-color: #9b0030;
    color: #fff;
    border-radius: 999px;
    font-family: Roboto, Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: background-color .2s ease, transform .15s ease, box-shadow .2s ease;
}

.header .header-actions .livechat-btn:hover {
    background-color: #7f0027;
    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.32);
}

.header .header-actions .livechat-btn.is-chatting,
.header .header-actions .livechat-btn.has-unread {
    background-color: #7f0027;
}

.header .header-actions .livechat-btn-icon {
    position: absolute;
    left: 1.15rem;
    bottom: 8px;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    color: #ff9a99; /* same pink as Click2Call phone icon */
    margin: 0;
    line-height: 0;
    pointer-events: none;
}

.header .header-actions .livechat-btn-icon svg {
    width: 32px;
    height: 32px;
    display: block;
    shape-rendering: geometricPrecision;
}

.header .header-actions .livechat-btn-label {
    white-space: nowrap;
    line-height: 1;
    padding-left: 34px;
}

.header .header-actions .livechat-btn-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.35rem;
    margin-left: 2px;
    margin-bottom: 0;
    border-radius: 999px;
    background: #fff;
    color: #9b0030;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.header .header-actions .livechat-btn-badge[hidden] {
    display: none !important;
}

@media (max-width: 991.98px) {
    .header .header-actions {
        gap: 6px;
    }

    .header .header-actions .click2call-btn,
    .header .header-actions .livechat-btn {
        height: 40px;
        min-height: 40px;
    }

    .header .header-actions .click2call-btn,
    .header .header-actions .livechat-btn {
        padding: 0 1rem 0 1rem;
        font-size: 15px;
        gap: 0;
    }

    .header .header-actions .click2call-btn-icon,
    .header .header-actions .livechat-btn-icon {
        left: 0.9rem;
        bottom: 6px;
    }

    .header .header-actions .click2call-btn-label,
    .header .header-actions .livechat-btn-label {
        padding-left: 26px;
    }

    .header .header-actions .click2call-btn-icon img {
        width: 24px;
        height: 24px;
    }

    .header .header-actions .livechat-btn-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 575.98px) {
    .header .header-top {
        gap: 8px;
    }

    .header .header-actions {
        gap: 4px;
    }

    .header .header-actions .click2call-btn,
    .header .header-actions .livechat-btn {
        height: 34px;
        min-height: 34px;
    }

    .header .header-actions .click2call-btn,
    .header .header-actions .livechat-btn {
        padding: 0 0.85rem 0 0.85rem;
        font-size: 13px;
        gap: 0;
    }

    .header .header-actions .click2call-btn-icon,
    .header .header-actions .livechat-btn-icon {
        left: 0.75rem;
        bottom: 5px;
    }

    .header .header-actions .click2call-btn-label,
    .header .header-actions .livechat-btn-label {
        padding-left: 22px;
    }

    .header .header-actions .click2call-btn-icon img {
        width: 20px;
        height: 20px;
    }

    .header .header-actions .livechat-btn-icon svg {
        width: 24px;
        height: 24px;
    }

    .header .header-actions .livechat-btn-badge {
        min-width: 1.1rem;
        height: 1.1rem;
        font-size: 10px;
    }
}

/* Consent popup near header (top-right), not bottom */
.live-chat {
    top: 5.25rem;
    bottom: auto !important;
    right: 1rem;
}

@media (max-width: 576px) {
    .live-chat {
        top: 4.75rem;
        left: auto;
        right: 0.5rem;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        min-width: min(95%, 337px);
        max-width: calc(100% - 1rem);
    }
}

/* Mobile: keep Zendesk chat within the viewport so the message box stays usable */
@media (max-width: 768px) {
    iframe#webWidget {
        max-height: calc(100vh - env(safe-area-inset-bottom, 0px)) !important;
        max-height: calc(100dvh - env(safe-area-inset-bottom, 0px)) !important;
    }
}

/* ========== Click2Call: always center on screen ========== */
#click2call-modal.remodal-is-initialized {
    display: inline-block !important;
    vertical-align: middle;
    max-height: 92vh;
    overflow-x: hidden;
    overflow-y: auto;
    margin-bottom: 0;
    text-align: left;
}

/* Click2Call logo ~20% smaller (349px → 279px) */
#click2call-modal .c2c-img {
    display: block;
    width: 100%;
    max-width: 279px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure wrapper keeps vertical centering space */
body .remodal-wrapper {
    padding: 16px;
    box-sizing: border-box;
    text-align: center;
}

body .remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    content: "";
}
#click2call-modal .c2c-checkbox-box > label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 8px 0;
    min-height: 44px;
}

#click2call-modal .c2c-checkbox {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid #c3c2c1;
    border-radius: 3px;
    background: #fff;
    position: relative;
    accent-color: #CF003D;
}

#click2call-modal .c2c-checkbox:checked {
    border-color: #CF003D;
    background: #CF003D;
}

#click2call-modal .c2c-checkbox:checked:after {
    content: '\2714';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

/* Required note: step1 = mobile only, step2 = desktop (+ mobile step2 if shown) */
#click2call-modal .c2c-required-note--step1 {
    display: none;
    margin: 12px 0 8px;
}

#click2call-modal .c2c-hours-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #CF003D;
    border-radius: 4px;
    padding: 10px 12px;
    box-sizing: border-box;
}

#click2call-modal .c2c-note-required {
    margin: 0 0 8px;
    padding: 0;
    font-size: 12px;
    line-height: 1.35;
    color: #767e85;
}

#click2call-modal .c2c-hours-emphasis {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#click2call-modal .c2c-hours-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #CF003D;
    margin-bottom: 2px;
    letter-spacing: 0.02em;
}

#click2call-modal .c2c-hours-line {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: #4a4848;
    font-weight: 600;
}

#click2call-modal .c2c-hours-line strong {
    color: #CF003D;
    font-weight: 700;
}

#click2call-modal .c2c-captcha-hours-row {
    display: block;
    margin-top: 10px;
}

#click2call-modal .c2c-recaptcha-wrap {
    margin-top: 10px;
}

/* Datetime: shared label on mobile, per-field labels on desktop */
#click2call-modal .c2c-datetime-shared-label {
    display: none;
}

#click2call-modal .c2c-title-date-full,
#click2call-modal .c2c-title-hours-full {
    display: block;
}

#click2call-modal .c2c-checkbox-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #767e85;
}

#click2call-modal .c2c-checkbox-text a {
    font-size: 16px;
    font-weight: 400;
    color: #767e85;
    text-decoration: underline;
}

/* ========== Click2Call: clearer close button ========== */
#click2call-modal .remodal-close {
    width: 52px;
    height: 52px;
    top: 2px;
    right: 2px;
    color: #333;
    opacity: 1;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    text-decoration: none;
}

#click2call-modal .remodal-close:before {
    content: "\00d7";
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    color: #333;
    text-align: center;
}

#click2call-modal .remodal-close:hover,
#click2call-modal .remodal-close:focus {
    color: #000;
    background: transparent;
}

#click2call-modal .remodal-close:hover:before,
#click2call-modal .remodal-close:focus:before {
    color: #000;
}

/* ========== Click2Call: reserved-height validation errors ========== */
#click2call-modal .c2c-error-message {
    display: block !important;
    visibility: hidden;
    min-height: 1.25em;
    line-height: 1.25;
    margin: 2px 0 0;
    color: #cf003d;
    font-size: 12px;
}

#click2call-modal .c2c-error-message.is-visible {
    visibility: visible;
}

/* ========== Click2Call: mobile 2-step ========== */
.c2c-step-nav {
    display: none;
    margin-top: 16px;
}

.c2c-step-nav .c2c-step-btn,
#click2call-modal .c2c-submit-wrapper .c2c-step-back {
    display: none;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #CF003D;
    color: #fff;
    text-align: center;
}

#click2call-modal .c2c-submit-wrapper .c2c-step-back {
    background-color: #767e85;
    border-radius: 0;
}

.c2c-step-nav .c2c-step-btn:disabled {
    background-color: #b0b0b0;
    cursor: not-allowed;
}

#click2call-modal .c2c-subtitle-guide {
    display: block;
}

/* ΝΑΙ / ΟΧΙ radios – custom (overrides click2call input appearance:none) */
#click2call-modal .c2c-radio-row .c2c-input-box {
    display: inline-flex;
    align-items: center;
}

#click2call-modal .c2c-input-box .c2c-input-radio {
    -webkit-appearance: none !important;
    appearance: none !important;
    display: inline-block;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    margin: 0 6px 0 0;
    padding: 0;
    cursor: pointer;
    vertical-align: middle;
    border: 2px solid #c3c2c1;
    border-radius: 50%;
    background: #fff;
    position: relative;
    flex-shrink: 0;
    outline: none;
}

#click2call-modal .c2c-input-box .c2c-input-radio:checked {
    border-color: #CF003D;
}

#click2call-modal .c2c-input-box .c2c-input-radio:checked:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CF003D;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

#click2call-modal .c2c-input-box .c2c-input-radio ~ label {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 576px) {
    #click2call-modal {
        padding: 28px 4% 16px;
        max-height: 92vh;
        overflow-x: hidden;
        overflow-y: auto;
        /* keep inline-block so Remodal vertical-align:middle centering works */
        display: inline-block;
        vertical-align: middle;
        width: 100%;
        box-sizing: border-box;
    }

    #click2call-modal .c2c-img {
        max-width: 160px;
        margin: 0 auto;
    }

    #click2call-modal .c2c-subtitle {
        font-size: 14px;
        margin-top: 6px;
    }

    /* Step 2: hide intro subtitle */
    #click2call-modal.c2c-mobile-step-2 #click2call-form > h3.c2c-subtitle {
        display: none !important;
    }

    #click2call-modal .form-success {
        text-align: center;
        padding: 20px 12px 28px;
        margin: 8px auto 0;
        max-width: 420px;
    }

    #click2call-modal .form-success .c2c-success-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    #click2call-modal .form-success .c2c-success-title {
        font-size: 20px;
    }

    #click2call-modal .form-success .c2c-success-text {
        font-size: 15px;
    }

    #click2call-modal .form-error-result {
        height: auto !important;
        overflow: visible !important;
        text-align: left;
        padding: 8px 0;
    }

    /* Step 2: tighter vertical spacing */
    #click2call-modal.c2c-mobile-step-2 {
        padding-top: 28px;
        padding-bottom: 12px;
    }

    #click2call-modal.c2c-mobile-step-2 .c2c-img {
        max-width: 128px;
        margin-bottom: 0;
    }

    #click2call-modal.c2c-mobile-step-2 #click2call-form.mt-4 {
        margin-top: 0.5rem !important;
    }

    #click2call-modal.c2c-mobile-step-2 .form-wrapper {
        margin-top: 0 !important;
    }

    #click2call-modal.c2c-mobile-step-2 .c2c-checkbox-box > label {
        padding: 4px 0;
        min-height: 0;
        margin-bottom: 4px;
        gap: 8px;
    }

    #click2call-modal.c2c-mobile-step-2 .consent-text {
        margin: 4px 0 6px;
        font-size: 14px;
        line-height: 1.35;
    }

    #click2call-modal.c2c-mobile-step-2 .c2c-error-message {
        min-height: 0;
        margin: 0;
        line-height: 1.2;
        font-size: 11px;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
    }

    #click2call-modal.c2c-mobile-step-2 .c2c-error-message.is-visible {
        margin: 2px 0 4px;
        min-height: 1.2em;
        max-height: 4em;
        visibility: visible;
        overflow: visible;
    }

    #click2call-modal.c2c-mobile-step-2 .c2c-recaptcha-wrap {
        margin-top: 8px;
        margin-bottom: 0;
    }

    #click2call-modal.c2c-mobile-step-2 .c2c-submit-wrapper {
        margin-top: 12px !important;
    }

    #click2call-modal .c2c-required-note--step1 {
        display: block;
    }

    #click2call-modal .c2c-required-note--step2 {
        display: none !important;
    }

    #click2call-modal .c2c-captcha-hours-row {
        margin-top: 8px;
    }

    #click2call-modal .c2c-hours-box {
        padding: 8px 10px;
    }

    #click2call-modal .c2c-hours-label {
        font-size: 12px;
    }

    #click2call-modal .c2c-hours-line {
        font-size: 12px;
    }

    #click2call-modal .c2c-checkbox-text,
    #click2call-modal .c2c-checkbox-text a {
        font-weight: 700;
    }

    #click2call-modal .form-wrapper {
        margin-top: 10px !important;
        overflow: visible;
        flex: 1;
    }

    #click2call-modal .c2c-step {
        display: none;
    }

    #click2call-modal.c2c-mobile-step-1 .c2c-step-1,
    #click2call-modal.c2c-mobile-step-2 .c2c-step-2 {
        display: block;
    }

    #click2call-modal .c2c-step-nav {
        display: block;
    }

    #click2call-modal.c2c-mobile-step-1 .c2c-step-continue {
        display: block;
        width: 100%;
    }

    #click2call-modal.c2c-mobile-step-1 .c2c-step-back,
    #click2call-modal.c2c-mobile-step-1 .c2c-submit-wrapper {
        display: none !important;
    }

    #click2call-modal.c2c-mobile-step-2 .c2c-step-continue {
        display: none;
    }

    #click2call-modal.c2c-mobile-step-2 .c2c-submit-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        flex-wrap: wrap;
    }

    #click2call-modal.c2c-mobile-step-2 .c2c-submit-wrapper .c2c-step-back {
        display: inline-block;
        width: auto;
        min-width: 100px;
        padding: 14px 20px;
        margin: 0;
        flex-shrink: 0;
        border-radius: 0;
    }

    #click2call-modal.c2c-mobile-step-2 .c2c-submit-wrapper .c2c-btn {
        margin: 0;
        flex-shrink: 0;
    }

    #click2call-modal .c2c-input-box {
        margin-bottom: 8px;
    }

    #click2call-modal .c2c-datetime-row {
        display: flex;
        flex-wrap: wrap;
        margin-left: -6px;
        margin-right: -6px;
    }

    #click2call-modal .c2c-datetime-shared-label {
        display: block;
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding-left: 6px;
        padding-right: 6px;
        margin-bottom: 6px;
    }

    #click2call-modal .c2c-datetime-shared-label .c2c-title {
        font-size: 13px;
        line-height: 1.3;
    }

    #click2call-modal .c2c-datetime-row > .c2c-input-box {
        padding-left: 6px;
        padding-right: 6px;
        flex: 0 0 50%;
        max-width: 50%;
    }

    #click2call-modal .c2c-title-date-full,
    #click2call-modal .c2c-title-hours-full {
        display: none !important;
    }

    /* Larger ΝΑΙ / ΟΧΙ touch targets on mobile */
    #click2call-modal .c2c-radio-row .c2c-input-box {
        display: flex;
        align-items: center;
    }

    #click2call-modal .c2c-input-box .c2c-input-radio {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
        margin: 0;
    }

    #click2call-modal .c2c-input-box .c2c-input-radio:checked:after {
        width: 12px;
        height: 12px;
    }

    #click2call-modal .c2c-input-box .c2c-input-radio ~ label {
        font-size: 16px;
        font-weight: 700;
        padding: 10px 16px 10px 8px;
        min-height: 44px;
    }

    #click2call-modal .c2c-radio-row .col-2 {
        flex: 0 0 auto;
        max-width: none;
        width: auto;
        margin-right: 24px;
        display: flex;
        align-items: center;
    }

    #click2call-modal .consent-text {
        font-size: 14px;
        line-height: 1.45;
        max-height: none;
        overflow: visible;
    }

    #click2call-modal .c2c-required-note--step1 {
        display: block;
    }

    #click2call-modal .c2c-required-note--step2 {
        display: none !important;
    }

    #click2call-modal .c2c-note {
        font-size: 12px;
    }

    #click2call-modal .g-recaptcha {
        transform: scale(0.9);
        transform-origin: left top;
    }
}

@media (min-width: 577px) {
    /* Compact desktop modal – avoid inner vertical scroll */
    #click2call-modal.remodal-is-initialized,
    #click2call-modal {
        padding: 24px 4% 16px !important;
        max-height: 96vh;
        overflow-y: auto;
    }

    #click2call-modal .c2c-img {
        max-width: 220px;
        margin-bottom: 0;
    }

    #click2call-modal .c2c-subtitle {
        margin-top: 4px;
        margin-bottom: 0;
        font-size: 14px;
    }

    #click2call-modal .form-wrapper {
        margin-top: 8px !important;
        overflow: visible;
    }

    #click2call-modal #click2call-form.mt-4 {
        margin-top: 0.5rem !important;
    }

    #click2call-modal .c2c-input-box {
        margin-bottom: 4px;
    }

    #click2call-modal .c2c-input-box label {
        padding-top: 2px;
        padding-bottom: 2px;
    }

    #click2call-modal .c2c-error-message {
        min-height: 0;
        max-height: 0;
        margin: 0;
        overflow: hidden;
        line-height: 1.2;
        font-size: 11px;
    }

    #click2call-modal .c2c-error-message.is-visible {
        min-height: 1.1em;
        max-height: 3em;
        margin: 1px 0 2px;
        overflow: visible;
    }

    #click2call-modal .consent-text {
        margin: 4px 0 6px;
        line-height: 1.35;
        font-size: 12px;
    }

    #click2call-modal .c2c-captcha-hours-row {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-start;
        gap: 16px;
        margin-top: 8px;
        margin-bottom: 0;
    }

    #click2call-modal .c2c-required-note--step1 {
        display: none !important;
    }

    #click2call-modal .c2c-required-note--step2 {
        display: block !important;
        margin: 0;
        flex: 1 1 auto;
        min-width: 0;
    }

    #click2call-modal .c2c-recaptcha-wrap {
        margin-top: 0 !important;
        margin-bottom: 0;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

    #click2call-modal .c2c-hours-box {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 8px 12px;
    }

    #click2call-modal .c2c-note-required {
        margin-bottom: 6px;
        font-size: 11px;
        line-height: 1.35;
    }

    #click2call-modal .c2c-hours-label {
        font-size: 12px;
        margin-bottom: 4px;
    }

    #click2call-modal .c2c-hours-line {
        font-size: 12px;
        line-height: 1.35;
    }

    #click2call-modal .c2c-submit-wrapper {
        margin-top: 12px !important;
    }

    #click2call-modal .c2c-btn {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    #click2call-modal .c2c-step {
        display: block !important;
    }

    #click2call-modal .c2c-step-nav {
        display: none !important;
    }

    #click2call-modal .c2c-submit-wrapper .c2c-step-back {
        display: none !important;
    }

    #click2call-modal .c2c-datetime-shared-label {
        display: none !important;
    }

    #click2call-modal .c2c-title-date-full,
    #click2call-modal .c2c-title-hours-full {
        display: block !important;
    }

    /* Spacing: Ναι/Όχι consistent with other form gaps */
    #click2call-modal .c2c-radio-row {
        margin-top: 6px;
        margin-bottom: 10px;
    }

    #click2call-modal .c2c-radio-row > .col-12.c2c-input-box {
        margin-bottom: 6px;
    }

    #click2call-modal .c2c-radio-row .col-2.c2c-input-box {
        margin-bottom: 0;
        margin-top: 0;
    }

    #click2call-modal .c2c-step-1 .c2c-step-nav,
    #click2call-modal .c2c-step-1 .c2c-required-note--step1 {
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    #click2call-modal .c2c-step-2 {
        margin-top: 0;
    }

    #click2call-modal .c2c-checkbox-box {
        margin-top: 0;
    }

    #click2call-modal .c2c-checkbox-box > label {
        padding-top: 4px;
        padding-bottom: 4px;
        min-height: 0;
        margin-bottom: 0;
        margin-top: 2px;
    }

    #click2call-modal .c2c-checkbox-text,
    #click2call-modal .c2c-checkbox-text a {
        color: #767e85;
        font-weight: 400;
        font-size: 14px;
    }

    #click2call-modal .c2c-checkbox-text a {
        text-decoration: underline;
    }

    body .remodal-wrapper {
        padding: 8px;
    }
}

/* ========== Live Chat: terms ========== */
.live-chat .live-chat-content .accept-terms {
    display: flex;
    align-items: center;
    min-height: 44px;
}

.live-chat .live-chat-content .accept-terms input[type="checkbox"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    padding: 0;
    margin: 0 0.75rem 0 0;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid #c3c2c1;
    border-radius: 3px;
    background: #fff;
    position: relative;
    outline: none;
    accent-color: #CF003D;
    align-self: center;
}

.live-chat .live-chat-content .accept-terms input[type="checkbox"]:checked {
    border-color: #CF003D;
    background: #CF003D;
}

.live-chat .live-chat-content .accept-terms input[type="checkbox"]:checked:after {
    content: '\2714';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.live-chat .live-chat-content .accept-terms label {
    font-size: 13px;
    font-weight: 700;
    color: #4a4848;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.live-chat .live-chat-content .accept-terms label a {
    font-size: 13px;
    font-weight: 700;
    color: #4a4848;
    margin-left: 0.25em;
}

@media (max-width: 576px) {
    .live-chat .live-chat-content .accept-terms label,
    .live-chat .live-chat-content .accept-terms label a {
        font-size: 14px;
    }

    .live-chat .live-chat-content > p {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* ========== Live Chat: grey disabled CTA (still clickable for validation) ========== */
.live-chat .live-chat-content .open-chat.is-disabled,
.live-chat .live-chat-content .open-chat[disabled],
.live-chat .live-chat-content .open-chat:disabled {
    background-color: #b0b0b0;
    color: #f5f5f5;
    opacity: 1;
    cursor: pointer;
}

.live-chat .live-chat-content .live-chat-terms-error {
    display: none;
    margin: 0 0 10px;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    color: #CF003D;
    background: #fde8ee;
    border: 1px solid #CF003D;
    border-radius: 4px;
}

.live-chat .live-chat-content .live-chat-terms-error:not([hidden]) {
    display: block;
}

.live-chat .live-chat-content .accept-terms.has-error {
    outline: 2px solid #CF003D;
    outline-offset: 4px;
    border-radius: 4px;
}

/* ========== Live Chat: clearer close ========== */
.live-chat .live-chat-header .close-chat {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

.live-chat .live-chat-header .close-chat img {
    width: 18px;
    height: 18px;
}

.live-chat .live-chat-header .close-chat:hover {
    background: rgba(255, 255, 255, 0.45);
}

/* Logo + Live Chat title in white tab; keep fuchsia header behind */
.live-chat .live-chat-header {
    padding: 0.75rem 1rem 0;
    background-color: #CF003D;
    align-items: flex-end;
    position: relative;
}

.live-chat .live-chat-header .live-chat-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 1 auto;
    margin: 0 1rem 0 0;
    margin-bottom: -1px;
    padding: 0.75rem 1rem 0.65rem;
    background-color: #f4f4f4;
    border-radius: 5px 5px 0 0;
}

.live-chat .live-chat-header .live-chat-logo img {
    display: block;
    max-height: 40px;
    width: auto;
}

.live-chat .live-chat-header .live-chat-title {
    font-size: 15px;
    font-weight: 700;
    color: #CE1344;
    line-height: 1.2;
    white-space: nowrap;
    text-transform: uppercase;
}

.live-chat .live-chat-header .close-chat {
    top: 0.85rem;
    right: 1rem;
    transform: none;
    background: rgba(255, 255, 255, 0.25);
}

.live-chat .live-chat-header .close-chat img {
    filter: none;
    opacity: 1;
}

.live-chat .live-chat-header .close-chat:hover {
    background: rgba(255, 255, 255, 0.45);
}

.live-chat .live-chat-header .close-chat:hover img {
    opacity: 1;
}

/* ========== Live Chat: overlay backdrop ========== */
.live-chat-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
}

.live-chat-overlay.is-visible {
    display: block;
}

.live-chat {
    z-index: 10000;
}

/* Desktop: wider popup so terms label fits at larger font */
@media (min-width: 577px) {
    .live-chat {
        min-width: 400px;
        max-width: 400px;
    }

    .live-chat .live-chat-content .accept-terms label,
    .live-chat .live-chat-content .accept-terms label a {
        font-size: 15px;
    }
}

/* ========== Step 0: longer InterestedIn title ========== */
.energy-selection-panel .es-title {
    line-height: 1.35;
    max-width: 100%;
    word-wrap: break-word;
}

@media (max-width: 575.98px) {
    .energy-selection-panel .es-title {
        font-size: 16px;
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* ========== Dropdowns: ensure arrow area opens select ========== */
.form-line .i-select-wrap .after {
    position: relative;
    display: block;
}

.form-line .i-select-wrap .after select {
    position: relative;
    z-index: 2;
    width: 100%;
    cursor: pointer;
    padding-right: 76px;
}

.form-line .i-select-wrap .after:after {
    pointer-events: none;
    z-index: 1;
}

#click2call-modal .c2c-select {
    cursor: pointer;
    background-position: right 12px center;
    background-repeat: no-repeat;
    padding-right: 36px;
}

#click2call-modal .c2c-datepicker {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23767e85' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    padding-right: 36px;
}

/* ========== Click2Call: success message ========== */
#click2call-modal .c2c-result-row {
    margin: 0;
}

#click2call-modal .form-success {
    text-align: center;
    padding: 28px 20px 36px;
    margin: 12px auto 8px;
    max-width: 440px;
    height: auto !important;
    overflow: visible !important;
}

#click2call-modal .form-success .c2c-success-icon {
    display: block;
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #CF003D;
    position: relative;
}

#click2call-modal .form-success .c2c-success-icon:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 46%;
    width: 14px;
    height: 24px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: translate(-50%, -60%) rotate(45deg);
    -webkit-transform: translate(-50%, -60%) rotate(45deg);
}

#click2call-modal .form-success .c2c-success-title {
    margin: 0 0 8px;
    padding: 0;
    font-size: 22px;
    font-weight: 700;
    color: #4a4848;
    line-height: 1.3;
}

#click2call-modal .form-success .c2c-success-text {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    color: #767e85;
    line-height: 1.45;
}

#click2call-modal .form-error-result {
    height: auto !important;
    overflow: visible !important;
    text-align: left;
    padding: 8px 0;
    color: #cf003d;
}
