 @font-face {
    font-family: "contact";
    src: url("../fonts/contact/font/contact.eot");
 }
 
 :root {
       /* 3D Contact Panel */
        .contact-panel {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 20px;
            perspective: 1000px;
        }

        /* 3D Button Styles */
        .contact-btn {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            color: white;
            font-size: 28px;
            transform-style: preserve-3d;
            box-shadow: 
                0 6px 10px rgba(0, 0, 0, 0.2),
                inset 0 -3px 8px rgba(0, 0, 0, 0.2);
        }

        .contact-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transform: translateZ(-10px);
            filter: blur(2px);
        }

        .contact-btn:hover {
            transform: translateY(-5px) rotateX(15deg);
            box-shadow: 
                0 12px 20px rgba(0, 0, 0, 0.3),
                inset 0 -5px 12px rgba(0, 0, 0, 0.2);
        }

        .contact-btn:active {
            transform: translateY(0) rotateX(0deg);
            box-shadow: 
                0 4px 8px rgba(0, 0, 0, 0.2),
                inset 0 -2px 6px rgba(0, 0, 0, 0.2);
        }

        /* Tooltip Styles */
        .contact-btn .tooltip {
            position: absolute;
            right: 85px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s;
            transform: translateX(10px);
        }

        .contact-btn:hover .tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        /* Button Colors */
        .call-btn {
            background: linear-gradient(145deg, #4CAF50, #2E7D32);
        }

        .whatsapp-btn {
            background: linear-gradient(145deg, #25D366, #128C7E);
        }

        .chat-btn {
            background: linear-gradient(145deg, #2196F3, #0D47A1);
        }

        /* 3D Chat Box */
        .chat-box {
            position: fixed;
            bottom: 140px;
            right: 30px;
            width: 350px;
            height: 450px;
            background: white;
            border-radius: 15px;
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.2),
                0 6px 10px rgba(0, 0, 0, 0.1);
            display: none;
            flex-direction: column;
            overflow: hidden;
            z-index: 9998;
            transform-style: preserve-3d;
            transform: rotateX(5deg) rotateY(-5deg) translateZ(20px);
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .chat-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 15px;
            background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
            pointer-events: none;
        }

        .chat-box.active {
            display: flex;
            animation: floatIn 0.6s forwards;
        }

        @keyframes floatIn {
            0% {
                opacity: 0;
                transform: translateY(50px) rotateX(30deg) rotateY(-10deg);
            }
            100% {
                opacity: 1;
                transform: rotateX(5deg) rotateY(-5deg) translateZ(20px);
            }
        }

        .chat-header {
            background: linear-gradient(135deg, #2196F3, #0D47A1);
            color: white;
            padding: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .chat-header h3 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
        }

        .chat-status {
            font-size: 12px;
            display: flex;
            align-items: center;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #76FF03;
            border-radius: 50%;
            margin-right: 6px;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .chat-messages {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            background: #f5f5f5;
        }

        .message {
            margin-bottom: 15px;
            max-width: 80%;
            padding: 12px 16px;
            border-radius: 18px;
            font-size: 14px;
            line-height: 1.4;
            position: relative;
            animation: messageIn 0.3s ease-out;
        }

        @keyframes messageIn {
            from { transform: translateY(10px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .assistant-message {
            background: white;
            align-self: flex-start;
            border-top-left-radius: 5px;
            box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .user-message {
            background: #2196F3;
            color: white;
            align-self: flex-end;
            border-top-right-radius: 5px;
            box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .chat-input {
            display: flex;
            padding: 12px;
            border-top: 1px solid #eee;
            background: white;
        }

        .chat-input input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 25px;
            outline: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .chat-input input:focus {
            border-color: #2196F3;
            box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
        }

        .send-btn {
            background: #2196F3;
            color: white;
            border: none;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            margin-left: 10px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .send-btn:hover {
            background: #0D47A1;
            transform: rotate(15deg) scale(1.1);
        }
 }