/**
 * Footer Japanese Optimization
 * 日语页脚优化样式
 * 
 * 优化日语站点页脚的咨询按钮和布局
 * 
 * @package Corporate_Theme
 * @since 1.0.0
 */

/* 日语页脚咨询按钮优化 */
html[lang="ja-JP"] .site-footer .btn-footer-contact,
html[lang="ja"] .site-footer .btn-footer-contact {
    /* 增加按钮宽度以适应日语文字 */
    min-width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    
    /* 优化文字间距 */
    letter-spacing: 0.05em;
    
    /* 增强视觉效果 */
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
}

html[lang="ja-JP"] .site-footer .btn-footer-contact:hover,
html[lang="ja"] .site-footer .btn-footer-contact:hover {
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
}

/* 图标优化 */
html[lang="ja-JP"] .site-footer .btn-footer-contact .dashicons,
html[lang="ja"] .site-footer .btn-footer-contact .dashicons {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* 联系信息区域优化 */
html[lang="ja-JP"] .site-footer .footer-contact,
html[lang="ja"] .site-footer .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

html[lang="ja-JP"] .site-footer .footer-widget-title,
html[lang="ja"] .site-footer .footer-widget-title {
    margin-bottom: 1.2rem;
    font-size: 1.25rem;
}

/* 响应式优化 */
@media (max-width: 768px) {
    html[lang="ja-JP"] .site-footer .btn-footer-contact,
    html[lang="ja"] .site-footer .btn-footer-contact {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    html[lang="ja-JP"] .site-footer .btn-footer-contact .dashicons,
    html[lang="ja"] .site-footer .btn-footer-contact .dashicons {
        font-size: 1.1rem;
        margin-right: 0.4rem;
    }
}

/* iPad 端优化 */
@media (min-width: 769px) and (max-width: 1024px) {
    html[lang="ja-JP"] .site-footer .btn-footer-contact,
    html[lang="ja"] .site-footer .btn-footer-contact {
        padding: 0.95rem 1.4rem;
        font-size: 0.98rem;
    }
}

/* 按钮文字居中对齐 */
html[lang="ja-JP"] .site-footer .btn-footer-contact,
html[lang="ja"] .site-footer .btn-footer-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* 增强可访问性 - 焦点状态 */
html[lang="ja-JP"] .site-footer .btn-footer-contact:focus,
html[lang="ja"] .site-footer .btn-footer-contact:focus {
    outline: 3px solid rgba(0, 123, 255, 0.5);
    outline-offset: 2px;
}

/* 优化按钮在不同背景下的对比度 */
html[lang="ja-JP"] .site-footer .btn-footer-contact,
html[lang="ja"] .site-footer .btn-footer-contact {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    color: #ffffff;
    font-weight: 500;
}

html[lang="ja-JP"] .site-footer .btn-footer-contact:hover,
html[lang="ja"] .site-footer .btn-footer-contact:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    color: #ffffff;
}
