/* ============================================================
 * 老宝贝陪诊 - 医院级精装模板样式
 * 说明：本文件补充 /t/default/common.css 未包含的医院页面样式。
 *       加载顺序：common.css → premium-hospital.css
 * ============================================================ */

/* ---- 导航栏 ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .95);
    padding: 1rem 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a5f;
    text-decoration: none;
}
.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.nav-link {
    text-decoration: none;
    color: #6B7280;
    font-size: 1rem;
}
.nav-link:hover,
.nav-link.active {
    color: #3B82F6;
}
.contact-btn {
    background: linear-gradient(135deg, #3B82F6, #10B981);
    color: #fff;
    padding: .6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: .95rem;
}

/* ---- Hero 区域 ---- */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #1a56db, #7c3aed);
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}
.hero h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 1rem;
}
.hero .highlight {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.05rem;
    opacity: .9;
    margin-bottom: 1.5rem;
}
.hero a {
    display: inline-block;
    background: #fff;
    color: #1a56db;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    margin: 0 .5rem;
    transition: all .3s;
}
.hero a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
}
.hero a.tel-link {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .3);
}
.hero a.tel-link:hover {
    background: rgba(255, 255, 255, .2);
    border-color: #fff;
}

/* ---- 内容区容器 ---- */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

/* ---- 面包屑 ---- */
.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: .9rem;
    color: #6B7280;
}
.breadcrumb a {
    color: #3B82F6;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* ---- AI推荐理由 ---- */
.ai-section {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    border: 1px solid #e5e7eb;
}
.ai-section h2 {
    color: #1e3a5f;
    margin-bottom: 1rem;
}
.ai-section ul {
    padding-left: 1.5rem;
    color: #6B7280;
}
.ai-section li {
    margin-bottom: .5rem;
    line-height: 1.7;
}

/* ---- 服务卡片 ---- */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.svc {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    border: 1px solid #e5e7eb;
    transition: all .3s;
}
.svc:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    border-color: #3B82F6;
}
.svc h3 {
    color: #1e3a5f;
    margin-bottom: .5rem;
    font-size: 1.1rem;
}
.svc p {
    color: #6B7280;
    font-size: .9rem;
    margin-bottom: .75rem;
    line-height: 1.5;
}
.svc .price {
    color: #3B82F6;
    font-weight: 700;
}
.svc a {
    display: inline-block;
    margin-top: .5rem;
    background: linear-gradient(135deg, #3B82F6, #10B981);
    color: #fff;
    padding: .5rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: .9rem;
    transition: all .3s;
}
.svc a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, .4);
}

/* ---- CTA 行动号召 ---- */
.cta {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 2rem;
}
.cta h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.cta .big-tel {
    display: inline-block;
    background: linear-gradient(135deg, #3B82F6, #10B981);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 6px 25px rgba(59, 130, 246, .5);
    transition: all .3s;
}
.cta .big-tel:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(59, 130, 246, .6);
}

/* ---- 页脚 ---- */
.footer {
    background: #0f172a;
    color: #fff;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}
.footer p {
    opacity: .7;
    font-size: .9rem;
}
.footer a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
}
.footer a:hover {
    color: #fff;
}

/* ---- 响应式 ---- */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
    }
    .hero a {
        padding: .8rem 1.5rem;
        font-size: .95rem;
        margin: .25rem;
    }
    .services {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 1.5rem 1rem;
    }
}
