/* contact-widget.css - IT Group Travel */
.ct-widget-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #C41E3A, #9B1B30);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(196,30,58,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #D4AF37;
}
.ct-widget-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(196,30,58,0.6);
}
.ct-widget-btn i {
    color: #FFD700;
    font-size: 22px;
}
.ct-close-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}
.ct-widget-panel {
    position: fixed;
    bottom: 90px;
    left: 24px;
    z-index: 9998;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    padding: 24px 20px;
    min-width: 240px;
    display: none;
    flex-direction: column;
    gap: 14px;
    border: 1px solid #e0e0e0;
}
.ct-widget-panel.open {
    display: flex;
}
.ct-panel-title {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A2E;
    text-align: center;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 10px;
}
.ct-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
    color: #333;
    font-size: 14px;
    border: 1px solid #f0f0f0;
}
.ct-contact-item:hover {
    background: #fdf2f0;
    border-color: #C41E3A;
}
.ct-contact-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
}
.ct-icon-wechat { background: #07C160; }
.ct-icon-whatsapp { background: #25D366; }
.ct-icon-email { background: #EA4335; }
.ct-icon-phone { background: #1A1A2E; }
.ct-item-label { font-weight: 600; }
.ct-item-desc { font-size: 12px; color: #999; }
.ct-wechat-qr {
    display: none;
    text-align: center;
    padding: 10px;
}
.ct-wechat-qr.show {
    display: block;
}
.ct-wechat-qr img {
    width: 180px;
    height: 180px;
    border-radius: 8px;
}
.ct-wechat-qr p {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}
@media (max-width: 768px) {
    .ct-widget-btn { bottom: 16px; left: 16px; }
    .ct-widget-panel { bottom: 80px; left: 16px; }
}
