/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

.support-section {
    position: relative;
    width: 100%;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    background-color: #f8fafc;
    /* light off-white background so white wrappers stand out */
    color: #0f172a;
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.support-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.cards-and-image-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    margin-bottom: 40px;
}

.support-right {
    flex: 1;
    /* min-height removed so it perfectly matches the cards height */
    background-color: #ffffff;
    background-image: url('image copy.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: content-box;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.heading {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #0f172a;
}

.heading .highlight {
    color: #3b82f6;
}

.subheading {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 40px;
    max-width: 100%;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 62%;
}

.support-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 60px 54px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    cursor: default;
}

.support-card:hover {
    transform: translateY(-5px);
    background: #f8fafc;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 20px;
}

.icon-box svg {
    width: 22px;
    height: 22px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 8px 10px 8px 26px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 24px;
    transition: all 0.2s ease;
    gap: 14px;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
}

.action-btn:hover {
    background: #e2e8f0;
}

.arrow-circle {
    background: #2563eb;
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0f172a;
}

.support-card p {
    font-size: 16.8px;
    color: #475569;
    line-height: 1.5;
}

.trust-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #475569;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
}

.trust-footer span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-footer svg {
    color: #3b82f6;
}


@media (max-width: 1100px) {
    .container {
        flex-direction: column;
        gap: 40px;
    }

    .cards-and-image-wrapper {
        flex-direction: column;
    }

    .cards-grid, .support-right {
        width: 100%;
    }

    .support-right {
        min-height: 400px;
    }

    .support-content {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .heading {
        font-size: 42px;
    }

    .trust-footer {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .cards-grid {
        grid-template-columns: 1fr;
        /* Single column for cards on mobile */
        width: 100%;
    }

    .heading {
        font-size: 42px;
    }
}

/* ----------------------------------
   Chat Popup UI
----------------------------------- */
.chat-popup-overlay {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
}

.chat-popup-overlay.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.chat-popup-box {
    width: 320px;
    background: #4b09e2;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
