/**
 * 石峰谭文剑中医脑病专科医院 - 前台样式
 * 版本：2.0
 * 更新：2026-04-29
 */

/* ==============================================
   0. CSS 变量
   ============================================== */
:root {
    --primary-green: #3DA76E;
    --primary-green-dark: #2E8B57;
    --primary-green-darker: #1B5E20;
    --primary-gold: #D4A853;
    --primary-gold-dark: #C49A3D;
    --light-green: #E8F5E9;
    --lighter-green: #f4f8f5;
    --text-primary: #333;
    --text-secondary: #666;
    --text-muted: #999;
    --border-color: #e8e8e8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ==============================================
   1. 通用
   ============================================== */
.body-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.content-body {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.content-body::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
}

.content-section {
    margin-bottom: 32px;
}

.content-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.category {
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 500;
}

/* ==============================================
   2. 按钮
   ============================================== */
.btn-gold,
.btn-primary-custom {
    display: inline-block;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    text-align: center;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: #fff;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--primary-gold-dark), var(--primary-gold));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: #fff;
    box-shadow: 0 2px 8px rgba(61, 167, 110, 0.3);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green-darker));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 167, 110, 0.4);
}

.btn-outline-green {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-outline-green:hover {
    background: var(--primary-green);
    color: white;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-normal);
    border: none;
    width: 100%;
    cursor: pointer;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green-darker));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 167, 110, 0.3);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-green);
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition-normal);
}

.back-btn:hover {
    background: var(--primary-green);
    color: white;
}

/* ==============================================
   3. 卡片
   ============================================== */
.card-hover {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* 医生卡片 */
.doc-card {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.doc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(61, 167, 110, 0.15);
    border-color: transparent;
}

.doc-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    transition: height var(--transition-normal);
}

.doc-img-wrap {
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-green), #C8E6C9);
    position: relative;
}

.doc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s;
}

.doc-card:hover .doc-img-wrap img {
    transform: scale(1.03);
}

.doc-placeholder {
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-green), #C8E6C9);
}

.doc-placeholder i {
    font-size: 4rem;
    color: var(--primary-green);
    opacity: 0.4;
}

.doc-info {
    padding: 22px 20px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.doc-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.doc-title {
    font-size: 0.8rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 6px;
}

.doc-dept {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.doc-specialty {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.doc-divider {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), #8BC34A);
    border-radius: 2px;
    margin-bottom: 14px;
}

.doc-actions {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}

.doc-btn {
    flex: 1;
    padding: 9px 8px;
    border-radius: 24px;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-fast);
    letter-spacing: 0.3px;
}

.doc-btn-detail {
    border: 1.5px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
}

.doc-btn-detail:hover {
    background: var(--light-green);
}

.doc-btn-appt {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
}

.doc-btn-appt:hover {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green-darker));
}

/* 内容卡片 */
.content-card {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.content-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
}

/* 科室卡片 */
.dept-card {
    display: block;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 16px;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.dept-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: inherit;
}

.dept-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
    transition: height var(--transition-normal);
}

.dept-card:hover::after {
    height: 4px;
}

.dept-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.dept-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.dept-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==============================================
   4. 布局
   ============================================== */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.section-title-main {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.section-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.page-section {
    padding: 50px 0;
    background: var(--lighter-green);
}

.sidebar-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 20px;
}

.sidebar-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ==============================================
   5. 表单
   ============================================== */
.form-control {
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 0.93rem;
    transition: all var(--transition-normal);
    background: #fafbfc;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(61, 167, 110, 0.1);
    background: white;
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--primary-green);
    border-radius: 2px;
}

.field-error {
    color: #E53935;
    font-size: 0.78rem;
    margin-top: 4px;
    display: none;
}

.field-error.show {
    display: block;
}

.field-ok {
    color: #43A047;
    font-size: 0.78rem;
    margin-top: 4px;
    display: none;
}

.field-ok.show {
    display: block;
}

/* ==============================================
   6. 提示 / 弹窗
   ============================================== */
.tip-box {
    background: #f0f9f4;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 28px;
    border: 1px solid #c8e6cb;
}

.tip-box h5 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.tip-box ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.tip-box li {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.9;
}

/* Alert 弹窗 */
.custom-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-alert .alert-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.custom-alert .alert-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    line-height: 1;
}

.custom-alert .alert-msg {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.custom-alert .alert-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: 12px 48px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(61, 167, 110, 0.35);
    transition: opacity var(--transition-fast);
}

.custom-alert .alert-btn:hover {
    opacity: 0.85;
}

/* ==============================================
   7. 联系信息
   ============================================== */
.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: padding-left var(--transition-fast);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row:hover {
    padding-left: 6px;
}

.info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-green);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.info-row:hover .info-icon {
    background: var(--primary-green);
    color: white;
}

/* ==============================================
   8. 排班 / 时间
   ============================================== */
.schedule-tag {
    display: inline-block;
    background: var(--light-green);
    color: var(--primary-green);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    margin: 3px;
    transition: all var(--transition-fast);
}

.schedule-tag:hover {
    background: var(--primary-green);
    color: white;
}

.time-slot {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.85rem;
    background: #f5f5f5;
    color: var(--text-secondary);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.time-slot:hover {
    background: var(--light-green);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.time-slot.selected {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
}

.date-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.date-card:hover {
    border-color: var(--primary-green);
}

.date-card.selected {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
}

/* ==============================================
   9. 加载状态
   ============================================== */
.global-loading {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 99998;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
}

.global-loading.show {
    display: flex;
}

.global-loading .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--light-green);
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* 骨架屏 */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ==============================================
   10. 分页
   ============================================== */
.pagination {
    gap: 4px;
    flex-wrap: wrap;
}

.page-link {
    border-radius: 8px !important;
    margin: 0;
    font-size: 0.85rem;
    min-width: 36px;
    text-align: center;
    color: var(--primary-green);
    border: 1px solid #c8e6cb;
    padding: 8px 12px;
    transition: all var(--transition-fast);
}

.page-link:hover {
    background: var(--light-green);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.page-item.active .page-link {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.page-item.disabled .page-link {
    color: #adb5bd;
    cursor: not-allowed;
    background: #f8f9fa;
}

/* ==============================================
   11. 面包屑
   ============================================== */
.breadcrumb {
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary-green);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* ==============================================
   12. 搜索框
   ============================================== */
.search-form .form-control {
    border-radius: 25px 0 0 25px;
    border: 2px solid var(--primary-green);
    padding: 10px 16px;
}

.search-form .btn {
    background: var(--primary-green);
    color: white;
    border-radius: 0 25px 25px 0;
    padding: 10px 20px;
    border: none;
}

.search-form .btn:hover {
    background: var(--primary-green-dark);
}

/* ==============================================
   13. 步骤指示器
   ============================================== */
.steps-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.step-item {
    display: flex;
    align-items: center;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0e0e0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.step-circle.active,
.step-circle.completed {
    background: var(--primary-green);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 500;
}

.step-line {
    width: 40px;
    height: 2px;
    background: #e0e0e0;
    transition: all var(--transition-normal);
}

/* ==============================================
   14. 顶部栏
   ============================================== */
.top-bar {
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.top-bar-time {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-time i {
    color: var(--primary-gold);
}

.top-bar-phones {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar-phone:hover {
    color: var(--primary-green);
}

.top-bar-phone i {
    color: var(--primary-green);
}

/* ==============================================
   15. 导航栏
   ============================================== */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-green) !important;
}

.navbar-brand:hover {
    color: var(--primary-green-dark) !important;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 2px;
    border-radius: 20px;
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--primary-green) !important;
    background: var(--light-green);
}

.nav-link.active {
    color: #fff !important;
    background: var(--primary-green);
}

/* 下拉菜单 */
.nav-item.dropdown .dropdown-toggle::after {
    margin-left: 6px;
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 8px;
    min-width: 140px;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: var(--light-green);
    color: var(--primary-green);
}

.dropdown-item.active {
    background: var(--primary-green);
    color: #fff;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ==============================================
   16. 页脚
   ============================================== */
footer {
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-green);
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

footer ul li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

footer ul li i {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ==============================================
   17. 响应式
   ============================================== */
@media (max-width: 768px) {
    .content-body {
        padding: 24px 20px;
    }
    
    .doc-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .doctor-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .section-title-main {
        font-size: 1.5rem;
    }
    
    .step-content {
        display: none;
    }
    
    .step-line {
        width: 20px;
    }
    
    .step-label {
        display: none;
    }
    
    .doc-img-wrap,
    .doc-placeholder {
        max-height: 250px;
    }
    
    .sidebar-card {
        position: static;
        margin-top: 20px;
    }
    
    /* 顶部栏手机端优化 */
    .top-bar {
        padding: 6px 0;
    }
    
    .top-bar-inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .top-bar-time-text {
        font-size: 0.75rem;
    }
    
    .top-bar-phones {
        gap: 12px;
    }
    
    .top-bar-phone {
        font-size: 0.8rem;
    }
    
    .top-bar-phone span {
        display: none;
    }
    
    .top-bar-phone i {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 0.95rem;
    }
    
    footer {
        padding: 40px 0 20px;
    }
    
    footer h5 {
        margin-top: 20px;
    }
}
