<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* é‡ç½®å’ŒåŸºç¡€æ&nbsp;·å¼ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* è¯­è¨€ç‰¹å®šå­—ä½“ */
html[lang="zh-CN"] body {
    font-family: 'Noto Serif SC', 'Song', 'Songti SC', 'STSong', serif;
}

/* ä¸­æ–‡é¡µé¢æ&nbsp;‡é¢˜ä½¿ç”¨æ›´è‰ºæœ¯çš„å­—ä½“ */
html[lang="zh-CN"] h1, 
html[lang="zh-CN"] h2, 
html[lang="zh-CN"] h3,
html[lang="zh-CN"] .nav-logo h2 {
    font-family: 'ZCOOL XiaoWei', 'Noto Serif SC', 'Song', serif;
    font-weight: 400;
}

html[lang="ja"] body {
    font-family: 'Noto Sans JP', sans-serif;
}

html[lang="en"] body {
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* å¯¼èˆªæ&nbsp; */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    white-space: nowrap;
    min-width: 180px;
    flex-shrink: 0;
    margin-right: 3rem;
}

.nav-logo h2 {
    color: #8B4513;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1;
}

.nav-logo span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    line-height: 1;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #8B4513;
}

.booking-btn {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: white !important;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ä¸»é¡µæ¨ªå¹… */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f4f0 0%, #e8ddd4 100%);
    padding: 100px 0 60px;
    width: 100%;
    position: relative;
}

.hero-container {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-left: 120px; /* å¢žåŠ&nbsp;å·¦è¾¹è·ï¼Œç»™å†…å®¹æ›´å¥½çš„ä½ç½® */
    padding-right: 40px; /* ç»™å³ä¾§å›¾ç‰‡ç•™å‡ºç©ºé—´ */
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B4513;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-secondary:hover {
    background: #8B4513;
    color: white;
}

.hero-image {
    flex: 1;
    text-align: right;
    min-width: 500px; /* ç¡®ä¿å›¾ç‰‡æœ‰æœ€å°å®½åº¦ */
    padding-right: 40px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* é€šç”¨åŒºå—æ&nbsp;·å¼ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* å…³äºŽæˆ‘ä»¬ */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: #f8f4f0;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* æœåŠ¡é¡¹ç›® */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f4f0 0%, #e8ddd4 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    margin-bottom: 1.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.discount-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B4513;
    margin: 0 0.5rem;
}

.discount {
    background: #ff4757;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
}

.service-features i {
    color: #27ae60;
    margin-right: 0.5rem;
}

/* VIPåŒ…é—´ */
.vip-room {
    padding: 100px 0;
    background: white;
}

.vip-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vip-text h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.vip-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.vip-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.vip-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f4f0;
    border-radius: 10px;
}

.vip-feature i {
    font-size: 1.5rem;
    color: #8B4513;
}

.vip-feature span {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3;
    color: #333;
}

.vip-description {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
}

.vip-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* å›¾ç‰‡å±•ç¤º */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f4f0 0%, #e8ddd4 100%);
}

/* æ¡Œé¢ç«¯ï¼šæ˜¾ç¤ºç½‘æ&nbsp;¼å¸ƒå±€ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* æ¡Œé¢ç«¯ï¼šéšè—è½®æ’­ */
.gallery-mobile-carousel {
    display: none;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    max-width: 100%;
    height: 250px;
}

.gallery-carousel-container {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 600%;
    height: 100%;
}

.gallery-carousel-item {
    width: calc(100% / 6);
    position: relative;
    height: 100%;
    flex-shrink: 0;
}

.gallery-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.6), transparent);
    color: white;
    padding: 1rem;
    text-align: center;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.gallery-carousel-overlay h3 {
    font-size: 1rem;
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B4513;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-arrow-left {
    left: 10px;
}

.carousel-arrow-right {
    right: 10px;
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-carousel-nav {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 10px;
    border-radius: 20px;
}

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

.carousel-dot.active {
    background: white;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

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

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* å®¢æˆ·è¯„ä»· */
.reviews {
    padding: 100px 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background: #f8f4f0;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.reviewer-info span {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rating i {
    color: #ffd700;
}

.rating span {
    margin-left: 0.5rem;
    font-weight: 600;
    color: #8B4513;
}

.review-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.review-summary {
    display: flex;
    justify-content: center;
    gap: 4rem;
    text-align: center;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.summary-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8B4513;
}

.summary-label {
    color: #666;
    font-size: 1.1rem;
}

/* è”ç³»ä¿¡æ¯ */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f4f0 0%, #e8ddd4 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #8B4513;
    margin-top: 0.3rem;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* é¢„çº¦åŒºåŸŸ */
.booking {
    padding: 100px 0;
    background: white;
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-content h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.booking-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.booking-form {
    background: #f8f4f0;
    padding: 3rem;
    border-radius: 20px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.btn-large {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.2rem;
}

/* é¡µè„š */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: #ccc;
    font-size: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info,
.footer-links,
.footer-hours {
    text-align: left;
}

.footer-section h3,
.footer-section h4,
.footer-info h4,
.footer-links h4,
.footer-hours h4 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-info p,
.footer-hours p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-info p i {
    color: #8B4513;
    margin-right: 0.5rem;
    width: 20px;
}

.footer-section ul,
.footer-links ul {
    list-style: none;
}

.footer-section ul li,
.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a,
.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover,
.footer-links ul li a:hover {
    color: #8B4513;
}

.social-links,
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a,
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #8B4513;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover,
.social-icons a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* å“åº”å¼è®¾è®¡ */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        min-width: 150px;
        margin-right: 1.5rem;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .nav-logo span {
        font-size: 0.8rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 1.5rem 0;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.8rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: #f8f4f0;
    }
    
    .booking-btn {
        margin-top: 0.8rem;
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    /* ç§»åŠ¨ç«¯è¯­è¨€åˆ‡æ¢å™¨ */
    .language-switcher {
        position: relative;
        order: -1;
        margin-bottom: 1.5rem;
        margin-top: 0;
    }
    
    .language-btn {
        width: 180px;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }
    
    .language-options {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        min-width: 180px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        margin-top: 0.4rem;
    }
    
    .language-options.show {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .language-option {
        text-align: center;
        margin: 0.15rem;
        padding: 0.8rem;
        font-size: 0.95rem;
        background: #f8f4f0;
        border-radius: 8px;
    }
    
    .language-option:hover {
        background: #8B4513;
        color: white;
    }
    
    .language-option.active {
        background: #8B4513;
        color: white;
    }
    
    .hero {
        flex-direction: column;
        padding: 90px 15px 50px;
        text-align: center;
        min-height: 90vh;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 0;
        width: 100%;
    }
    
    .hero-content {
        margin-left: 0; /* ç§»åŠ¨ç«¯é‡ç½®å·¦è¾¹è· */
        padding-right: 0;
        max-width: 100%;
        order: 1;
    }
    
    .hero-image {
        min-width: auto;
        padding-right: 0;
        text-align: center;
        order: 2;
        margin-top: 2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .about-content,
    .vip-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h3 {
        text-align: center;
        font-size: 1.8rem;
    }
    
    .feature i {
        margin-bottom: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .vip-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .contact-item i {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }
    
    .contact-item h4 {
        margin-bottom: 0.3rem;
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.95rem;
        margin: 0;
    }
    
    .gallery-grid {
        display: none;
    }
    
    .gallery-mobile-carousel {
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        max-width: 100%;
        height: 250px;
    }
    
    .gallery-carousel-container {
        display: flex;
        transition: transform 0.3s ease;
        width: 100%;
    }
    
    .gallery-carousel-item {
        min-width: 100%;
        position: relative;
        height: 250px;
        flex-shrink: 0;
    }
    
    .gallery-carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .gallery-carousel-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        background: linear-gradient(rgba(0, 0, 0, 0.6), transparent) !important;
        color: white !important;
        padding: 1rem !important;
        display: flex !important;
        justify-content: center !important;
        align-items: flex-start !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        transform: none !important;
        z-index: 5 !important;
        box-sizing: border-box !important;
    }

    .gallery-carousel-overlay h3 {
        font-size: 1.3rem;
        margin: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        width: 100%;
        max-width: 100%;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 15;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #8B4513;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .carousel-arrow:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .carousel-arrow-left {
        left: 10px;
    }
    
    .carousel-arrow-right {
        right: 10px;
    }
    
    .carousel-arrow:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .gallery-carousel-nav {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 0.5rem;
        z-index: 10;
        background: rgba(0, 0, 0, 0.3);
        padding: 6px 10px;
        border-radius: 20px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: background 0.3s ease;
    }
    
    .carousel-dot.active {
        background: white;
    }
    
    .features,
    .vip-features {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .review-summary {
        flex-direction: column;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footerç§»åŠ¨ç«¯ä¼˜åŒ– */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-info,
    .footer-links,
    .footer-hours {
        text-align: center;
    }
    
    .footer-info h4,
    .footer-links h4,
    .footer-hours h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-info p,
    .footer-hours p {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-links ul li {
        margin-bottom: 0.3rem;
    }
    
    .footer-links ul li a {
        font-size: 0.95rem;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.4rem 0;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .nav-logo {
        min-width: 150px;
        margin-right: 1.5rem;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .nav-logo span {
        font-size: 0.75rem;
    }
    
    .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
        padding: 1.2rem 0;
    }
    
    .nav-menu li {
        margin: 0.6rem 0;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    
    .booking-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .language-btn {
        width: 160px;
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .language-options {
        min-width: 160px;
    }
    
    .language-option {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 80px 12px 40px;
        min-height: 85vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.05rem;
        margin-bottom: 1.8rem;
        line-height: 1.4;
        max-width: 95%;
    }
    
    .hero-stats {
        gap: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .booking-form {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* 480pxæ–­ç‚¹çš„é¢å¤–ä¼˜åŒ– */
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .vip-text h2 {
        font-size: 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .gallery-carousel-item {
        height: 250px;
    }
    
    .gallery-carousel-overlay {
        padding: 1rem;
    }
    
    .gallery-carousel-overlay h3 {
        font-size: 0.9rem;
        margin: 0;
        padding: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        line-height: 1.2;
        font-weight: 600;
        text-align: center;
        white-space: nowrap;
    }
    
    .booking-form {
        padding: 2rem 1rem;
    }
    
    /* Footerå°å±å¹•ä¼˜åŒ– */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo {
        margin-bottom: 1.5rem;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem;
    }
    
    .footer-logo span {
        font-size: 0.9rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-info h4,
    .footer-links h4,
    .footer-hours h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-info p,
    .footer-hours p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-links ul li {
        margin-bottom: 0.2rem;
    }
    
    .footer-links ul li a {
        font-size: 0.9rem;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* åŠ¨ç”»æ•ˆæžœ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-text,
.service-card,
.review-card {
    animation: fadeInUp 0.8s ease-out;
}

/* æ»šåŠ¨æ¡æ&nbsp;·å¼ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8B4513;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A0522D;
}

/* è¯­è¨€åˆ‡æ¢å™¨æ&nbsp;·å¼ */
.language-switcher {
    position: relative;
}

.language-dropdown {
    position: relative;
}

.language-btn {
    background: transparent;
    border: 2px solid #8B4513;
    color: #8B4513;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.language-btn:hover {
    background: #8B4513;
    color: white;
}

.language-btn i:last-child {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-options.show .language-btn i:last-child {
    transform: rotate(180deg);
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 0.8rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    margin: 0.2rem;
}

.language-option:hover {
    background: #f8f4f0;
    color: #8B4513;
}

.language-option.active {
    background: #8B4513;
    color: white;
}

.language-option span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* é¢„çº¦å¼¹çª—æ&nbsp;·å¼ */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.booking-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

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

.booking-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
}

.booking-modal-header h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin: 0;
}

.booking-modal-close {
    color: #999;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.booking-modal-close:hover {
    color: #8B4513;
}

.booking-modal-form {
    padding: 2rem;
}

.booking-modal-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-modal-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.booking-modal-form input,
.booking-modal-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.booking-modal-form input:focus,
.booking-modal-form select:focus {
    outline: none;
    border-color: #8B4513;
}

.booking-modal-form input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.booking-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.booking-modal-buttons .btn {
    flex: 1;
    padding: 1rem;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

/* ç§»åŠ¨ç«¯å¼¹çª—ä¼˜åŒ– */
@media (max-width: 768px) {
    .booking-modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .booking-modal-header,
    .booking-modal-form {
        padding: 1.5rem;
    }
    
    .booking-modal-buttons {
        flex-direction: column;
    }
}

/* é¢„çº¦æˆåŠŸå¼¹çª—æ&nbsp;·å¼ */
.success-modal-content {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-icon i {
    font-size: 4rem;
    color: #25D366;
    animation: successPulse 1.5s ease-in-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-modal-content h3 {
    color: #25D366;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-modal-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.success-details h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-details p {
    margin: 0.5rem 0;
    color: #555;
    font-size: 1rem;
}

.success-details strong {
    color: #8B4513;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.success-actions .btn {
    min-width: 180px;
}

/* æˆåŠŸå¼¹çª—å“åº”å¼è®¾è®¡ */
@media (max-width: 768px) {
    .success-modal-content {
        padding: 1.5rem;
    }
    
    .success-icon i {
        font-size: 3rem;
    }
    
    .success-modal-content h3 {
        font-size: 1.5rem;
    }
    
    .success-modal-content p {
        font-size: 1rem;
    }
    
    .success-details {
        padding: 1rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .btn {
        min-width: auto;
        width: 100%;
    }
}

/* é¢„çº¦æŒ‰é’®å¼¹çª—æ&nbsp;·å¼ */
.booking-options {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.booking-option {
    flex: 1;
    text-align: center;
    padding: 2rem;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.booking-option:hover {
    border-color: #007c5f;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 124, 95, 0.15);
}

.booking-option i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #007c5f;
}

.booking-option h4 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #333;
}

.booking-option p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.phone-btn {
    background: #007c5f;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.phone-btn:hover {
    background: #005a43;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 124, 95, 0.3);
    color: white;
    text-decoration: none;
}

.phone-btn i {
    font-size: 1rem;
    color: white;
}

/* ç§»åŠ¨ç«¯é¢„çº¦é€‰é¡¹æ&nbsp;·å¼ */
@media (max-width: 768px) {
    .booking-options {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .booking-option {
        padding: 1.5rem;
    }
    
    .booking-option i {
        font-size: 2.5rem;
    }
    
    .booking-option h4 {
        font-size: 1.3rem;
    }
    
    .booking-option p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .booking-options {
        gap: 1rem;
    }
    
    .booking-option {
        padding: 1rem;
    }
    
    .booking-option i {
        font-size: 2rem;
    }
    
    .booking-option h4 {
        font-size: 1.2rem;
    }
}

/* è”ç³»æˆ‘ä»¬é¡µé¢é¢„çº¦æŒ‰é’® */
.contact-booking-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-height: 60px;
}

.contact-btn i {
    font-size: 1.1rem;
}

.contact-btn.phone-btn {
    background: linear-gradient(135deg, #007c5f, #00a676);
    color: white;
    border: 2px solid transparent;
}

.contact-btn.phone-btn:hover {
    background: linear-gradient(135deg, #005a43, #007c5f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 124, 95, 0.3);
}

.contact-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: 2px solid transparent;
}

.contact-btn.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ç§»åŠ¨ç«¯è”ç³»æŒ‰é’®æ&nbsp;·å¼ */
@media (max-width: 768px) {
    .contact-booking-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .contact-btn {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
        min-height: 55px;
    }
    
    .contact-btn i {
        font-size: 1.1rem;
    }
    
    /* VIPç§äººå½±é™¢åŒ…é—´ç§»åŠ¨ç«¯æ&nbsp;·å¼ */
    .vip-text h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .vip-text p {
        font-size: 2rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .vip-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.2rem 0.8rem;
        gap: 0.6rem;
        background: #f8f4f0;
        border-radius: 12px;
    }

    .vip-feature i {
        font-size: 1.8rem;
        color: #8B4513;
        margin-bottom: 0.3rem;
    }

    .vip-feature span {
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.3;
        color: #333;
    }

    .vip-description {
        font-size: 1rem;
        color: #666;
        line-height: 1.6;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-booking-buttons {
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .contact-btn {
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
        min-height: 50px;
    }
    
    .contact-btn i {
        font-size: 1.1rem;
    }
    
    /* VIPç§äººå½±é™¢åŒ…é—´å°å±å¹•æ&nbsp;·å¼ */
    .vip-text h2 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .vip-text p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .vip-feature i {
        font-size: 1.6rem;
        color: #8B4513;
        margin-bottom: 0.3rem;
    }

    .vip-feature span {
        font-size: 0.85rem;
        font-weight: 500;
        line-height: 1.3;
        color: #333;
    }

    .vip-description {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
        text-align: center;
    }
}

.features,
.vip-features {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* å¹³æ¿è®¾å¤‡å“åº”å¼è®¾è®¡ */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        margin-left: 60px; /* å¹³æ¿è®¾å¤‡ä½¿ç”¨ä¸­ç­‰å·¦è¾¹è· */
        padding-right: 20px;
    }
    
    .hero-image {
        min-width: 400px;
        padding-right: 20px;
    }
}
</pre></body></html>