﻿/* =========================================
   THEME TOKENS
   ========================================= */

/* Default theme (light) */
:root {
    --bg-body: #ffffff;
    --bg-band: #ffffff;
    --bg-card-left: #f2f4f7;
    --bg-card-right: #f2f4f7;
    --bg-intro: #e5e7eb;
    --border-card: #d1d5db;
    --border-intro: #cbd5e1;
    --text-main: #111827;
    --text-muted: #4b5563;
    --text-heading: #000000;
    --accent-teal: #15807a; /* primary buttons / icons */
    --accent-teal-soft: #07c6ee;
    --icon-bg: #0f766e;
    --icon-color: #ffffff;
    /* shared derived tokens */
    --accent-success: var(--accent-teal);
    --border-soft: #d1d5db;
    --btn-primary-bg: var(--accent-teal);
    --btn-primary-text: #ffffff;
    --chat-accent: var(--accent-teal);
    --chat-contrast: #ffffff;
}

    /* DARK THEME – both cards dark */
    :root[data-theme="dark"] {
        --bg-body: #111827;
        --bg-band: #111827;
        --bg-card-left: #020617;
        --bg-card-right: #020617;
        --bg-intro: #020617;
        --border-card: #111827;
        --border-intro: #0b1120;
        --text-main: #e5edf4;
        --text-muted: #9ca3af;
        --text-heading: #ffffff;
        --accent-teal: #22c55e;
        --accent-teal-soft: #4ade80;
        --icon-bg: #022c22;
        --icon-color: #bbf7d0;
        --accent-success: #22c55e;
        --border-soft: #1f2937;
        --chat-accent: #22c55e;
    }

    /* VOX GREEN THEME */
    :root[data-theme="vox"] {
        --bg-body: #f0fdf4;
        --bg-band: #f0fdf4;
        --bg-card-left: #dcfce7;
        --bg-card-right: #dcfce7;
        --bg-intro: #bbf7d0;
        --border-card: #a7f3d0;
        --border-intro: #6ee7b7;
        --text-main: #064e3b;
        --text-muted: #4b5563;
        --text-heading: #022c22;
        --accent-teal: #16a34a;
        --accent-teal-soft: #4ade80;
        --icon-bg: #15803d;
        --icon-color: #ecfdf3;
        --accent-success: #16a34a;
        --border-soft: #a7f3d0;
        --chat-accent: #16a34a;
    }

    /* NORTON YELLOW THEME */
    :root[data-theme="norton"] {
        --bg-body: #fffbeb;
        --bg-band: #fffbeb;
        --bg-card-left: #fef3c7;
        --bg-card-right: #fef3c7;
        --bg-intro: #fde68a;
        --border-card: #facc15;
        --border-intro: #f59e0b;
        --text-main: #111827;
        --text-muted: #4b5563;
        --text-heading: #1f2937;
        --accent-teal: #f59e0b;
        --accent-teal-soft: #facc15;
        --icon-bg: #92400e;
        --icon-color: #fffbeb;
        --accent-success: #16a34a;
        --border-soft: #facc15;
        --chat-accent: #f59e0b;
    }

    /* ANYTECH / CLASSIC GREY THEME (client) */
    :root[data-theme="anytech"] {
        --bg-body: #ffffff;
        --bg-band: #ffffff;
        /* Left/Right panels – both white, proven layout */
        --bg-card-left: #ffffff;
        --bg-card-right: #ffffff;
        --bg-intro: #ffffff;
        --border-card: #d3d3d3;
        --border-intro: #d3d3d3;
        --border-soft: #d3d3d3;
        --text-main: #111111;
        --text-muted: #555555;
        --text-heading: #000000;
        --accent-teal: #00b22e;
        --accent-teal-soft: #00b22e;
        --accent-success: #00b22e;
        --icon-bg: #00b22e;
        --icon-color: #ffffff;
        --btn-primary-bg: #5b5b5b;
        --btn-primary-text: #ffffff;
        --chat-accent: #00b22e;
        --chat-contrast: #ffffff;
    }

/* =========================================
   GLOBAL
   ========================================= */
body {
    background: var(--bg-body) !important;
    color: var(--text-main);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nav {
    padding: .5em !important;
}

.activation2-nav {
    border-bottom: 1px solid #eef2f5;
}

.activation2-logo {
    max-height: 32px;
}

.activation2-logo-right {
    margin-left: auto;
    display: block;
}

/* =========================================
   LAYOUT WRAPPERS
   ========================================= */
.activation2-fieldset {
    border: none;
    margin: 0;
    padding: 0;
    background: var(--bg-body);
}

.activation2-band {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px 24px;
}

.activation2-intro {
    margin: 16px 0 14px;
    padding: 6px 16px;
    border: 1px solid var(--border-intro);
    background: var(--bg-intro);
    border-radius: 3px;
    color: var(--text-main);
    font-size: .9rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.02em;
}

.activation2-wrap {
    background: var(--bg-band);
    display: grid;
    grid-template-columns: 1.35fr 1fr; /* proven 8/4 split */
    align-items: stretch;
    column-gap: clamp(8px, 1.6vw, 18px);
    padding: 0;
}

.activation2-support,
.activation2-pane {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 16px;
}

.activation2-pane,
.activation2-card,
.support-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* =========================================
   LEFT: SUPPORT CARD
   ========================================= */
.support-card {
    background: var(--bg-card-left);
    color: var(--text-main);
    width: 100%;
    max-width: 620px;
    border-radius: 10px;
    border: 1px solid var(--border-card);
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
}

.support-header {
    margin-bottom: 8px;
}

.support-title {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    margin: 0;
    color: var(--text-heading);
}

.support-step {
    margin-right: 6px;
    color: var(--accent-success);
}

/* Agent photo */
.support-hero-img {
    float: left;
    max-width: 135px;
    height: auto;
    margin: 4px 18px 8px 0;
    border: 1px solid #d3d3d3;
}

.support-body::after {
    content: "";
    display: block;
    clear: both;
}

/* Make the bullet section start below the agent image */
.support-subtitle,
.support-points {
    clear: both; /* or clear: left; if you prefer */
}

.support-body {
    font-size: .9rem;
}

    .support-body p {
        margin: 0 0 14px;
    }

.support-subtitle {
    font-size: .9rem;
    margin: 12px 0 6px;
    font-weight: 600;
}

/* bullets */
.support-points {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
    font-size: .9rem;
}

    .support-points li {
        display: flex;
        align-items: center;
        gap: 6px;
    }

/* Bright, clean, 365-style check circles */
.icon-line {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #00cc45; /* bright green */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px; /* tick size */
    line-height: 1;
    color: #00cc45; /* tick colour */
    flex-shrink: 0;
}

    /* Use a real checkmark character */
    .icon-line::before {
        content: "✓";
    }





/* phone + chat */
.support-phone-block {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* online status pill – bigger + more visible */
.support-status {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: #eaffea; /* light green fill */
    border: 2px solid #00b22e; /* strong outline */
    font-size: 1rem;
    font-weight: 700;
    color: #008f26;
    letter-spacing: 0.3px;
}

/* flashing green light (bigger AND animated) */
.support-status-dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--accent-success, #00b22e);
    box-shadow: 0 0 0 4px rgba(0,178,46,0.35);
    animation: onlinePulse 1.1s ease-in-out infinite;
    flex-shrink: 0;
}



@keyframes onlinePulse {
    0% {
        transform: scale(1);
        opacity: .7;
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
    }

    50% {
        transform: scale(1.25);
        opacity: 1;
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.45);
    }

    100% {
        transform: scale(1);
        opacity: .7;
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
    }
}

.support-phone-label {
    display: block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-muted);
}

.support-phone-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-heading);
}

.support-contact-row {
    margin-top: 8px;
}

.support-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: default;
    background: none;
    border: 0;
    padding: 0;
}

/* One-time nudge animation for chat icon */
@keyframes chatNudge {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-3px);
    }

    70% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
    }
}

/* Base chat icon styling + gentle entry nudge */
.contact-icon-chat {
    transition: transform 0.18s ease, box-shadow 0.22s ease;
    animation: chatNudge 0.7s ease-out 1.4s 1 forwards;
    cursor: pointer; /* <-- important! */
}


/* Hover: micro-lift + subtle glow */
.support-contact--chat:hover .contact-icon-chat {
    animation: none !important; /* overrides page-load wiggle */
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 0 2px rgba(0, 178, 46, 0.30), 0 6px 14px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

/* Hover: micro-lift + subtle glow for CHAT only */
.support-contact--chat {
    cursor: pointer;
}

    .support-contact--chat:hover .contact-icon-chat {
        animation: none !important; /* stop the entry nudge */
        transform: translateY(-2px) scale(1.05) !important;
        box-shadow: 0 0 0 2px rgba(0, 178, 46, 0.30), 0 6px 14px rgba(0, 0, 0, 0.25) !important;
    }



/* icon pill */
.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s ease, box-shadow .25s ease, transform .15s ease;
}

.icon-svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

/* Phone-only hover glow */
.support-contact--phone:hover .contact-icon {
    background: var(--accent-teal-soft);
    box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.35), 0 0 12px rgba(15, 118, 110, 0.25), 0 4px 10px rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);
}


/* AnyTech: no glow, very plain */
:root[data-theme="anytech"] .support-contact:hover .contact-icon {
    background: #00b22e;
    box-shadow: none;
    transform: none;
}

/* =========================================
   ANYTECH365 LOGO + LEGAL
   ========================================= */
.support-partner {
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
}

.support-partner-logo-wrap {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    border: 1px solid #d3d3d3 !important;
    border-radius: 4px !important;
}

.support-partner-logo {
    max-width: 100%;
    height: auto;
}

.support-partner-copy {
    font-size: .72rem;
    line-height: 1.4;
    color: var(--text-muted);
    margin: 0;
    text-align: justify;
    padding: 0 10px;
}

/* =========================================
   RIGHT: FORM CARD
   ========================================= */
.activation2-pane {
    position: relative;
    flex-direction: column;
    align-items: center;
}

.activation2-card {
    position: relative;
    background: var(--bg-card-right);
    color: var(--text-main);
    max-width: 560px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid var(--border-card);
    padding: 18px 20px 16px;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

    .activation2-card h1 {
        font-weight: 700;
        font-size: clamp(20px, 2.2vw, 28px);
        margin: 0 0 .35rem 0 !important;
        color: var(--text-heading);
    }

.card-step {
    margin-right: 6px;
    color: var(--accent-teal);
}

.activation2-card p.helper {
    color: var(--text-muted);
    margin: 0 0 .6rem 0;
}

.activation2-card .form-group {
    margin-bottom: .5rem !important;
}

.activation2-card .form-control {
    height: 40px;
    border-radius: 8px;
    border: 1px solid #dbe3ea;
    padding: .45rem .75rem;
    box-shadow: none !important;
}

    .activation2-card .form-control:focus {
        border-color: var(--accent-teal);
        outline: 0;
    }

.activation2-card .validation {
    color: #c62828;
    font-size: .84rem;
    margin-top: .2rem;
    display: block;
}

/* primary CTA button */
.activation2-btn {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 8px;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    font-weight: 600;
    margin-top: .2rem !important;
    transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}

    .activation2-btn:hover {
        background: #126c67;
    }

    .activation2-btn:active {
        transform: translateY(1px);
    }

/* AnyTech button – flat dark bar */
:root[data-theme="anytech"] .activation2-btn {
    border-radius: 0;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
}

    :root[data-theme="anytech"] .activation2-btn:hover {
        background: #333333;
    }

/* legal copy */
.activation2-legal {
    font-size: .83rem;
    color: var(--text-muted);
    margin-top: .6rem;
}

    .activation2-legal a {
        color: #0f766e;
        text-decoration: none;
    }

        .activation2-legal a:hover {
            text-decoration: underline;
        }

/* white DIY block + visible separation for AnyTech */
:root[data-theme="anytech"] .activation2-card {
    background: #ffffff;
    border-color: #d3d3d3;
}

:root[data-theme="anytech"] .activation2-support {
    border-right: 1px solid #e0e0e0;
    padding-right: 24px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991.98px) {
    .activation2-wrap {
        grid-template-columns: 1fr;
        row-gap: 16px;
        padding: 16px 0 24px;
    }

    .support-card,
    .activation2-card {
        max-width: 600px;
        margin: 0 auto;
    }

    .support-points {
        grid-template-columns: 1fr;
    }

    .activation2-intro {
        margin-bottom: 4px;
        text-align: left;
    }

    :root[data-theme="anytech"] .activation2-support {
        border-right: 0;
        padding-right: 16px;
    }
}

/* =========================================
   MISC
   ========================================= */
/* hide MVC validation text (we rely on borders) */
.validation.prog-mod {
    display: none !important;
}

/* More breathing room under the intro paragraphs above the bullet list */
.support-body p:nth-of-type(1),
.support-body p:nth-of-type(2),
.support-body p:nth-of-type(3) {
    margin-bottom: 15px!important; /* tweak to taste */
}

/* Re-enable elegant hover glow on both cards */
/* Hover: 365-blue glow */
.support-card:hover,
.activation2-card:hover {
    box-shadow: 0 0 0 2px rgba(58, 120, 194, 0.45), /* outline */
    0 0 18px rgba(58, 120, 194, 0.25), /* mid glow */
    0 8px 22px rgba(0, 0, 0, 0.15); /* base shadow */
    border-color: rgba(58, 120, 194, 0.6); /* 365 blue border */
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}


/* Remove focus border on the Chat button */
.support-contact--chat:focus,
.support-contact--chat:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}
.support-contact--chat *:focus {
    outline: none !important;
    box-shadow: none !important;
}
/* Centered, full-width "Tech experts available 24/7" bar */
.support-status {
    align-self: stretch; /* take full width of the card */
    display: flex; /* flex row */
    justify-content: center; /* center dot + text */
    align-items: center;
    width: 100%;
    margin: 10px 0; /* little breathing room */
    box-sizing: border-box; /* border stays inside width */
}

/* ===============================
   Page-load card animation
   =============================== */

/* Simple, smooth fade + slide up (no blur, no shake) */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base state for both cards */
.support-card,
.activation2-card {
    opacity: 0; /* start invisible */
    transform: translateY(24px); /* start slightly lower */
    animation: fadeSlideUp 0.8s ease-out forwards;
    animation-delay: 0s; /* we'll stagger below */
    will-change: transform, opacity;
}

/* Staggered timing: card 1 then card 2 */
.support-card {
    animation-delay: 0.2s; /* left card first */
}

.activation2-card {
    animation-delay: 0.7s; /* right card after */
}


/* NEW - TMP */
/* Soft floating shadow on agent photo */
.support-hero-img {
    float: left;
    max-width: 135px;
    height: auto;
    margin: 4px 18px 8px 0;
    border: 1px solid #d3d3d3;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); /* soft shadow */
    transition: box-shadow 0.25s ease;
}

    .support-hero-img:hover {
        box-shadow: 0 6px 16px rgba(0,0,0,0.12); /* slightly deeper on hover */
    }

/* CTA micro-lift on hover */
.activation2-btn {
    transition: transform 0.12s ease, box-shadow 0.2s ease;
}

    .activation2-btn:hover {
        transform: translateY(-2px); /* micro lift */
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .activation2-btn:active {
        transform: translateY(0); /* reset on press */
        box-shadow: none;
    }

/* Smooth brightness pulse on availability dot */
@keyframes pulseDot {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.15);
        filter: brightness(1.4);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.support-status-dot {
    animation: pulseDot 1.4s ease-in-out infinite;
}

