        /* Floating Contact Button Styles */
        .floating-contact-wrapper {
            width: 300px;
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            font-family: 'IRANYekanX', sans-serif;
        }

        .floating-contact-btn {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
            border: 3px solid #000000;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: visible;
        }

        .floating-contact-btn svg {
            width: 32px;
            height: 32px;
            color: #000000;
            transition: all 0.3s ease;
        }

        .floating-contact-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.4);
            animation: contactPulse 2s infinite;
            pointer-events: none;
        }

        @@keyframes contactPulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.8);
                opacity: 0;
            }
        }

        .floating-contact-btn:hover {
            transform: scale(1.1) rotate(15deg);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6), 0 0 50px rgba(212, 175, 55, 0.4);
        }

        .floating-contact-btn:active {
            transform: scale(0.95);
        }

        /* Contact Panel */
        .floating-contact-panel {
            position: absolute;
            bottom: 85px;
            right: 0;
            width: 340px;
            background: #000000;
            border: 2px solid #D4AF37;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 60px rgba(212, 175, 55, 0.3);
            display: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.9);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .floating-contact-panel.active {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .floating-contact-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #D4AF37 20%, #FFD700 50%, #D4AF37 80%, transparent);
            animation: panelShimmer 3s infinite;
        }

        @@keyframes panelShimmer {
            0%, 100% {
                opacity: 0.5;
            }
            50% {
                opacity: 1;
            }
        }

        .contact-panel-header {
            padding: 20px 25px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .contact-panel-header h3 {
            margin: 0;
            font-size: 20px;
            font-weight: 700;
            color: #FFD700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .contact-close-btn {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-close-btn i {
            font-size: 28px;
            color: #D4AF37;
        }

        .contact-close-btn:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: #D4AF37;
            transform: rotate(90deg);
        }

        .contact-panel-body {
            padding: 15px;
        }

        .contact-option {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 18px 20px;
            margin-bottom: 12px;
            background: #0a0a0a;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-left: 3px solid #D4AF37;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .contact-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
            transition: width 0.4s ease;
        }

        .contact-option:hover::before {
            width: 100%;
        }

        .contact-option:hover {
            background: rgba(212, 175, 55, 0.05);
            border-color: #D4AF37;
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
        }

        .contact-option:last-child {
            margin-bottom: 0;
        }

        .contact-option-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .contact-option-icon svg,
        .contact-option-icon i {
            width: 26px;
            height: 26px;
            color: #D4AF37;
            font-size: 26px;
        }

        .whatsapp-option:hover .contact-option-icon {
            background: rgba(37, 211, 102, 0.15);
            border-color: #25D366;
        }

        .whatsapp-option:hover .contact-option-icon svg {
            color: #25D366;
        }

        .telegram-option:hover .contact-option-icon {
            background: rgba(36, 161, 222, 0.15);
            border-color: #24A1DE;
        }

        .telegram-option:hover .contact-option-icon svg {
            color: #24A1DE;
        }

        .phone-option:hover .contact-option-icon {
            background: rgba(255, 215, 0, 0.15);
            border-color: #FFD700;
        }

        .phone-option:hover .contact-option-icon svg {
            color: #FFD700;
        }

        .company-phone-option:hover .contact-option-icon {
            background: rgba(212, 175, 55, 0.15);
            border-color: #D4AF37;
        }

        .company-phone-option:hover .contact-option-icon svg {
            color: #D4AF37;
        }

        .scroll-top-option:hover .contact-option-icon {
            background: rgba(212, 175, 55, 0.2);
            border-color: #D4AF37;
        }

        .scroll-top-option:hover .contact-option-icon svg {
            color: #FFD700;
            animation: scrollUpBounce 0.6s ease infinite;
        }

        @@keyframes scrollUpBounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        .contact-option-content {
            flex: 1;
        }

        .contact-option-title {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .contact-option-subtitle {
            font-size: 14px;
            color: #D4AF37;
            font-weight: 500;
            direction: ltr;
            text-align: right;
        }

        .scroll-top-option .contact-option-subtitle {
            direction: rtl;
            text-align: right;
        }

        .contact-option-arrow {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .contact-option-arrow i,
        .contact-option-arrow svg {
            font-size: 18px;
            width: 18px;
            height: 18px;
            color: #D4AF37;
        }

        .contact-option:hover .contact-option-arrow {
            background: rgba(212, 175, 55, 0.2);
            transform: translateX(3px);
        }

        .contact-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3) 20%, rgba(212, 175, 55, 0.3) 80%, transparent);
            margin: 15px 0;
        }

        /* Responsive Mobile */
        @@media only screen and (max-width: 768px) {
            .floating-contact-wrapper {
                width: 300px;
                bottom: 20px;
                right: 15px;
            }

            .floating-contact-btn {
                width: 60px;
                height: 60px;
            }

            .floating-contact-btn svg {
                width: 28px;
                height: 28px;
            }

            .contact-panel-header h3 {
                font-size: 17px;
            }

            .contact-option {
                padding: 15px 16px;
            }

            .contact-option-icon {
                width: 46px;
                height: 46px;
            }

            .contact-option-icon svg,
            .contact-option-icon i {
                width: 23px;
                height: 23px;
                font-size: 23px;
            }

            .contact-option-title {
                font-size: 15px;
            }

            .contact-option-subtitle {
                font-size: 13px;
            }
        }
