/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif !important;
}

html, body {
    overflow: hidden;
    line-height: 1.6;
    color: #333;
}

/* 全屏滚动容器 */
.scroll-container {
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

/* 全屏板块核心样式 - 预留底部空间给箭头 */
.full-screen-section {
    width: 100%;
    height: 100vh !important;
    min-height: 100vh !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
    padding-bottom: 80px !important; /* 关键：给箭头留空间 */
}

/* 通用容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* 通用标题 */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title span {
    display: block;
    color: #b8860b;
    font-size: 14px;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: bold;
}

.section-title.light h2 {
    color: #fff;
}

/* ==========================
   🔥 导航栏改造：logo大幅放大+胶囊同步适配
========================== */
.navbar {
    position: fixed;
    top: 20px;          
    left: 0;            
    width: auto !important; 
    min-width: unset !important; 
    max-width: unset !important; 
    height: auto;
    background: rgb(236, 109, 4) !important; 
    border-radius: 0 70px 70px 0; /* 圆角同步加大，匹配大logo */
    padding: 15px 25px !important; /* 内边距大幅增加，胶囊更饱满 */
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2) !important; /* 阴影稍加重，更立体 */
    z-index: 9999;
    transition: transform 0.4s ease, opacity 0.4s ease;
    border: none;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block !important;
}
.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    max-width: unset !important;
}

/* Logo尺寸超大幅放大（核心调整） */
.logo-img {
    height: 70px !important; /* 从55px→70px，比最初40px放大75%，视觉效果拉满 */
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
}

/* 🔥 完全移除导航菜单样式 */
.nav-menu {
    display: none !important;
}

/* 首屏板块样式 */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/首頁.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-container {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    z-index: 10;
}

.hero-main-title {
    font-size: 50px;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: 2px;
    animation: slideUp 1.5s ease-out forwards;
    transform: translateY(50px);
    opacity: 0;
}

.hero-subtitle {
    font-size: 30px;
    font-weight: normal;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 2px;
    opacity: 0.95;
    animation: slideUp 1.8s ease-out forwards;
    transform: translateY(50px);
    opacity: 0;
}

/* 向下箭头终极修复：位置+层级+显示 */
.scroll-down {
    position: absolute !important;
    bottom: 70px !important; /* 电脑版保持原有位置 */
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999999 !important; /* 最高层级，不被任何元素遮挡 */
    text-decoration: none !important;
    cursor: pointer;
    animation: simpleFloat 1.8s ease-in-out infinite;
    pointer-events: auto !important;
    width: 50px;
    height: 50px;
}

/* Font Awesome图标强制显示修复 */
.scroll-down .icon {
    font-size: 40px !important;
    color: #b8860b !important;
    transition: all 0.3s ease;
    font-family: "Font Awesome 6 Free" !important; /* 强制指定字体 */
    font-weight: 900 !important; /* 必须加权重 */
}

.hero .scroll-down .icon {
    color: #ffffff !important;
}

.scroll-down:hover .icon {
    color: #d4a520 !important;
    transform: scale(1.1);
}

/* 箭头动画 */
@keyframes simpleFloat {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 内容区域通用样式 */
.content-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 17px;
    color: #555;
}

/* 深色板块 */
.dark-section {
    background: #1a1a1a;
    color: #fff;
}

.facilities-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.facility-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 200px;
    transition: all 0.3s ease;
}

.facility-card:hover {
    border-color: #b8860b;
    transform: translateY(-5px);
}

.facility-card .icon {
    width: 40px;
    height: 40px;
    fill: #b8860b;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* 底部板块 */
.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.footer-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #b8860b;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info .whatsapp-link {
    color: #25D366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info .whatsapp-link:hover {
    color: #128C7E;
    text-decoration: underline;
}

/* 免责声明样式 */
.disclaimer {
    margin-top: 25px;
    padding: 20px 0;
    text-align: left;
    color: #999;
    font-size: 12px;
    line-height: 1.6;
    border-top: 1px solid #333;
    max-width: 90%;
    margin: 25px auto 0;
}

.disclaimer p {
    margin: 0 0 8px 0;
}

.disclaimer p:first-child {
    font-weight: bold;
    color: #ccc;
    margin-bottom: 10px;
}

.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
}

/* 项目概览板块 - 电脑版保持原有样式不变 + 全部文字改为黑色 */
.about-section {
    background-color: rgb(227, 213, 200);
}

.project-overview-container {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
    width: 100%;
    margin-bottom: 20px; /* 预留图片下方空间 */
}

.overview-text {
    flex: 0 0 45%;
    min-width: 300px;
}

.overview-title {
    font-size: 30px;
    letter-spacing: 2px;
    color: #000000; /* 改为纯黑 */
    margin-bottom: 12px;
    text-align: left;
    font-weight: bold;
}

.midtown-title {
    font-size: 28px;
    letter-spacing: 1px;
    color: #000000; /* 改为纯黑 */
    margin-bottom: 8px;
    text-align: left;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    word-break: keep-all;
}

.title-line-midtown {
    width: 55px;
    height: 3px;
    background-color: #b8860b;
    margin-bottom: 18px;
}

.midtown-subtitle {
    color: #000000; /* 改为纯黑 */
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.midtown-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.midtown-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #000000; /* 改为纯黑 */
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 1px;
}

.midtown-bullet-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #b8860b;
    margin-top: 0.55em; /* 与第一行文字对齐 */
    flex-shrink: 0;
}

.title-line {
    width: 80px;
    height: 4px;
    background-color: rgb(77, 36, 15);
    margin-bottom: 30px;
}

.overview-table {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px 10px;
    font-size: 16px;
    color: #000000;
}

.table-label {
    font-weight: 600;
    color: #000000; /* 改为纯黑 */
    letter-spacing: 1px;
    font-size: 16px;
    text-align: left;
}

.table-value {
    font-size: 16px;
    letter-spacing: 1px;
    color: #000000; /* 改为纯黑 */
    text-align: left;
    white-space: nowrap;
}

.overview-image {
    flex: 0 0 55%;
    min-width: 300px;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: none; /* 去掉四周阴影：只保留图片本身与动画 */
    /* 项目资料区需要“完整显示图片”，避免 cover 导致裁切 */
    object-fit: contain;
    /* 放大上限：不裁切但尽量占满版块 */
    max-height: min(520px, 72vh);
    /* 纵向图在限高后会变窄，居中可避免电脑版看起来“歪一边” */
    margin: 0 auto;
    display: block;
}

/* 地理交通/教育配套板块 */
#location.location-section,
#education.location-section {
    background-color: rgb(227, 213, 200);
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#location .geo-layout,
#education .geo-layout {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 40px !important;
    align-items: center !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#location .geo-text-wrapper,
#education .geo-text-wrapper {
    flex: 4 !important;
    min-width: unset !important;
    padding: 20px 0;
}

/* 核心修复：教育板块标题强制一行+缩小字体 */
#location .geo-main-title,
#education .geo-main-title {
    font-size: 40px;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 12px;
    text-align: left;
    font-weight: bold;
    white-space: nowrap; /* 强制一行 */
    overflow: hidden; /* 隐藏溢出 */
    text-overflow: ellipsis; /* 超出显示省略号（可选） */
}

#location .geo-title-line,
#education .geo-title-line {
    width: 80px;
    height: 4px;
    background-color: rgb(77, 36, 15);
    margin-bottom: 30px;
}

#location .geo-desc,
#education .geo-desc {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 1px;
}

#location .geo-image-wrapper,
#education .geo-image-wrapper {
    flex: 6 !important;
    min-width: unset !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 会所板块专属样式 */
#clubhouse.location-section {
    background-color: rgb(227, 213, 200);
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#clubhouse .geo-layout {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 50px !important;
    align-items: center !important;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

#clubhouse .geo-text-wrapper {
    flex: 5 !important;
    min-width: unset !important;
    padding: 30px 40px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

#clubhouse .geo-main-title {
    font-size: 40px;
    letter-spacing: 3px;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
    font-weight: bold;
    line-height: 1.3;
}

#clubhouse .geo-title-line {
    width: 100px;
    height: 4px;
    background-color: rgb(77, 36, 15);
    margin-bottom: 35px;
}

#clubhouse .geo-desc {
    font-size: 16px !important;
    color: #333;
    line-height: 2.0 !important;
    margin: 0;
    letter-spacing: 1.2px;
    text-align: justify;
    word-break: break-word;
}

#clubhouse .geo-image-wrapper {
    flex: 7 !important;
    min-width: unset !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 通用图片/缩略图样式 */
.geo-main-img-box {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.geo-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.geo-thumb-box {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    justify-content: flex-start !important;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 5px;
}

.geo-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.geo-thumb.active {
    opacity: 1;
    border-color: #C82C2C;
    transform: scale(1.05);
}

.geo-thumb:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

/* 图片预览弹窗 */
.image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.viewer-main-img {
    max-width: 90%;
    max-height: 75vh;
    object-fit: contain;
}

.viewer-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer-nav i {
    font-size: 30px;
    color: #fff;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.viewer-nav:hover i {
    color: #b8860b;
}

.viewer-prev {
    left: 20px;
}

.viewer-next {
    right: 20px;
}

.viewer-thumbnails {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    overflow-x: auto;
    padding: 10px 0;
}

.viewer-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.viewer-thumb.active {
    opacity: 1;
    border-color: #b8860b;
    transform: translateY(-5px);
}

.viewer-thumb:hover {
    opacity: 0.9;
}

/* 滚动动画 */
.animate-container {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-container.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate-container.animated .animate-item:nth-child(1) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.animate-container.animated .animate-item:nth-child(2) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

/* 项目概览图片交互 */
#overviewMainImage {
    cursor: pointer;
    transition: transform 0.3s ease;
}

#overviewMainImage:hover {
    transform: scale(1.02);
}

.geo-main-img, .main-image {
    transition: opacity 0.5s ease, transform 0.3s ease;
}

.scroll-down, .icon, .animate-container, .animate-item {
    will-change: transform, opacity;
    transform: translateZ(0);
}

img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* ==========================
   移动端同步放大
========================== */
/* ==========================
   移动端同步超大幅放大
========================== */
@media (max-width: 768px) {
    .navbar {
        top: 15px;
        padding: 12px 20px !important; /* 移动端内边距同步加大 */
        border-radius: 0 60px 60px 0;
        width: auto !important;
        display: inline-block !important;
    }
    .logo-img {
        height: 50px !important; /* 移动端从40px→50px，放大25%，足够醒目 */
    }
}
    /* 窄屏下减少左右内边距，给标题更多可用宽度 */
    .hero-text-container {
        padding: 0 4px !important;
        max-width: 100% !important;
    }

    .nav-container {
        justify-content: flex-start; /* 手机端也保持左上角 */
        padding: 0;
    }

    /* 🔥 完全隐藏导航菜单 */
    .nav-menu {
        display: none !important;
    }

    .hero-main-title {
        /* 强制单行时需要更小字号确保不横向溢出裁切 */
        font-size: 18px;
        letter-spacing: -0.2px;
        line-height: 1.2;
        white-space: nowrap;
        word-break: keep-all;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 0.15px;
        line-height: 1.35;
        white-space: nowrap;
        word-break: keep-all;
    }

    /* 🔥 箭头：彻底避开底部按钮 */
    .scroll-down {
        bottom: 160px !important;
        width: 40px !important;
        height: 40px !important;
        z-index: 999999 !important;
    }

    .scroll-down .icon {
        font-size: 30px !important;
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
    }

    /* 🔥 🔥 项目板块手机版：1:1复刻交通/教育板块完美布局 */
    .about-section {
        padding: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .project-overview-container {
        flex-direction: column !important;
        /* 缩短文字区和图片区的间距 */
        gap: 12px !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 1200px !important;
    }

    .overview-text, .overview-image {
        /* 不要在列布局下撑满高度，避免造成大留白 */
        flex: 0 0 auto !important;
        min-width: unset !important;
        width: 100% !important;
    }

    /* 标题样式和交通/教育完全一致 */
    .overview-title {
        font-size: 20px !important;
        letter-spacing: 1px !important;
        white-space: nowrap !important;
        color: #000000 !important; /* 移动端黑色 */
    }

    .title-line {
        width: 60px !important;
    }

    .midtown-title {
        font-size: 20px !important;
        letter-spacing: 0.8px !important;
        margin-bottom: 6px !important;
        white-space: nowrap !important;
        color: #000000 !important; /* 移动端黑色 */
    }

    .title-line-midtown {
        width: 45px !important;
        height: 3px !important;
        margin-bottom: 12px !important;
    }

    .midtown-subtitle {
        font-size: 14px !important;
        margin-bottom: 12px !important;
        letter-spacing: 0.5px !important;
        color: #000000 !important; /* 移动端黑色 */
    }

    .midtown-bullets {
        gap: 10px !important;
    }

    .midtown-bullet {
        font-size: 12px !important;
        letter-spacing: 0.5px !important;
        line-height: 1.65 !important;
        color: #000000 !important; /* 移动端黑色 */
    }

    .midtown-bullet-dot {
        width: 10px !important;
        height: 10px !important;
        border-width: 2px !important;
        margin-top: 0.6em !important;
    }

    .overview-table {
        grid-template-columns: 95px 1fr !important; /* 精准调整标签列宽度，放下完整文字 */
        gap: 10px 10px !important; /* 优化间距，更美观 */
        width: 100% !important;
        /* 移除统一字号，单独给label/value设置 */
    }

    .table-label {
        white-space: nowrap !important; /* 标签不换行 */
        overflow: visible !important; /* 完整显示，不截断 */
        text-overflow: unset !important;
        padding-right: 5px !important; /* 标签右侧留白，和数值分开 */
        font-size: 11px !important; /* 标签单独设为11px */
        color: #000000 !important; /* 移动端黑色 */
    }

    .table-value {
        white-space: nowrap !important; /* 数值不换行 */
        overflow: visible !important; /* 完整显示，不截断 */
        text-overflow: unset !important;
        font-size: 11px !important; /* 数值单独设为11px */
        color: #000000 !important; /* 移动端黑色 */
    }

    /* 强制表格容器宽度100%，对齐更规整 */
    .overview-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 5px !important; /* 左右留白，不贴边 */
    }

    /* 🔥 图片容器+图片：和交通/教育一模一样 */
    .overview-image {
        width: 100% !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }

    .main-image {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        border-radius: 8px !important;
        box-shadow: none !important;
        /* 手机端也不裁切，且避免全屏容器 `overflow: hidden` 造成图片被截掉 */
        object-fit: contain !important;
        max-height: min(650px, 78vh) !important;
    }

    /* 地理/教育/会所板块手机版（✅ 修复2：增加底部内边距，缩略图不遮挡按钮） */
    #location .geo-layout,
    #education .geo-layout,
    #clubhouse .geo-layout {
        flex-direction: column !important;
        gap: 20px !important;
        padding-bottom: 40px !important; /* 关键：底部留白，避开按钮 */
    }

    #location .geo-text-wrapper,
    #education .geo-text-wrapper,
    #clubhouse .geo-text-wrapper {
        flex: 1 !important;
        padding: 0 !important;
    }

    #location .geo-main-title,
    #education .geo-main-title {
        font-size: 20px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        letter-spacing: 1px !important;
    }

    #clubhouse .geo-main-title {
        font-size: 22px !important;
        letter-spacing: 2px;
        white-space: nowrap !important;
    }

    #clubhouse .geo-desc {
        font-size: 15px !important;
        line-height: 1.8 !important;
    }

    .geo-thumb-box {
        margin-top: 10px !important; /* 缩略图上移，不贴底 */
    }

    .geo-thumb {
        width: 60px;
        height: 60px;
    }

    .geo-title-line {
        width: 60px;
    }

    /* 弹窗移动端适配 */
    .viewer-nav i {
        font-size: 24px !important;
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
    }

    .viewer-close {
        font-size: 30px;
        top: 15px;
        right: 20px;
    }

    .viewer-thumb {
        width: 60px;
        height: 60px;
    }

    .viewer-main-img {
        max-width: 95%;
        max-height: 65vh;
    }

    /* 免责声明 */
    .disclaimer {
        font-size: 11px;
        padding: 15px 0;
    }

    /* 修复Font Awesome图标显示 */
    .fa-solid, .fa-brands {
        display: inline-block !important;
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
    }

    .fa-brands {
        font-family: "Font Awesome 6 Brands" !important;
    }
}

/* 图标修复 */
.contact-info i {
    font-size: 18px !important;
    color: #b8860b !important;
    width: 25px !important;
    display: inline-block !important;
    margin-right: 8px !important;
    text-align: center !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* 超窄屏（iPhone 13 等）再收一档，防止右侧被截掉 */
@media (max-width: 420px) {
    .hero-text-container {
        padding: 0 3px !important;
        max-width: 100% !important;
    }

    .hero-main-title {
        font-size: 18px;
        letter-spacing: -0.3px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .contact-info i {
        font-size: 16px !important;
        width: 22px !important;
    }
}