:root {
  --primary-color: #fe5101;
  --secondary-color: #000000;
  --gradient-bg: linear-gradient(135deg, #fe5101 0%, #ff6b2b 100%);
  --shadow-color: rgba(254, 81, 1, 0.2);
}

        /* Custom Modal Overlay */
        .support-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .support-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Custom Modal Container */
        .support-modal-container {
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: scale(0.8) translateY(50px);
            transition: all 0.3s ease;
        }

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

        /* Custom Modal Header */
        .support-modal-header {
            background: var(--gradient-bg);
            padding: 1.5rem;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .support-modal-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 255, 255, 0.3) 50%, 
                transparent 100%);
        }

        .support-modal-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            flex-grow: 1;
            text-align: center;
        }

        .support-modal-close {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .support-modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        /* Custom Modal Body */
        .support-modal-body {
            padding: 2rem;
            background: white;
        }

        .support-contact-item {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border: 2px solid #f1f3f4;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .support-contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-bg);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .support-contact-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px var(--shadow-color);
            border-color: var(--primary-color);
        }

        .support-contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-right: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px var(--shadow-color);
            flex-shrink: 0;
        }

        .support-contact-item:hover .support-contact-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 20px var(--shadow-color);
        }

        .support-contact-content {
            flex-grow: 1;
        }

        .support-contact-content h6 {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1rem;
            margin: 0 0 0.5rem 0;
        }

        .support-contact-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .support-contact-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .support-contact-link:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .support-contact-link:hover::after {
            width: 100%;
        }

        /* Animation Classes */
        .support-fade-in {
            animation: supportFadeInUp 0.5s ease-out forwards;
            opacity: 0;
        }

        .support-contact-item:nth-child(1) { animation-delay: 0.1s; }
        .support-contact-item:nth-child(2) { animation-delay: 0.2s; }
        .support-contact-item:nth-child(3) { animation-delay: 0.3s; }

        @keyframes supportFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Demo Button */
        .support-demo-btn {
            background: linear-gradient(135deg, #fe5101 0%, #ff6b2b 100%);
            border: none;
            border-radius: 12px;
            padding: 12px 30px;
            font-weight: 600;
            box-shadow: 0 6px 20px rgba(254, 81, 1, 0.3);
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .support-demo-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(254, 81, 1, 0.4);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .support-modal-body {
                padding: 1.5rem;
            }
            
            .support-contact-item {
                padding: 1rem;
            }
            
            .support-contact-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .support-modal-container {
                width: 95%;
            }
        }