header .mainMenu 
{
    background: #141414;
}

.techSupport
{
    background: #f5f5f5;
}

/* ---------- Hero ---------- */

.techSupport .ts-hero
{
    background: #141414;
    color: #fff;
    padding: 80px 0 70px 0;
}

.techSupport .ts-hero .contentCenter
{
    text-align: center;
}

.techSupport .ts-hero h1
{
    color: #fff;
    font-family: 'Roboto Condensed';
    font-weight: normal;
    font-size: 44px;
    line-height: 1.2;
    padding: 0 0 30px 0;
}

.techSupport .ts-search
{
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.techSupport .ts-search input
{
    width: 100%;
    height: 50px;
    border-radius: 25px;
    border: none;
    background: #fff;
    padding: 0 50px 0 50px;
    font-size: 15px;
    font-family: 'Noto Sans', sans-serif;
    color: var(--text-color);
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s ease;
}

.techSupport .ts-search input:focus
{
    box-shadow: 0 2px 12px rgba(0, 182, 227, 0.3);
}

.techSupport .ts-search input::placeholder
{
    color: #9a9a9a;
}

.techSupport .ts-search .ts-search-icon
{
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(/images/menu-search-news.svg) center center no-repeat;
    background-size: 18px;
    pointer-events: none;
}

.techSupport .ts-search .ts-search-clear
{
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: none;
    padding: 0;
}

.techSupport .ts-search .ts-search-clear::before
{
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    margin: 0 auto;
    background: url(/images/generic-cross-close-dark.svg) center center no-repeat;
    background-size: 14px;
    opacity: 0.7;
    transition: opacity 0.15s ease;
}

.techSupport .ts-search .ts-search-clear:hover::before
{
    opacity: 1;
}

.techSupport .ts-search.has-text .ts-search-clear
{
    display: block;
}

.techSupport .ts-popular
{
    margin: 22px 0 0 0;
    font-size: 13px;
    color: #cfcfcf;
}

.techSupport .ts-popular .ts-popular-label
{
    margin: 0 8px 0 0;
}

.techSupport .ts-pill
{
    display: inline-block;
    margin: 0 4px 6px 4px;
    padding: 6px 14px;
    border: none;
    border-radius: 20px;
    background: #2a2b2d;
    color: #f5f5f5;
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    line-height: 16px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.techSupport .ts-pill:hover
{
    background: #3a3b3d;
}

/* ---------- Content section (cards / results / whatsapp) ---------- */

.techSupport .ts-content-section
{
    padding: 80px 0 80px 0;
}

.techSupport .ts-stage
{
    position: relative;
    min-height: 200px;
}

.techSupport .ts-stage > .ts-cards-grid,
.techSupport .ts-stage > .ts-results
{
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.techSupport .ts-fade-out
{
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
}

.techSupport .ts-fade-in
{
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Cards grid ---------- */

.techSupport .ts-cards-grid
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.techSupport .ts-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    /* border-radius: 8px; */
    /* border: 1px solid #ececec; */
    padding: 40px 30px 60px 30px;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.techSupport .ts-card:hover
{
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border-color: #dadada;
}

.techSupport .ts-card-icon
{
    width: 42px;
    height: 42px;
    margin: 0 0 24px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.techSupport .ts-card.is-doc      .ts-card-icon { background-image: url(/images/support-document.svg); }
.techSupport .ts-card.is-video    .ts-card-icon { background-image: url(/images/support-video.svg); }
.techSupport .ts-card.is-faq      .ts-card-icon { background-image: url(/images/support-faq.svg); }
.techSupport .ts-card.is-account  .ts-card-icon { background-image: url(/images/support-account.svg); }
.techSupport .ts-card.is-contact  .ts-card-icon { background-image: url(/images/support-contact.svg); }
.techSupport .ts-card.is-stockist .ts-card-icon { background-image: url(/images/support-stockist.svg); }

.techSupport .ts-card-title
{
    font-size: 30px;
    font-weight: normal;
    color: var(--text-color);
    margin: 20px 0 20px 0;
}

.techSupport .ts-card-desc
{
    font-size: 14px;
    line-height: 22px;
    color: #6e6e6e;
    max-width: 240px;
}

/* ---------- WhatsApp button ---------- */

.techSupport .ts-whatsapp-wrap
{
    text-align: center;
    margin: 80px 0 30px 0;
}

.techSupport .ts-whatsapp-btn
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 296px;
    height: 70px;
    padding: 0 30px;
    border: none;
    border-radius: 35px;
    background: var(--action-color);
    color: #fff;
    /* font-family: 'Roboto', sans-serif; */
    font-size: 22px;
    font-weight: 600;
    line-height: 50px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.techSupport .ts-whatsapp-btn:hover
{
    background: #00a3cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.techSupport .ts-whatsapp-btn:active
{
    transform: translateY(0);
}

.techSupport .ts-whatsapp-icon
{
    display: inline-block;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    background: url(/images/whatsapp.svg) center center no-repeat;
    background-size: 30px;
}

/* ---------- Search results ---------- */

.techSupport .ts-results
{
    max-width: 880px;
    margin: 0 auto;
}

.techSupport .ts-results-header
{
    font-size: 13px;
    color: #6e6e6e;
    padding: 0 4px 14px 4px;
    border-bottom: 1px solid #e3e3e3;
    margin: 0 0 4px 0;
}

.techSupport .ts-results-list
{
    display: flex;
    flex-direction: column;
}

.techSupport .ts-result-item
{
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 12px;
    border-bottom: 1px solid #ececec;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.techSupport .ts-result-item:hover
{
    background: #fafafa;
}

.techSupport .ts-result-thumb
{
    flex: 0 0 96px;
    width: 96px;
    height: 56px;
    background: #ececec;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.techSupport .ts-result-thumb img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.techSupport .ts-result-item.is-doc .ts-result-thumb
{
    background: url(/images/support-document.svg) center center no-repeat;
    background-size: 30px;
}

.techSupport .ts-result-item.is-video .ts-result-thumb::after
{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
}

.techSupport .ts-result-item.is-video .ts-result-thumb::before
{
    content: '';
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 9px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    z-index: 1;
}

.techSupport .ts-result-info
{
    flex: 1;
    min-width: 0;
    display: block;
}

.techSupport .ts-result-title
{
    display: block;
    font-size: 15px;
    line-height: 20px;
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.techSupport .ts-result-type
{
    flex: 0 0 auto;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
    color: #8a8a8a;
}

.techSupport .ts-no-results
{
    padding: 30px 12px;
    text-align: center;
    color: #6e6e6e;
    font-size: 14px;
}

/* ---------- WhatsApp modal ---------- */

.techSupport .ts-modal-overlay
{
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.55);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.techSupport .ts-modal-overlay.is-open
{
    opacity: 1;
    visibility: visible;
}

.techSupport .ts-modal-overlay[hidden]
{
    display: none;
}

.techSupport .ts-modal
{
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 22px 26px 22px 26px;
    width: 100%;
    max-width: 340px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.92);
    transition: transform 0.24s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.techSupport .ts-modal-overlay.is-open .ts-modal
{
    transform: scale(1);
}

.techSupport .ts-modal-close
{
    position: absolute;
    top: 14px;
    left: 14px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 8px;
    background: #f3f3f3 url(/images/generic-cross-close-dark.svg) center center no-repeat;
    background-size: 11px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.techSupport .ts-modal-close:hover
{
    background-color: #e6e6e6;
}

.techSupport .ts-modal-title
{
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-color);
    padding: 4px 30px 12px 30px;
    margin: 0;
}

.techSupport .ts-modal-subtitle
{
    font-size: 13px;
    color: #8a8a8a;
    line-height: 18px;
    margin: 0 0 18px 0;
    padding: 0 4px;
}

.techSupport .ts-modal-qr
{
    margin: 0 auto 22px auto;
    width: 200px;
    height: 200px;
    padding: 8px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
}

.techSupport .ts-modal-qr img
{
    display: block;
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.techSupport .ts-wa-web-btn
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    border-radius: 24px;
    background: #25d366;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
}

.techSupport .ts-wa-web-btn:hover
{
    background: #1eb858;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.techSupport .ts-wa-web-btn:active
{
    transform: translateY(0);
}

.techSupport .ts-wa-web-btn::after
{
    content: '';
    width: 14px;
    height: 14px;
    background: url(/images/controls-arrow-right.svg) center center no-repeat;
    background-size: 14px;
}
