@charset "UTF-8";

/* =========================================
   基础重置与变量定义
   ========================================= */
:root {
    /* 核心色板 - 高级深蓝与香槟金 */
    --primary-bg: #0F172A;
    /* 深邃午夜蓝 */
    --secondary-bg: #1E293B;
    /* 次级深蓝 */
    --accent-gold: #D4AF37;
    /* 香槟金 */
    --accent-gold-light: #F3E5AB;
    /* 浅香槟 */
    --accent-gold-dark: #AA8C2C;
    /* 深金 */

    /* 文本颜色 */
    --text-primary: #F8FAFC;
    /* 近白 */
    --text-secondary: #94A3B8;
    /* 蓝灰 */
    --text-muted: #64748B;
    /* 暗灰 */

    /* 功能色 */
    --success: #10B981;
    /* 翡翠绿 */
    --danger: #EF4444;
    /* 宝石红 */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-surface: rgba(30, 41, 59, 0.7);

    /* 阴影与圆角 */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.15);
    /* 金色微光 */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;

    /* 间距 */
    --spacing-container: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 140px;
    /* 增加底部内边距，防止被悬浮按钮遮挡 */
}

/* ... (omitted content) ... */

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary) !important;
    /* 强制覆盖蓝色 */
    text-decoration: none;
    font-size: 18px;
    /* 加大字号 */
    font-weight: 600;
    font-family: monospace;
    /* 数字等宽更整齐 */
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.phone-link:hover {
    color: var(--accent-gold);
    /* 悬停变金 */
}

/* 强制覆盖默认链接颜色 */
a {
    color: inherit;
    text-decoration: none;
}


/* =========================================
   背景装饰 (Background Atmosphere)
   ========================================= */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 100%);
}

.bg-decoration::before,
.bg-decoration::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.bg-decoration::before {
    width: 300px;
    height: 300px;
    background: var(--accent-gold);
    top: -100px;
    right: -50px;
    opacity: 0.1;
}

.bg-decoration::after {
    width: 400px;
    height: 400px;
    background: #3B82F6;
    bottom: -100px;
    left: -100px;
    opacity: 0.05;
}

/* =========================================
   通用组件 (Components)
   ========================================= */

/* 毛玻璃卡片 - 高级感核心 */
.glass-card {
    background: var(--glass-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 金色渐变文字 */
.text-gradient-gold {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 章节标题 */
.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 20px 20px;
    position: relative;
    padding-left: 12px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-gold);
}

.section-title i {
    color: var(--accent-gold);
    font-size: 18px;
}

/* =========================================
   Hero 区域 (Hero Section)
   ========================================= */
.hero {
    position: relative;
    height: 85vh;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px;
    overflow: hidden;
}

/* 背景图遮罩 */
/* 背景图遮罩 - 增强玻璃质感 */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 使用深蓝+微光叠加，制造高级玻璃底色 */
    background:
        linear-gradient(to bottom,
            rgba(15, 23, 42, 0.4) 0%,
            rgba(15, 23, 42, 0.6) 50%,
            rgba(15, 23, 42, 1) 100%),
        radial-gradient(circle at 50% 30%, rgba(30, 41, 59, 0.4) 0%, transparent 60%);
    z-index: 0;
    backdrop-filter: blur(2px);
    /* 轻微模糊前景 */
}

/* 动态背景图容器 */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/building_exterior.jpg') center/cover no-repeat;
    z-index: -1;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
    filter: blur(4px) brightness(0.8);
    /* 关键：给背景图加模糊，形成毛玻璃感 */
}

@keyframes slowZoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.2);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--accent-gold-light);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 8px;
    opacity: 0.9;
}

/* =========================================
   核心数据卡片 (Info Cards)
   ========================================= */
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    /* 增加间距 */
    padding: 0 20px;
    margin-top: -60px;
    /* 上移形成层叠感 */
    position: relative;
    z-index: 10;
}

.card {
    background: rgba(30, 41, 59, 0.85);
    /* 更深的背景 */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* 极细边框 */
    border-radius: var(--radius-md);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

/* 高亮卡片 - 金色主题 */
.highlight-card {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.15) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.card-icon {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-card .card-icon {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.card-content h3 {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 4px;
}

.big-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    font-feature-settings: "tnum";
}

.highlight-card .big-number {
    color: var(--accent-gold-light);
}

.unit {
    font-size: 12px;
    margin-left: 2px;
    color: var(--text-secondary);
    font-weight: 400;
}

/* =========================================
   画廊与功能区 (Gallery & Features)
   ========================================= */
.gallery {
    margin: 40px 20px;
    padding: 0;
    /* 移除内边距，完全靠卡片撑开 */
    border: none;
    background: transparent;
    box-shadow: none;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item.main-image {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* 位置优势列表 */
.location-advantages {
    padding: 0 20px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    margin-bottom: 16px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6) 0%, rgba(30, 41, 59, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    transition: transform 0.2s;
}

.advantage-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 20px;
    flex-shrink: 0;
}

.advantage-content h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.advantage-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =========================================
   地址与联系 (Address & Contact)
   ========================================= */
.address-card {
    margin: 0 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
}

.address-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-section {
    margin: 30px 20px;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

.qrcode {
    max-width: 180px;
    width: 200px;
    /* Keeping original width if it was intended, but max-width will cap it */
    height: 200px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    object-fit: contain;
    background: white;
    margin: 0 auto;
    /* 确保自身居中 */
    display: block;
    /* 防止inline元素特性导致的偏移 */
}

/* 确保容器也是居中的 */
.qrcode-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-card {
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px 16px;
}

.contact-info h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-info span {
    color: var(--accent-gold);
    font-family: monospace;
    font-size: 16px;
}

.call-btn {
    background: var(--accent-gold);
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =========================================
   底部悬浮栏 (Floating Action Bar)
   ========================================= */
.floating-actions {
    position: fixed;
    bottom: 24px;
    left: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 12px;
    /* 增加内边距 */
    display: flex;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 100;
    max-width: 500px;
    margin: 0 auto;
}

.float-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s;
}

.float-btn:active {
    transform: scale(0.96);
}

.phone-float {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-float {
    background: var(--accent-gold);
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* =========================================
   响应式调整 (Responsive)
   ========================================= */
@media (min-width: 768px) {
    body {
        max-width: 480px;
        margin: 0 auto;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero {
        height: 70vh;
    }

    .floating-actions {
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
        width: 440px;
    }

    .section-title::before {
        left: -12px;
    }

    .section-title {
        padding-left: 0;
    }
}

/* =========================================
   新版地图卡片设计 (New Map Design)
   ========================================= */
.map-section {
    padding: 0 20px 30px;
    margin: 0;
    border: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.map-card-design {
    position: relative;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #1e293b;
    border: 1px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-card-design:active {
    transform: scale(0.98);
}

/* 模拟地图背景 */
.map-bg-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #242f3e;
    /* 简单的网格背景模拟地图 */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

/* 模拟路线 */
.map-route {
    position: absolute;
    top: 50%;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    transform: rotate(-15deg) translateY(20px);
    opacity: 0.5;
}

/* 地图大头针 */
.map-pin {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-pin i {
    font-size: 48px;
    color: var(--danger);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    animation: bouncePin 2s infinite;
}

.pin-pulse {
    position: absolute;
    bottom: 5px;
    width: 30px;
    height: 10px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5), transparent);
    border-radius: 50%;
    animation: shadowPulse 2s infinite;
}

@keyframes bouncePin {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shadowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(0.8);
        opacity: 0.2;
    }
}

/* 遮罩信息 */
.map-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(15, 23, 42, 1) 20%, rgba(15, 23, 42, 0.8) 60%, transparent 100%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 24px;
    text-align: center;
}

.map-address-box h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-weight: 600;
}

.map-address-box p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.nav-btn-shine {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #F59E0B 100%);
    color: #0f172a;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.2s;
}

.nav-btn-shine:active {
    transform: scale(0.96);
}

.nav-btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg) translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }

    20% {
        transform: rotate(45deg) translateX(100%);
    }

    100% {
        transform: rotate(45deg) translateX(100%);
    }
}