/* =========================================================
   Contact page layout
   ========================================================= */
.contact-body {
    background: linear-gradient(180deg, #242730 0%, #202228 45%, #17191d 100%);
}

.contact-page {
    padding: 20px 0 30px;
}

.contact-surface {
    background: linear-gradient(180deg, rgba(69, 72, 84, 0.92), rgba(48, 50, 58, 0.96));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 0 0 22px 22px;
    box-shadow: var(--shadow);
    padding: 26px 24px 34px;
}

/* =========================================================
   Banner
   ========================================================= */
.contact-banner-wrap {
    width: min(100%, 1020px);
    margin: 0 auto 18px;
    background: #fff;
    padding: 10px 16px;
    border-radius: 2px;
}

.contact-banner-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* =========================================================
   Main panel
   ========================================================= */
.contact-panel {
    background: rgba(33, 34, 40, 0.22);
    border-radius: 18px;
    padding: 22px 18px 26px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 26px;
    align-items: start;
}

/* =========================================================
   Left info side
   ========================================================= */
.contact-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-intro {
    color: #d2d4dc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 780px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.location-card {
    min-height: 180px;
    background: linear-gradient(180deg, #4a4c58, #40424d);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 18px 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
    overflow: hidden;
}

.location-card.featured {
    grid-column: 1 / -1;
}

.location-name {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #f4f4f6;
    line-height: 1.4;
}

.location-line {
    color: #d6d7dd;
    font-size: 0.95rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* =========================================================
   Right form side
   ========================================================= */
.contact-form-card {
    background: linear-gradient(180deg, #4a4c58, #40424d);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 18px 16px 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.contact-form {
    display: grid;
    gap: 14px;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-size: 0.98rem;
    font-weight: 500;
    color: #f3f3f6;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(67, 69, 78, 0.9);
    color: #fff;
    border-radius: 0;
    padding: 12px 12px;
    font-size: 1rem;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255,255,255,0.42);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
}

.submit-btn {
    border: none;
    background: linear-gradient(180deg, #5a5c67, #3d3f49);
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}

/* =========================================================
   Floating Chat Support / Live Chat
   ========================================================= */
.chatbot-fixed-wrap {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-pill {
    background: #ffffff;
    color: #1f2937;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
    white-space: nowrap;
    cursor: pointer;
}

.chat-bot {
    width: 76px;
    height: 76px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, #ff5b5b, #e92828);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(239, 68, 68, 0.48);
    padding: 9px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.chat-bot:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 18px 38px rgba(239, 68, 68, 0.58);
    filter: brightness(1.03);
}

.chat-support-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

.chat-face {
    display: none !important;
}

.chat-window {
    position: absolute !important;
    right: 0 !important;
    bottom: 92px !important;
    width: 365px !important;
    height: 465px !important;
    max-width: calc(100vw - 32px) !important;
    max-height: calc(100vh - 125px) !important;
    background: #111827;
    color: #f8fafc;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 70px rgba(0,0,0,0.46);
    overflow: hidden !important;
    display: none !important;
    flex-direction: column !important;
}

.chatbot-fixed-wrap.is-open .chat-window {
    display: flex !important;
}

.chat-window-header {
    flex: 0 0 auto !important;
    background: linear-gradient(180deg, #dc2626, #991b1b);
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.chat-window-header strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 900;
}

.chat-window-header span {
    display: block;
    margin-top: 2px;
    font-size: 0.74rem;
    color: rgba(255,255,255,0.78);
}

.chat-close-btn {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 10px;
    background: rgba(255,255,255,0.16);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.chat-window-body {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    padding: 10px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.chat-window-body::-webkit-scrollbar,
.chat-options::-webkit-scrollbar {
    width: 6px;
}

.chat-window-body::-webkit-scrollbar-thumb,
.chat-options::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.18);
    border-radius: 999px;
}

.chat-message {
    max-width: 88%;
    padding: 9px 11px;
    border-radius: 13px;
    font-size: 0.84rem;
    line-height: 1.36;
}

.chat-message.bot {
    background: #1f2937;
    color: #f8fafc;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.chat-message.user {
    background: #dc2626;
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-options {
    flex: 0 0 auto !important;
    padding: 8px 12px !important;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
    max-height: 126px !important;
    overflow-y: auto !important;
    background: #111827;
}

.chat-options:empty {
    display: none !important;
    padding: 0 !important;
    border-top: 0 !important;
    max-height: 0 !important;
}

.chat-option-btn {
    border: 1px solid rgba(255,255,255,0.12);
    background: #1f2937;
    color: #f8fafc;
    border-radius: 11px;
    padding: 8px 10px;
    text-align: left;
    font-size: 0.82rem;
    line-height: 1.3;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.chat-option-btn:hover {
    background: #263244;
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-1px);
}

.chat-option-btn.connect-agent {
    background: rgba(220,38,38,0.14);
    border-color: rgba(248,113,113,0.4);
    color: #fecaca;
}

.chat-agent-box {
    display: none;
    flex: 0 0 auto !important;
    padding: 10px 12px 12px !important;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: #0f172a;
}

.chat-agent-box.is-visible {
    display: block !important;
}

.chat-agent-box .chat-message {
    max-width: 100%;
    margin-bottom: 8px;
    padding: 8px 10px;
    font-size: 0.82rem;
}

.chat-agent-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
    margin-top: 0 !important;
}

.chat-agent-form input,
.chat-agent-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.12);
    background: #1f2937;
    color: #fff;
    border-radius: 10px;
    padding: 8px 10px;
    font-family: inherit;
    font-size: 0.84rem;
    outline: none;
}

.chat-agent-form input {
    height: 36px;
}

.chat-agent-form input:focus,
.chat-agent-form textarea:focus {
    border-color: rgba(248,113,113,0.72);
}

.chat-agent-form textarea {
    height: 62px !important;
    min-height: 62px !important;
    max-height: 62px !important;
    resize: none !important;
}

.chat-agent-form button {
    width: 100%;
    min-height: 38px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(180deg, #ef4444, #b91c1c);
    color: #fff;
    padding: 9px 14px;
    font-weight: 900;
    cursor: pointer;
    display: block !important;
}

.chat-agent-form button:hover {
    filter: brightness(1.05);
}

.chat-agent-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.chat-agent-note {
    display: block;
    margin-top: 6px;
    color: #9ca3af;
    font-size: 0.68rem;
    line-height: 1.25;
}

.chat-connected-banner {
    background: linear-gradient(180deg, rgba(15, 118, 110, 0.95), rgba(17, 94, 89, 0.95));
    border: 1px solid rgba(94, 234, 212, 0.32);
    color: #ffffff;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 8px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.22);
    animation: chatConnectedFade 0.28s ease both;
}

.chat-connected-banner strong {
    display: block;
    font-size: 0.84rem;
    font-weight: 900;
    margin-bottom: 3px;
}

.chat-connected-banner span {
    display: block;
    color: rgba(255,255,255,0.86);
    font-size: 0.72rem;
    line-height: 1.3;
}

.chat-typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    height: 12px;
}

.chat-typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    animation: chatTypingBounce 1s infinite ease-in-out;
}

.chat-typing-indicator span:nth-child(2) {
    animation-delay: 0.15s;
}

.chat-typing-indicator span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes chatTypingBounce {
    0%, 80%, 100% {
        opacity: 0.35;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

@keyframes chatConnectedFade {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-card.featured {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .contact-surface {
        padding-left: 16px;
        padding-right: 16px;
    }

    .form-row.two-cols {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 1.7rem;
    }

    .chatbot-fixed-wrap {
        right: 16px;
        bottom: 16px;
        gap: 8px;
    }

    .chat-pill {
        padding: 10px 14px;
        font-size: 0.88rem;
    }

    .chat-bot {
        width: 64px;
        height: 64px;
        padding: 8px;
    }

    .chat-window {
        bottom: 78px !important;
        width: calc(100vw - 32px) !important;
        height: 72vh !important;
        max-height: 520px !important;
    }
}

@media (max-width: 480px) {
    .chat-pill {
        display: inline-flex !important;
    }

    .chat-window {
        right: -2px !important;
        bottom: 76px !important;
        width: calc(100vw - 24px) !important;
        height: 74vh !important;
    }
}


/* =========================================================
   Floating chat prompt update
   - Shows on mobile
   - Displays "Chat with a live agent"
   - Pops every 10 seconds, fades automatically, stays visible on hover/focus
   ========================================================= */
.chat-pill {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px) scale(.96);
    animation: eaChatPromptCycle 10s ease-in-out infinite;
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
    font-weight: 800;
}

.chat-pill:hover,
.chat-pill:focus,
.chatbot-fixed-wrap:hover .chat-pill,
.chatbot-fixed-wrap:focus-within .chat-pill {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) scale(1) !important;
    animation-play-state: paused;
}

.chatbot-fixed-wrap.is-open .chat-pill {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    animation: none !important;
}

@keyframes eaChatPromptCycle {
    0%, 100% {
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px) scale(.96);
    }
    8%, 38% {
        opacity: 1;
        visibility: visible;
        transform: translateX(0) scale(1);
    }
    48% {
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px) scale(.96);
    }
}

@media (max-width: 768px) {
    .chatbot-fixed-wrap {
        right: 14px !important;
        bottom: 14px !important;
        gap: 8px !important;
        max-width: calc(100vw - 28px);
    }

    .chat-pill {
        display: inline-flex !important;
        max-width: calc(100vw - 94px);
        padding: 9px 12px !important;
        font-size: .78rem !important;
        line-height: 1.15;
        white-space: normal !important;
        text-align: center;
        box-shadow: 0 10px 24px rgba(0,0,0,.30);
    }
}

@media (max-width: 480px) {
    .chat-pill {
        display: inline-flex !important;
        max-width: 190px;
        padding: 8px 11px !important;
        font-size: .74rem !important;
    }

    .chat-bot {
        width: 62px !important;
        height: 62px !important;
        flex: 0 0 62px;
    }
}

/* Live agent yellow button update */
.chat-bot {
    background: linear-gradient(180deg, #facc15 0%, #eab308 100%) !important;
    box-shadow: 0 14px 34px rgba(250, 204, 21, 0.42) !important;
}

.chat-bot:hover {
    box-shadow: 0 18px 38px rgba(250, 204, 21, 0.55) !important;
}

/* Contact form email status messages */
.contact-success-message,
.contact-error-message {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 14px;
    font-weight: 800;
    line-height: 1.45;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

.contact-success-message {
    background: rgba(22, 163, 74, .18);
    border: 1px solid rgba(34, 197, 94, .45);
    color: #dcfce7;
}

.contact-error-message {
    background: rgba(220, 38, 38, .20);
    border: 1px solid rgba(248, 113, 113, .48);
    color: #fee2e2;
}

/* Chat survey reset + agent message display fix */
.chat-message.agent {
    align-self: flex-start;
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    border: 1px solid rgba(147, 197, 253, .55);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, .22);
}

.chat-agent-name {
    display: block;
    margin-bottom: 5px;
    color: #bfdbfe;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.chat-survey-box {
    width: 100%;
    max-width: 100%;
    display: grid;
    gap: 10px;
}

.chat-survey-box .chat-message {
    max-width: 100%;
}

.chat-survey-form {
    width: 100%;
    box-sizing: border-box;
}


/* =========================================================
   2026-06-18 Frontend polish update
   - white live chat button/logo holder
   - mobile-safe survey layout
   - larger footer partner logos
   - Join us header link
   ========================================================= */
.join-us-btn {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .24);
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.join-us-btn:hover {
    transform: translateY(-1px);
    background: rgba(239, 68, 68, .18);
    border-color: rgba(239, 68, 68, .5);
    color: #ffffff;
}
.chat-bot,
.chatbot-fixed-wrap .chat-bot {
    background: #ffffff !important;
    border: 2px solid rgba(239, 68, 68, .22) !important;
    box-shadow: 0 14px 34px rgba(255, 255, 255, .24), 0 0 0 6px rgba(255, 255, 255, .06) !important;
}
.chat-bot:hover,
.chatbot-fixed-wrap .chat-bot:hover {
    background: #ffffff !important;
    box-shadow: 0 18px 38px rgba(255, 255, 255, .30), 0 0 0 7px rgba(239, 68, 68, .10) !important;
}
.chat-support-logo {
    filter: none !important;
}
.footer-partners {
    gap: 36px !important;
}
.partner-logo {
    width: 205px !important;
    height: 118px !important;
    padding: 16px 20px !important;
}
.partner-logo img {
    max-height: 98px !important;
}
.partner-logo img[src*="footer-ea"] {
    max-height: 90px !important;
}
.chat-window {
    overflow: hidden !important;
}
.chat-window-body {
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}
.chat-survey-box {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}
.chat-survey-form,
.chat-survey-form * {
    box-sizing: border-box !important;
}
.chat-survey-form textarea {
    max-height: 92px !important;
    min-height: 68px !important;
}
@media (max-width: 768px) {
    .nav-wrap {
        gap: 10px !important;
    }
    .book-btn,
    .join-us-btn {
        min-height: 42px !important;
        padding: 0 14px !important;
        font-size: .86rem !important;
        border-radius: 10px !important;
    }
    .chatbot-fixed-wrap {
        right: 10px !important;
        bottom: 10px !important;
        max-width: calc(100vw - 20px) !important;
    }
    .chat-window {
        right: 0 !important;
        bottom: 72px !important;
        width: min(390px, calc(100vw - 20px)) !important;
        height: min(620px, calc(100dvh - 92px)) !important;
        max-height: calc(100dvh - 92px) !important;
        border-radius: 16px !important;
    }
    .chat-window-body {
        padding: 9px !important;
        gap: 7px !important;
    }
    .chat-survey-box {
        padding: 10px !important;
        margin: 6px 0 0 !important;
    }
    .chat-rating-row {
        gap: 5px !important;
    }
    .chat-rating-row span {
        min-height: 30px !important;
        font-size: 13px !important;
    }
    .chat-survey-label {
        font-size: 12px !important;
        line-height: 1.25 !important;
    }
    .chat-survey-form {
        gap: 7px !important;
    }
    .chat-survey-form select {
        min-height: 36px !important;
        font-size: 12px !important;
    }
    .chat-survey-form textarea {
        min-height: 52px !important;
        max-height: 70px !important;
        font-size: 12px !important;
        resize: none !important;
    }
    .chat-survey-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 7px !important;
    }
    .chat-survey-actions button {
        width: 100% !important;
        min-height: 34px !important;
        padding: 0 10px !important;
        font-size: 12px !important;
    }
    .partner-logo {
        width: 180px !important;
        height: 105px !important;
    }
}
@media (max-width: 520px) {
    .nav-wrap {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .brand {
        order: 1;
    }
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    .book-btn {
        order: 2;
    }
    .join-us-btn {
        order: 2;
    }
    .chat-window {
        width: calc(100vw - 16px) !important;
        height: min(600px, calc(100dvh - 86px)) !important;
        max-height: calc(100dvh - 86px) !important;
    }
    .chat-pill {
        max-width: calc(100vw - 94px) !important;
    }
    .footer-partners {
        justify-content: center !important;
        gap: 18px !important;
    }
    .partner-logo {
        width: min(210px, 86vw) !important;
        height: 112px !important;
    }
}

/* security mobile patch */

@media (max-width: 900px) {
    .contact-grid,
    .contact-content,
    .contact-layout {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 560px) {
    .form-row.two-cols,
    .two-cols {
        grid-template-columns: 1fr !important;
    }
}


/* 2026-06-22: Chat call shortcut beside close button */
.chat-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.chat-call-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, .16);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
}

.chat-call-btn:hover {
    background: rgba(255, 255, 255, .26);
}


/* 2026-06-24: Borderless white phone shortcut icon */
.chat-call-btn {
    width: 34px !important;
    height: 34px !important;
    border-radius: 999px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: transparent !important;
    font-size: 0 !important;
    padding: 0 !important;
    position: relative !important;
}
.chat-call-btn::before {
    content: "";
    width: 22px;
    height: 22px;
    display: block;
    background: #ffffff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.chat-call-btn:hover,
.chat-call-btn:focus-visible {
    background: rgba(255, 255, 255, .10) !important;
    outline: none !important;
}


/* 2026-06-26 footer single-line + inline chat choices */
.footer-partners {
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 22px !important;
}

.footer-partners .partner-logo,
.footer-partners .partner-fallback {
    flex: 0 0 178px !important;
    width: 178px !important;
    height: 104px !important;
    padding: 14px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.footer-partners .partner-logo img {
    max-width: 100% !important;
    max-height: 86px !important;
    object-fit: contain !important;
}

.footer-partners .partner-logo img[src*="footer-ea"],
.footer-partners .partner-logo img[src*="footer-igen"] {
    max-height: 76px !important;
}

.chat-options {
    display: none !important;
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    border: 0 !important;
}

.chat-inline-options {
    width: 100% !important;
    display: grid !important;
    gap: 8px !important;
    margin: 4px 0 8px !important;
    align-self: stretch !important;
}

.chat-inline-options .chat-option-btn {
    width: 100% !important;
    text-align: left !important;
    border-radius: 14px !important;
    padding: 10px 12px !important;
}

.chat-inline-options .chat-option-btn.connect-agent {
    font-weight: 900 !important;
}

@media (max-width: 1180px) {
    .footer-partners {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
}

@media (min-width: 1181px) {
    .footer-partners {
        min-width: 778px !important;
    }
}

/* Final redesigned footer spacing override */
.footer-grid-redesign .footer-partners {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(142px, 1fr)) !important;
    gap: 16px !important;
    min-width: 0 !important;
    width: 100% !important;
    justify-content: stretch !important;
}

.footer-grid-redesign .partner-logo,
.footer-grid-redesign .partner-fallback {
    width: auto !important;
    flex: initial !important;
}

@media (max-width: 700px) {
    .footer-grid-redesign .footer-partners {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }
}
