* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary: #007AFF;
    --primary-light: #4DA3FF;
    --primary-dark: #0056B3;
    --success: #34C759;
    --warning: #FF9500;
    --danger: #FF3B30;
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --text-tertiary: #AEAEB2;
    --bg-primary: #F5F5F7;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #E8E8ED;
    --border-color: rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Helvetica Neue", sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    z-index: 100;
}

.container {
    margin-top: 48px;
    padding-bottom: 80px;
}

.banner-slider {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.slider-wrapper {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.slide {
    width: 20%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    color: white;
}

.banner-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #007AFF 0%, #4DA3FF 100%);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.4);
}

.banner-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.banner-subtitle {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.01em;
}

.slider-dots {
    position: absolute;
    bottom: 580px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.card {
    background-color: var(--bg-secondary);
    margin: 12px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.intro {
    padding: 24px;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.card-icon {
    width: 36px;
    height: 36px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
}

.card-icon svg {
    color: var(--primary);
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.intro-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: justify;
    text-justify: inter-ideograph;
}

.intro-content p {
    margin-bottom: 12px;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

.video-section {
    margin: 20px 0 0 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-tertiary);
}

.video-section video {
    width: 100%;
    display: block;
}

.gallery-section {
    margin-top: 24px;
}

.gallery-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-tertiary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.gallery-more {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
    backdrop-filter: blur(2px);
}

.location {
    padding: 24px;
}

.location-card {
    margin-top: 12px;
}

.location-map-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-container {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #E8F4FD 0%, #D1E9FA 100%);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-md);
}

.location-badge svg {
    color: var(--primary);
}

.location-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.location-main {
    flex: 1;
}

.location-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.location-address {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--text-secondary);
}

.location-address svg {
    color: var(--primary);
    flex-shrink: 0;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

.nav-btn:active {
    transform: scale(0.96);
    background: var(--primary-dark);
}

.nearby-section {
    padding-top: 20px;
}

.nearby-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.nearby-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 10px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.nearby-item:active {
    transform: scale(0.96);
    background: var(--bg-tertiary);
}

.nearby-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nearby-icon.beach {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
}

.nearby-icon.waves {
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
    color: white;
}

.nearby-icon.forum {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    color: white;
}

.nearby-icon.airport {
    background: linear-gradient(135deg, #43E97B 0%, #38F9D7 100%);
    color: white;
}

.nearby-icon.bar {
    background: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
    color: white;
}

.nearby-icon.train {
    background: linear-gradient(135deg, #5EE7DF 0%, #B490CA 100%);
    color: white;
}

.nearby-info {
    text-align: center;
}

.nearby-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.nearby-distance {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 2px;
}

.contact {
    padding: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:active {
    transform: scale(0.97);
}

.contact-card.phone {
    background: linear-gradient(135deg, #007AFF 0%, #4DA3FF 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.35);
}

.contact-card.wechat {
    background: linear-gradient(135deg, #34C759 0%, #5DD879 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(52, 199, 89, 0.35);
}

.contact-card.ctrip {
    background: linear-gradient(135deg, #2577E3 0%, #4A90E3 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(37, 119, 227, 0.35);
}

.contact-card.meituan {
    background: linear-gradient(135deg, #FFD000 0%, #FFE066 100%);
    color: var(--text-primary);
    box-shadow: 0 4px 16px rgba(255, 208, 0, 0.35);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.contact-card-icon img {
    width: 32px;
    height: 32px;
}

.contact-card-content {
    text-align: center;
}

.contact-card-label {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-card-value {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-card-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    opacity: 0.5;
}

.contact-card-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.3);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.contact-list-new {
    margin-top: 16px;
}

.contact-group {
    margin-bottom: 20px;
}

.contact-group:last-child {
    margin-bottom: 0;
}

.contact-group-title {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
    padding-left: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.contact-item-new {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
    margin-bottom: 1px;
    cursor: pointer;
}

.contact-item-new:first-of-type {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.contact-item-new:last-of-type {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-bottom: 0;
}

.contact-item-new:only-of-type {
    border-radius: var(--radius-md);
}

.contact-item-new:active {
    background: var(--bg-primary);
}

.contact-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
}

.contact-item-icon.phone-icon {
    background: linear-gradient(135deg, #007AFF 0%, #4DA3FF 100%);
    color: white;
}

.contact-item-icon.wechat-icon {
    background: linear-gradient(135deg, #34C759 0%, #5DD879 100%);
    color: white;
}

.contact-item-icon.ctrip-icon {
    background: linear-gradient(135deg, #2577E3 0%, #4A90E3 100%);
}

.contact-item-icon.meituan-icon {
    background: linear-gradient(135deg, #FFD000 0%, #FFE066 100%);
}

.contact-item-icon.douyin-icon {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.contact-item-icon svg {
    color: white;
}

.contact-item-content {
    flex: 1;
    min-width: 0;
}

.contact-item-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-item-value {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-item-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

.contact-item-action {
    margin-left: 12px;
}

.action-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.action-badge.outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.contact-item-arrow {
    color: var(--text-tertiary);
    margin-left: 8px;
}

.faq {
    padding: 24px;
}

.faq-list {
    margin-top: 16px;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item.active {
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 16px 18px;
    cursor: pointer;
    user-select: none;
}

.faq-q-icon {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 14px;
}

.faq-q-text {
    flex: 1;
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.faq-arrow {
    color: var(--text-tertiary);
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    display: none;
    padding: 0 18px 18px 18px;
    animation: faFadeIn 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@keyframes faFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-8px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.faq-item.active .faq-answer {
    display: flex;
}

.faq-a-icon {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--success) 0%, #5DD879 100%);
    color: white;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 14px;
}

.faq-a-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.gallery-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.gallery-viewer.active {
    display: flex;
}

.viewer-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.viewer-nav:active {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(0.95);
}

.viewer-prev {
    left: 16px;
}

.viewer-next {
    right: 16px;
}

.viewer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.viewer-close:active {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0.95);
}

.viewer-counter {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 15px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

@media (max-width: 375px) {
    .banner-title {
        font-size: 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .nearby-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .banner-slider {
        height: 600px;
    }
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 16px;
    z-index: 100;
    border-top: 0.5px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
    gap: 6px;
}

.btn-secondary {
    flex: 1;
    background: var(--bg-primary);
    color: var(--primary);
    border: 1.5px solid rgba(0, 122, 255, 0.2);
}

.btn-secondary:active {
    background: var(--bg-tertiary);
    transform: scale(0.98);
}

.btn-primary {
    flex: 1.5;
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 12px rgba(0, 122, 255, 0.35);
}

.btn-primary:active {
    background: var(--primary-dark);
    transform: scale(0.98);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 320px;
    width: 85%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(-30px);
}

.modal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #007AFF 0%, #4DA3FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.4);
}

.modal-icon img {
    filter: brightness(0) invert(1);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.modal-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.modal-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.35);
}

.modal-btn:active {
    transform: scale(0.98);
    background: var(--primary-dark);
}

.copyright {
    text-align: center;
    padding: 8px 16px 8px;
    color: var(--text-tertiary);
    font-size: 13px;
    line-height: 1.6;
}

.designer-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.designer-link:hover {
    opacity: 0.7;
}

.designer-info {
    display: none;
    padding: 0 16px 4px;
    text-align: center;
}

.designer-info.active {
    display: block;
}

.phone-number {
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.2s ease;
    opacity: 0.6;
}

.phone-number:hover {
    opacity: 0.9;
}

.phone-number:active {
    opacity: 1;
}
