/* ===== RESET & 基础变量 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.zhao886-body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1f1a17;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.zhao886-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 透明导航栏 */
.zhao886-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zhao886-header.scrolled {
    background-color: rgba(20, 15, 12, 0.92);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.zhao886-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zhao886-logo-img {
    height: 48px;
    width: auto;
    filter: brightness(1.1);
}

.zhao886-nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.zhao886-nav-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: 0.2s;
    padding: 8px 0;
    position: relative;
}

.zhao886-nav-link:hover, .zhao886-nav-link.active {
    color: #e0aa7e;
}

.zhao886-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e0aa7e;
}

/* 移动端菜单 */
.zhao886-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 6px;
}

.zhao886-mobile-toggle span {
    width: 26px;
    height: 2px;
    background-color: #fff;
    transition: 0.2s;
}

/* HERO 首屏 */
.zhao886-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.zhao886-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.zhao886-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 100%);
    z-index: 1;
}

.zhao886-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.zhao886-hero-title {
    font-size: 4rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.zhao886-hero-title span {
    font-size: 1.8rem;
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

.zhao886-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.zhao886-btn {
    display: inline-block;
    padding: 14px 38px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 1px;
}

.zhao886-btn-primary {
    background-color: #8b3c1c;
    color: white;
    border: 1px solid #8b3c1c;
}

.zhao886-btn-primary:hover {
    background-color: #5e2a12;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.zhao886-btn-outline {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.zhao886-btn-outline:hover {
    background-color: #fff;
    color: #8b3c1c;
    border-color: #fff;
}

.zhao886-scroll-hint {
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,100%{transform:translateY(0);opacity:0.6}
    50%{transform:translateY(8px);opacity:1}
}

/* 通用区块 */
.zhao886-section {
    padding: 100px 0;
    background: #fff;
}

.zhao886-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.zhao886-section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2b211c;
    letter-spacing: -0.5px;
}

.zhao886-section-line {
    width: 70px;
    height: 3px;
    background: #b85c1a;
    margin: 18px auto 16px;
}

.zhao886-section-sub {
    color: #5f4c3b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 新盛简介 */
.zhao886-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zhao886-about-text .zhao886-section-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #b85c1a;
    font-weight: 600;
    margin-bottom: 12px;
}

.zhao886-about-deco {
    width: 50px;
    height: 2px;
    background: #b85c1a;
    margin: 20px 0 24px;
}

.zhao886-about-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #2f2a27;
    margin-bottom: 28px;
}

.zhao886-about-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.zhao886-meta-item {
    font-weight: 500;
}

.zhao886-about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
}

/* 业务介绍卡片 */
.zhao886-business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 32px;
}

.zhao886-business-card {
    background: #fefaf7;
    padding: 36px 24px;
    border-radius: 24px;
    text-align: center;
    transition: 0.25s ease;
    border: 1px solid #f0e2d8;
}

.zhao886-business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
    border-color: #e0cbbd;
}

.zhao886-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.zhao886-business-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
}

/* 客房轮播 */
.zhao886-carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.zhao886-carousel {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.zhao886-carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.zhao886-carousel-track img {
    width: 100%;
    flex: 0 0 100%;
    object-fit: cover;
    height: 520px;
    display: block;
}

.zhao886-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    border: none;
    font-size: 2.5rem;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 60px;
    cursor: pointer;
    transition: 0.2s;
    z-index: 10;
}

.zhao886-carousel-prev { left: 20px; }
.zhao886-carousel-next { right: 20px; }
.zhao886-carousel-btn:hover { background: #8b3c1c; }

.zhao886-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.zhao886-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9c2b2;
    cursor: pointer;
}

.zhao886-dot.active {
    background: #b85c1a;
    width: 28px;
    border-radius: 6px;
}

/* 特色服务卡片垂直样式 */
.zhao886-services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.zhao886-service-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.04);
    transition: 0.2s;
    border: 1px solid #f0e2d8;
}

.zhao886-service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.3s;
}

.zhao886-service-card:hover img {
    transform: scale(1.02);
}

.zhao886-service-card h3 {
    font-size: 1.3rem;
    padding: 20px 20px 6px;
    font-weight: 600;
}

.zhao886-service-card p {
    padding: 0 20px 24px;
    color: #5c534e;
}

/* 资讯+获奖地图 */
.zhao886-news-awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background: #fefaf7;
    border-radius: 32px;
    padding: 48px;
}

.zhao886-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.zhao886-news-header h3 {
    font-size: 1.7rem;
}

.zhao886-tabs {
    display: flex;
    gap: 16px;
}

.zhao886-tab {
    font-size: 0.85rem;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 40px;
    background: #eee4dd;
}
.zhao886-tab.active { background: #b85c1a; color: white; }

.zhao886-news-list {
    list-style: none;
}

.zhao886-news-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #e9dbd1;
}

.zhao886-news-date {
    font-weight: 500;
    color: #b67b4a;
    min-width: 85px;
}

.zhao886-news-list a {
    text-decoration: none;
    color: #2b211c;
    flex:1;
    margin-left: 12px;
}
.zhao886-news-arrow { color: #b85c1a; }

.zhao886-awards-map {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.zhao886-awards {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 24px;
}
.zhao886-award-icon { width: 70px; }
.zhao886-map-placeholder svg { width: 100%; border-radius: 20px; }

/* 用户评价 */
.zhao886-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.zhao886-review-card {
    background: #fefaf7;
    padding: 32px;
    border-radius: 28px;
}

.zhao886-review-stars {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

/* 娱乐休闲 */
.zhao886-entertainment-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

.zhao886-entertainment-grid figure {
    border-radius: 24px;
    overflow: hidden;
}
.zhao886-entertainment-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
figcaption {
    text-align: center;
    margin-top: 12px;
    font-weight: 500;
}

/* 底部 */
.zhao886-footer {
    background: #1e1916;
    color: #cdc2b8;
    padding-top: 64px;
    padding-bottom: 32px;
}

.zhao886-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4,1fr);
    gap: 40px;
    border-bottom: 1px solid #3d322b;
    padding-bottom: 48px;
}

.zhao886-footer-logo {
    height: 44px;
    margin-bottom: 16px;
}

.zhao886-footer-col h4 {
    color: #e8d9cf;
    margin-bottom: 20px;
    font-weight: 600;
}
.zhao886-footer-col ul, .zhao886-footer-col address {
    list-style: none;
    font-style: normal;
}
.zhao886-footer-col li a, .zhao886-footer-col address {
    color: #b9a99c;
    text-decoration: none;
    line-height: 2;
    font-size: 0.9rem;
}
.zhao886-social a {
    display: inline-block;
    margin-right: 20px;
    color: #b9a99c;
    text-decoration: none;
}
.zhao886-footer-bottom {
    text-align: center;
    padding-top: 32px;
    font-size: 0.8rem;
}

/* 响应式 */
@media (max-width: 1024px) {
    .zhao886-services-grid, .zhao886-entertainment-grid, .zhao886-reviews-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .zhao886-footer-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .zhao886-about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .zhao886-mobile-toggle { display: flex; }
    .zhao886-nav { display: none; width: 100%; background: #1e1916; position: absolute; top: 70px; left: 0; padding: 20px; border-radius: 0 0 24px 24px; }
    .zhao886-nav.active { display: block; }
    .zhao886-nav-list { flex-direction: column; gap: 1rem; text-align: center; }
    .zhao886-nav-link { color: #eee; }
    .zhao886-hero-title { font-size: 2.5rem; }
    .zhao886-section { padding: 70px 0; }
    .zhao886-services-grid, .zhao886-entertainment-grid, .zhao886-reviews-grid {
        grid-template-columns: 1fr;
    }
    .zhao886-news-awards-grid {
        grid-template-columns: 1fr;
        padding: 28px;
    }
    .zhao886-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .zhao886-container {
        padding: 0 24px;
    }
}