/* ==========================================================================
   MK Sports - Service Page Styles
   服务栏目页共用样式
   ========================================================================== */

/* Service Detail Page */
.service-detail { padding: 4rem 0 6rem; background: #0A0A0A; }
.service-detail .section-container { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.detail-content h2 { font-size: 1.6rem; color: #E8D5C4; margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 2px solid #D4AF37; }
.detail-content h3 { font-size: 1.2rem; color: #D4AF37; margin: 2rem 0 1rem; }
.detail-content p { color: #bbb; font-size: 0.9rem; line-height: 1.9; margin-bottom: 1rem; }

/* Sidebar */
.detail-sidebar { position: sticky; top: 100px; height: fit-content; }
.sidebar-block { background: rgba(44,24,24,0.4); border: 1px solid rgba(212,175,55,0.1); padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-block h4 { color: #D4AF37; font-size: 1rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(212,175,55,0.2); }
.sidebar-block ul li { padding: 0.4rem 0; }
.sidebar-block ul li a { color: #aaa; font-size: 0.85rem; display: block; transition: color 0.3s; }
.sidebar-block ul li a:hover { color: #D4AF37; padding-left: 0.3rem; }
.contact-block p { color: #aaa; font-size: 0.8rem; line-height: 2; }
.contact-block .btn-primary { display: block; text-align: center; margin-top: 1rem; width: 100%; }

/* Responsive */
@media (max-width: 768px) {
    .service-detail .section-container { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; }
}
