/* Modern Japanese Contact Buttons */
.social-contact-wrapper {
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.social-contact-heading {
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    font-size: 1.1rem;
    color: #424242;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.social-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.social-contact-btn {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    min-width: 110px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-contact-btn i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: #ffffff;
}

.social-btn-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.social-recommend-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(255,71,87,0.3);
}

/* Button Variants */
.social-messenger-btn {
    background: linear-gradient(135deg, #00B2FF, #006AFF);
}

.social-whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-line-btn {
    background: linear-gradient(135deg, #06C755, #00B900);
}

.social-wechat-btn {
    background: linear-gradient(135deg, #2DC100, #1AAD19);
}

.social-zalo-btn {
    background: linear-gradient(135deg, #0068FF, #0054CC);
}

.social-zalo-icon {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.5rem;
}

/* Hover effect */
.social-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.social-contact-btn:hover::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .social-contact-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .social-contact-btn {
        min-width: 100px;
        padding: 0.5rem 0.8rem;
    }
    
    .social-contact-btn i,
    .social-zalo-icon {
        font-size: 1rem;
    }
    
    .social-btn-text {
        font-size: 0.75rem;
    }
    
    .social-recommend-badge {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
    }
}

/* Toast Notification Styles */
.copy-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    transition: bottom 0.3s ease-in-out;
    width: auto;
    max-width: 90%;
}

.copy-toast.visible {
    bottom: 20px;
}

.copy-toast-content {
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.copy-toast i {
    color: #4CAF50;
    font-size: 20px;
}

.toast-message {
    text-align: left;
}

.toast-message strong {
    color: #4CAF50;
}

@media (max-width: 768px) {
    .copy-toast-content {
        font-size: 13px;
        padding: 12px 20px;
    }
}

/* Styles cho map-wrapper */
.map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.map-wrapper iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 8px;
}

/* Styles cho map info */
.map-info {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
}

.map-link {
    color: #333;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #0d6efd;
}

.map-link i {
    color: #dc3545;
    margin-right: 8px;
}

.map-link span {
    font-weight: 500;
    font-size: 1.1em;
}

.map-link small {
    display: block;
    color: #6c757d;
    margin-top: 4px;
    margin-left: 24px;
    line-height: 1.4;
}