/* ==========================================================================
   COMPUZEE ENTERPRISE SUPPORT MODAL (GLASSMORPHIC CYBER HUD)
   ========================================================================== */
.support-modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 7, 18, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-modal-backdrop.is-active {
    display: flex !important;
    opacity: 1;
}

.support-modal-card {
    background: rgba(13, 17, 28, 0.95);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 24px;
    width: 100%;
    max-width: 540px;
    padding: 32px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(0, 242, 254, 0.15), 0 0 50px rgba(225, 0, 255, 0.08);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #f3f4f6;
    overflow: hidden;
}

.support-modal-backdrop.is-active .support-modal-card {
    transform: scale(1) translateY(0);
}

.support-modal-glow-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00f2fe, #e100ff, #00f2fe);
    background-size: 200% 100%;
    animation: glowBarMove 4s linear infinite;
}

@keyframes glowBarMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.support-modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #9ca3af;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.support-modal-close-btn:hover {
    background: rgba(255, 0, 127, 0.2);
    border-color: #ff007f;
    color: #ffffff;
    transform: rotate(90deg) scale(1.1);
}

.support-modal-header {
    margin-bottom: 24px;
    padding-right: 35px;
}

.support-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #00f2fe;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.support-modal-badge .pulse-dot {
    width: 7px;
    height: 7px;
    background: #00f2fe;
    border-radius: 50%;
    box-shadow: 0 0 8px #00f2fe;
    animation: beaconPulse 1.8s infinite;
}

.support-modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.support-modal-subtitle {
    font-size: 0.88rem;
    color: #9ca3af;
    line-height: 1.4;
}

.support-modal-channels {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.support-channel-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.25s ease;
}

.support-channel-card:hover {
    background: rgba(0, 242, 254, 0.04);
    border-color: rgba(0, 242, 254, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.support-channel-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.support-channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-channel-icon.email-icon {
    background: rgba(0, 242, 254, 0.1);
    color: #00f2fe;
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.support-channel-icon.phone-icon {
    background: rgba(225, 0, 255, 0.1);
    color: #e100ff;
    border: 1px solid rgba(225, 0, 255, 0.2);
}

.support-channel-icon.location-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

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

.support-channel-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: #9ca3af;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.support-channel-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.support-channel-value a {
    transition: color 0.2s ease;
}

.support-channel-value a:hover {
    color: #e100ff;
    text-decoration: underline;
}

.support-action-btn {
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.support-action-btn.email-action {
    background: linear-gradient(135deg, #00f2fe, #008cff);
    color: #030712;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25);
}

.support-action-btn.phone-action {
    background: linear-gradient(135deg, #e100ff, #7928ca);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(225, 0, 255, 0.25);
}

.support-action-btn:hover {
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.15);
}

.support-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: #9ca3af;
}

.support-modal-footer span {
    color: #00f2fe;
    font-weight: 600;
}
