
/* Left Panel - Contact Info */
.contact-info-panel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    height: 100%;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-info-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
}

.contact-info-item {
    margin-bottom: 25px;
}

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

.contact-info-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.contact-info-description {
    font-size: 16px;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.contact-info-details {
    font-size: 16px;
    font-weight: 500;
    color: white;
    line-height: 1.6;
}

/* Professional Connect Links */
.connect-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.connect-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.connect-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.connect-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 22px;
    transition: all 0.3s ease;
}

.connect-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.connect-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2px;
}

.connect-subtitle {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.2;
}

/* Platform-specific colors */
.messenger-link .connect-icon {
    background: #0084FF;
}

.webchat-link .connect-icon {
    background: #000;
}

.whatsapp-link .connect-icon {
    background: #25D366;
}

.telegram-link .connect-icon {
    background: #0088CC;
}

.youtube-link .connect-icon {
    background: #FF0000;
}

.support-link .connect-icon {
    background: #28A745;
}

.messenger-link:hover .connect-icon {
    background: #0066CC;
    transform: scale(1.1);
}

.webchat-link:hover .connect-icon {
    background: #333;
    transform: scale(1.1);
}

.whatsapp-link:hover .connect-icon {
    background: #1DA851;
    transform: scale(1.1);
}

.telegram-link:hover .connect-icon {
    background: #006699;
    transform: scale(1.1);
}

.youtube-link:hover .connect-icon {
    background: #CC0000;
    transform: scale(1.1);
}

.support-link:hover .connect-icon {
    background: #218838;
    transform: scale(1.1);
}

/* Support Instructions */
.support-instructions {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-note {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.support-note i {
    margin-top: 2px;
    color: #FFC107;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-info-panel {
        min-height: auto;
        padding: 40px 30px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-info-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .contact-page-wrapper {
        padding: 40px 0;
    }

    .contact-content-wrapper {
        margin: 0 15px;
    }

    .contact-info-panel {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 32px;
    }

    /* Mobile Connect Links */
    .connect-links {
        gap: 10px;
    }

    .connect-link {
        padding: 10px 12px;
    }

    .connect-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
        font-size: 20px;
    }

    .connect-title {
        font-size: 15px;
    }

    .connect-subtitle {
        font-size: 12px;
    }
}
