
        :root {
            --living-coral: #FF6B6B;
            --living-coral-dark: #EE5A5A;
            --living-coral-light: #FF8E8E;
            --living-coral-bg: #FFF5F5;
            --text-dark: #333333;
            --text-light: #666666;
            --white: #FFFFFF;
            --off-white: #F9F9F9;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            color: var(--text-dark);
            background-color: var(--off-white);
            line-height: 1.6;
            padding-top: 80px;
        }
        
        /* Header & Navigation */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--living-coral);
            text-decoration: none;
            z-index: 1002;
            position: relative;
        }
        
        .logo span {
            color: var(--text-dark);
        }
        
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        
        .desktop-nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        
        .desktop-nav a:hover {
            color: var(--living-coral);
        }
        
        .desktop-nav .active {
            color: var(--living-coral);
            font-weight: 700;
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(to right, var(--living-coral), var(--living-coral-dark));
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1002;
        }
        
        .mobile-menu-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, var(--living-coral-dark), var(--living-coral));
            transition: left 0.5s;
            z-index: -1;
        }
        
        .mobile-menu-btn:hover::before {
            left: 0;
        }
        
        .mobile-menu-btn span {
            display: inline-block;
            position: relative;
        }
        
        .mobile-nav {
            display: none;
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            left: 0;
            top: 80px;
            height: calc(100vh - 80px);
            padding: 20px 0;
            z-index: 1001;
            overflow-y: auto;
        }
        
        .mobile-nav.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .mobile-nav a {
            display: block;
            padding: 18px 30px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid #eee;
            transition: background 0.3s, color 0.3s;
            font-size: 1.1rem;
        }
        
        .mobile-nav a:hover,
        .mobile-nav .active {
            background-color: var(--living-coral-bg);
            color: var(--living-coral);
        }
        
        /* Hero Section for Jalan Kota */
        .hero-jalan-kota {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url('../images/hero1.jpg');
            background-size: cover;
            background-position: center;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-top: 0;
            border-bottom: 5px solid var(--living-coral);
        }
        
        .hero-jalan-kota h1 {
            font-size: 3.2rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        
        .hero-jalan-kota p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Content Sections */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--text-dark);
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--living-coral);
        }
        
        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Content Section Styling */
        .content-section {
            background-color: var(--white);
            border-radius: 10px;
            padding: 50px;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
        }
        
        .content-section h3 {
            color: var(--living-coral);
            font-size: 2rem;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .content-section p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        /* Models Section for Jalan Kota */
        .jalan-kota-models {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        @media (max-width: 768px) {
            .jalan-kota-models {
                grid-template-columns: 1fr;
            }
        }
        
        .model-card-detailed {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            
        }
        
        .model-card-detailed:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .model-image {
            width: 326px;
            height: 410px;
           
        }
        
        .model-details {
            width: 55%;
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .model-name {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--living-coral);
            margin-bottom: 5px;
        }
        
        .model-nationality {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .price-list {
            margin-top: 20px;
        }
        
        .price-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .price-item:last-child {
            border-bottom: none;
        }
        
        .massage-type {
            color: var(--text-dark);
            font-weight: 600;
        }
        
        .massage-price {
            color: var(--living-coral);
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        /* Popular Areas Section */
        .popular-areas {
            background-color: var(--living-coral-bg);
            padding: 60px 0;
            margin-top: 50px;
            border-radius: 15px;
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .area-item {
            background-color: var(--white);
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        
        .area-item:hover {
            transform: translateY(-5px);
        }
        
        .area-item h4 {
            color: var(--living-coral);
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        /* Footer */
        footer {
            background-color: var(--text-dark);
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--living-coral-light);
        }
        
        .footer-links a {
            display: block;
            color: #ccc;
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--living-coral-light);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Call to Action */
        .cta-section {
            text-align: center;
            padding: 60px 0;
            background: linear-gradient(135deg, var(--living-coral) 0%, var(--living-coral-dark) 100%);
            color: white;
            border-radius: 15px;
            margin: 60px 0;
        }
        
        .cta-section h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            background-color: white;
            color: var(--living-coral);
            padding: 16px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--living-coral-bg);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            background-color: var(--living-coral);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            cursor: pointer;
            border: none;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--living-coral-dark);
            transform: translateY(-5px);
        }
        
        /* Social Buttons Drawer */
        .social-drawer {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 998;
        }
        
        .social-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--living-coral);
            color: white;
            font-size: 1.5rem;
            margin-bottom: 15px;
            box-shadow: var(--shadow);
            text-decoration: none;
            transition: all 0.3s;
            overflow: hidden;
            position: relative;
        }
        
        .social-button:hover {
            background-color: var(--living-coral-dark);
            transform: translateY(-5px);
            width: 200px;
            border-radius: 30px;
            justify-content: flex-start;
            padding-left: 20px;
        }
        
        .social-button span {
            display: none;
            margin-left: 15px;
            font-size: 1rem;
            font-weight: 600;
            white-space: nowrap;
        }
        
        .social-button:hover span {
            display: inline-block;
        }
        
        .telegram-button {
            background-color: #0088cc;
        }
        
        .telegram-button:hover {
            background-color: #0077b5;
        }
        
        .call-button {
            background-color: #34C759;
        }
        
        .call-button:hover {
            background-color: #2DAF4F;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: inline-block;
            }
            
            .hero-jalan-kota h1 {
                font-size: 2.5rem;
            }
            
            .model-card-detailed {
               display: flex;
    flex-direction: column;
    align-items: center;
            }
            
            .model-image {
                width: 326px; /* 设置具体宽度 */
    height: 410px; /* 设置具体高度 */
    background-position: center;
    background-size: cover; /* 或 contain */
    background-repeat: no-repeat;
            }
            
            .model-details {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            header {
                
            }
            
            .nav-container {
                padding: 15px 0;
            }
            
            .mobile-nav {
                top: 70px;
                height: calc(100vh - 70px);
            }
            
            .hero-jalan-kota {
                height: 50vh;
            }
            
            .hero-jalan-kota h1 {
                font-size: 2rem;
            }
            
            .hero-jalan-kota p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .content-section {
                padding: 30px;
            }
            
            .social-drawer {
                bottom: 20px;
                left: 20px;
            }
            
            .social-button {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }
            
            .back-to-top {
                bottom: 90px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
        }
    </style>