/* ===================================
   预约页面样式 v5.0
   Appointment Page Styles
   =================================== */

/* 页面标题区 */
.page-header {
    background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-800));
    color: white;
    padding: var(--space-24) 0 var(--space-16);
    margin-top: -120px;
    padding-top: calc(120px + var(--space-16));
}

.page-header-sm {
    padding: var(--space-20) 0 var(--space-12);
    padding-top: calc(120px + var(--space-12));
}

.page-header-content {
    text-align: center;
}

.page-header h1 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-4);
    color: white;
}

.page-header p {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-6);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: var(--text-2xl);
    }
}

/* 预约区域 */
.appointment-section {
    background: var(--bg-secondary);
    padding: var(--space-16) 0;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-8);
    align-items: start;
}

/* 表单卡片 */
.form-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.form-card h2 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.form-subtitle {
    color: var(--text-muted);
    margin-bottom: var(--space-6);
}

.appointment-form {
    margin-top: var(--space-6);
}

.form-privacy {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-4);
}

.form-privacy i {
    color: var(--color-success-500);
}

/* 信息卡片 */
.info-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sm);
}

.info-card h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.info-card-highlight {
    background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-600));
    color: white;
}

.info-card-highlight h3 {
    color: white;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.contact-list i {
    width: 40px;
    height: 40px;
    background: var(--color-primary-50);
    color: var(--color-primary-600);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-list div {
    display: flex;
    flex-direction: column;
}

.contact-list .label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.contact-list .value {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.benefit-list i {
    color: var(--color-accent-300);
}

@media (max-width: 1024px) {
    .appointment-grid {
        grid-template-columns: 1fr;
    }
    
    .appointment-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    .appointment-info {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: var(--space-6);
    }
}

/* 空状态 */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-16);
    color: var(--text-muted);
}

.empty-state i {
    font-size: var(--text-6xl);
    margin-bottom: var(--space-4);
    opacity: 0.5;
}

.empty-state p {
    font-size: var(--text-lg);
}

/* CTA小区域 */
.cta-section-sm {
    background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-800));
    color: white;
    text-align: center;
    padding: var(--space-16) 0;
}

.cta-section-sm h2 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-4);
}

.cta-section-sm p {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-6);
}

@media (max-width: 768px) {
    .cta-section-sm h2 {
        font-size: var(--text-2xl);
    }
}

/* 地图区域 */
.map-section {
    background: white;
}

.map-container {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.map-placeholder i {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-4);
    color: var(--color-primary-300);
}

.map-placeholder p {
    font-size: var(--text-lg);
}

.map-hint {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-top: var(--space-2);
}
