/* Support Modal Styles */
.support-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.support-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.support-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.support-modal-content {
    position: relative;
    background: var(--bg-card, #ffffff);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10001;
}

/* Dark mode support if applicable, or generic styling */
@media (prefers-color-scheme: dark) {
    .support-modal-content {
        background: #1e2a3a;
        color: #ffffff;
    }
}

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

.support-modal-close {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(128, 128, 128, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    transition: all 0.3s ease;
}

.support-modal-close:hover {
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    transform: rotate(90deg);
}

.support-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.support-modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary-dark, #1a2332);
}

@media (prefers-color-scheme: dark) {
    .support-modal-title {
        color: #ffffff;
    }
}

.support-modal-subtitle {
    color: #8b95a5;
    font-size: 1rem;
}

.support-channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-btn {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--bg-light, #f8f9fa);
    color: var(--text-dark, #2c3e50);
}

@media (prefers-color-scheme: dark) {
    .support-btn {
        background: rgba(255, 255, 255, 0.05);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.1);
    }
}

.support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.support-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

.support-info {
    flex: 1;
}

.support-label {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.support-value {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    direction: ltr;
    /* For phone numbers and links */
    text-align: right;
}

/* Channel Specific Styles */
.btn-phone:hover {
    background: rgba(33, 150, 243, 0.1);
    border-color: #2196f3;
}

.btn-phone .support-icon {
    background: rgba(33, 150, 243, 0.15);
    color: #2196f3;
}

.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
}

.btn-whatsapp .support-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.btn-telegram:hover {
    background: rgba(0, 136, 204, 0.1);
    border-color: #0088cc;
}

.btn-telegram .support-icon {
    background: rgba(0, 136, 204, 0.15);
    color: #0088cc;
}

.btn-facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    border-color: #1877F2;
}

.btn-facebook .support-icon {
    background: rgba(24, 119, 242, 0.15);
    color: #1877F2;
}