/* ========================================
   GuangZhou Mobile Massage Theme Main CSS
   完整版：包含所有全局样式 + 技师详情页专属样式
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    background-color: #fefaf7;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
}

p {
    margin-bottom: 1rem;
    color: #4a4a4a;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.btn-primary {
    background-color: #c49a6c;
    color: white;
    box-shadow: 0 4px 12px rgba(196, 154, 108, 0.3);
}
.btn-primary:hover {
    background-color: #a87c4f;
    transform: translateY(-2px);
}
.btn-outline {
    border: 2px solid #c49a6c;
    background: transparent;
    color: #c49a6c;
}
.btn-outline:hover {
    background-color: #c49a6c;
    color: white;
}
.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}
.btn-nav-book {
    background: transparent;
    color: #f0f0f0 !important;
    border: 1.5px solid #c49a6c;
    padding: 0.5rem 1.2rem !important;
    border-radius: 0px !important;
    font-weight: 500;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}
.btn-nav-book i {
    margin-right: 0.5rem;
}
.btn-nav-book:hover {
    background: #c49a6c;
    color: white !important;
    border-color: #c49a6c;
}
.btn-submit {
    width: 100%;
    background: #c49a6c;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1.5rem;
}
.btn-submit:hover {
    background: #a87c4f;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(196, 154, 108, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 0.8rem 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c49a6c;
}
.logo span {
    color: #ffffff;
    font-weight: 400;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    font-weight: 500;
    color: #f0f0f0;
    text-decoration: none;
    font-size: 0.9rem;
}
.nav-links a i {
    margin-right: 0.3rem;
}
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000;
    border-radius: 12px;
    padding: 0.6rem 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 1px solid #333;
    z-index: 100;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li {
    list-style: none;
}
.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #f0f0f0;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.dropdown-menu a i {
    margin-right: 0.5rem;
    width: 1.2rem;
}
.dropdown-menu a:hover {
    background: #c49a6c;
    color: #000;
}
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: #c49a6c;
    cursor: pointer;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #000;
        padding: 1rem 0;
    }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        background: #1a1a1a;
        margin-top: 0.5rem;
    }
    .dropdown.active .dropdown-menu { display: block; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 100%), url('https://jinxianganmo.com/wp-content/uploads/2026/04/Outcall-massage-service.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 4rem;
}
.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}
.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}
.hero-content h1 {
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.hero-content h1 .highlight {
    color: #c49a6c;
}
.hero-subtitle {
    font-size: 1rem;
    color: white;
    margin: 0.5rem 0 1rem;
}
.hero-badge {
    background: rgba(0,0,0,0.4);
    color: #c49a6c;
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.hero-image-card {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 1rem;
    text-align: center;
}
.hero-image-card img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.2);
}

/* Steps */
.steps-wrapper {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    padding: 2rem 1.5rem;
    margin-top: 1rem;
}
.steps-wrapper h3 {
    text-align: center;
    color: white;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}
.steps-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.step-card {
    flex: 1;
    min-width: 180px;
    text-align: center;
    background: rgba(0,0,0,0.4);
    border-radius: 24px;
    padding: 1.5rem 1rem;
    transition: transform 0.2s;
}
.step-card:hover {
    transform: translateY(-5px);
    background: rgba(0,0,0,0.5);
}
.step-number {
    width: 55px;
    height: 55px;
    background: #c49a6c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}
.step-card h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.step-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
    font-size: 0.85rem;
}
@media (max-width: 768px) {
    .hero-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .steps-row {
        flex-direction: column;
        align-items: center;
    }
    .step-card {
        width: 100%;
        max-width: 280px;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #fff;
}
.section-subtitle {
    text-align: center;
    color: #c49a6c;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.service-card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.service-card:nth-child(1) { background-image: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%), url('https://placehold.co/800x1000/8B5A2B/FFFFFF?text=Shoulder+Neck+Massage'); }
.service-card:nth-child(2) { background-image: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%), url('https://placehold.co/800x1000/8B5A2B/FFFFFF?text=Meridian+Massage'); }
.service-card:nth-child(3) { background-image: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%), url('https://placehold.co/800x1000/8B5A2B/FFFFFF?text=Aromatherapy+SPA'); }
.service-card:nth-child(4) { background-image: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%), url('https://placehold.co/800x1000/8B5A2B/FFFFFF?text=Oriental+Balance'); }
.service-card:nth-child(5) { background-image: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%), url('https://placehold.co/800x1000/8B5A2B/FFFFFF?text=Detox+SPA'); }
.service-card:nth-child(6) { background-image: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%), url('https://placehold.co/800x1000/8B5A2B/FFFFFF?text=Private+Wellness'); }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.2);
}
.service-content {
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
    padding: 2rem 1.8rem;
    width: 100%;
    color: white;
    backdrop-filter: blur(2px);
}
.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
    color: white;
}
.service-content .sub {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 1rem;
    display: block;
    border-left: 3px solid #c49a6c;
    padding-left: 0.8rem;
}
.service-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 1rem 0 1.5rem;
    color: rgba(255,255,255,0.9);
}
.btn-book {
    background: #c49a6c;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
}
.btn-book:hover {
    background: #a87c4f;
}

/* Masseuses Showcase (首页技师展示) */
.therapists-showcase {
    padding: 5rem 0;
    background: #f9f5f0;
}
.therapists-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.therapist-card-full {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    aspect-ratio: 3 / 4;
    background: #ddd;
}
.therapist-card-full:hover {
    transform: translateY(-6px);
}
.therapist-card-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.therapist-card-full:hover img {
    transform: scale(1.03);
}
.therapist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 1.5rem 1rem;
    text-align: center;
}
.therapist-name {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.btn-book-img {
    background: #c49a6c;
    border: none;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-book-img:hover {
    background: #a87c4f;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://yiyueanmo.com/wp-content/uploads/2026/04/%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87_20260422231355_764_96-1024x387.png');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
}
.pricing-section .section-subtitle,
.pricing-section h2 {
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
}
.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.3);
}
.pricing-header {
    background: linear-gradient(135deg, #c49a6c, #a87c4f);
    color: white;
    padding: 1.2rem;
    text-align: center;
}
.pricing-header h3 {
    margin-bottom: 0.25rem;
    color: white;
}
.price {
    font-size: 1.8rem;
    font-weight: 700;
}
.price small {
    font-size: 0.8rem;
}
.pricing-body {
    padding: 1.2rem;
}
.pricing-body ul {
    list-style: none;
}
.pricing-body li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #1e1e1e;
}
.pricing-body li i {
    color: #c49a6c;
    width: 18px;
}
.price-note {
    text-align: center;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    border-radius: 60px;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    color: white;
    font-size: 0.85rem;
}
.price-note i {
    color: #c49a6c;
    margin-right: 0.5rem;
}

/* Booking Area */
.booking-area {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}
.booking-area h2 {
    color: white;
}
.booking-area p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.trust-badge {
    background: rgba(255,255,255,0.1);
    border-radius: 60px;
    padding: 0.8rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

/* Booking Form Page */
.booking-main {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.6)), url('https://jinxianganmo.com/wp-content/uploads/2026/04/Outcall-massage-service.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: calc(100vh - 80px - 300px);
}
.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: rgba(255,255,255,0.96);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.form-promo {
    background: linear-gradient(135deg, rgba(196,154,108,0.95), rgba(168,124,79,0.95)), url('https://placehold.co/800x1000/f0e4d8/c49a6c?text=Relaxation+Scene');
    background-size: cover;
    background-position: center;
    padding: 2.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.form-promo h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.form-promo p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}
.promo-features {
    list-style: none;
    margin-top: 1rem;
}
.promo-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.form-content {
    padding: 2.5rem;
}
.form-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}
.form-subtitle {
    color: #666;
    margin-bottom: 1.8rem;
    font-size: 0.9rem;
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 0.85rem;
    color: #333;
}
.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0d0c0;
    border-radius: 16px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.2s;
    background: #fefaf7;
}
.form-group input:focus {
    outline: none;
    border-color: #c49a6c;
    box-shadow: 0 0 0 3px rgba(196,154,108,0.1);
}
.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.payment-title {
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    font-size: 1rem;
}
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}
.payment-option {
    flex: 1;
    min-width: 100px;
    background: #f9f5f0;
    border: 1px solid #e0d0c0;
    border-radius: 50px;
    padding: 0.6rem 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.85rem;
}
.payment-option.selected {
    background: #c49a6c;
    border-color: #c49a6c;
    color: white;
}
.payment-option input {
    display: none;
}
.secure-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.7rem;
    color: #888;
}
@media (max-width: 900px) {
    .form-wrapper {
        grid-template-columns: 1fr;
    }
    .form-promo {
        text-align: center;
    }
    .promo-features li {
        justify-content: center;
    }
    .row-2 {
        grid-template-columns: 1fr;
    }
}

/* Masseuse Detail Page (技师详情页基础样式) */
.therapist-header {
    margin-top: 70px;
    padding: 2rem 0;
    background: white;
}
.header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.therapist-avatar img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.badge {
    display: inline-block;
    background: #c49a6c10;
    color: #c49a6c;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.5rem 0;
}
.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.8rem 0;
    flex-wrap: wrap;
}
.stars {
    color: #ffb800;
    letter-spacing: 2px;
}
.stats {
    display: flex;
    gap: 1rem;
    margin: 1.2rem 0;
    flex-wrap: wrap;
}
.stat-item {
    background: #f9f5f0;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
}
.stat-item i {
    color: #c49a6c;
    margin-right: 0.4rem;
}
.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: #c49a6c;
    margin: 1rem 0;
}
.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
@media (max-width: 700px) {
    .header-grid { grid-template-columns: 1fr; }
    .therapist-avatar { max-width: 300px; margin: 0 auto; }
}
.editable-block {
    background: #fef9f2;
    border-radius: 28px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border: 1px solid #f0e4d8;
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-top: 0.5rem;
}
.highlight-card {
    background: white;
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid #f0e4d8;
}
.highlight-card i {
    font-size: 2rem;
    color: #c49a6c;
    margin-bottom: 0.5rem;
}
.service-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}
.service-item {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #f0e4d8;
}
.service-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}
.service-price {
    font-weight: 700;
    color: #c49a6c;
    font-size: 1.1rem;
}
.bottom-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.08);
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.book-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c49a6c;
}
@media (max-width: 500px) {
    .bottom-booking-bar { flex-direction: column; text-align: center; }
    .btn-group { width: 100%; justify-content: center; }
}

/* Service Detail Page */
.page-header {
    margin-top: 80px;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55)), url('https://jinxianganmo.com/wp-content/uploads/2026/04/Outcall-massage-service.webp');
    background-size: cover;
    background-position: center 30%;
    padding: 4rem 0;
    text-align: center;
    color: white;
}
.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.intro-hero {
    background-color: #fdf8f2;
    padding: 5rem 0;
}
.service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}
.intro-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.intro-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.intro-text h2 i {
    color: #c49a6c;
    margin-right: 0.5rem;
}
.intro-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.btn-outline-light {
    background: #c49a6c;
    border: none;
    color: white;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
}
.btn-outline-light:hover {
    background: #a87c4f;
    transform: translateY(-2px);
}
.intro-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.08);
    min-height: 450px;
}
.intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.intro-img:hover img {
    transform: scale(1.02);
}
@media (max-width: 700px) {
    .service-intro { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .intro-text .btn-outline-light { align-self: center; }
}
.price-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: rgba(255,255,255,0.95);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.price-image {
    width: 100%;
    min-height: 350px;
    overflow: hidden;
}
.price-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.price-content {
    padding: 2rem;
}
.price-content .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c49a6c;
}
.fee-detail {
    background: #fef9f2;
    padding: 1rem;
    border-radius: 20px;
    margin: 1rem 0;
}
.masseuses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}
.masseuse-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s;
    cursor: pointer;
}
.masseuse-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.masseuse-card .name {
    padding: 0.8rem;
    font-weight: 600;
}
.masseuse-card .title {
    font-size: 0.7rem;
    color: #c49a6c;
    padding-bottom: 0.8rem;
}
.view-more {
    text-align: center;
    margin-top: 2rem;
}
.btn-view-more {
    background: transparent;
    border: 1.5px solid #c49a6c;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    color: #c49a6c;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}
.btn-view-more:hover {
    background: #c49a6c;
    color: white;
}
@media (max-width: 900px) {
    .masseuses-grid { grid-template-columns: repeat(2, 1fr); }
}
.steps-compact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}
.step-compact {
    flex: 1;
    min-width: 160px;
    background: white;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.step-compact .step-num {
    width: 40px;
    height: 40px;
    background: #c49a6c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}
.contact-platforms {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}
.contact-item {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #c49a6c;
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-decoration: none;
}
.contact-item:hover {
    background: #c49a6c;
    color: white;
    transform: translateY(-3px);
}

/* Masseuses Listing Page (技师列表页) */
.hero-banner {
    margin-top: 70px;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('https://jinxianganmo.com/wp-content/uploads/2026/04/Outcall-massage-service.webp');
    background-size: cover;
    background-position: center 40%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}
.hero-banner .container {
    max-width: 900px;
}
.hero-banner h1 span {
    color: #c49a6c;
}
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
    animation: bounce 2s infinite;
}
.scroll-down i {
    font-size: 1.5rem;
    color: white;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(8px); opacity: 1; }
}
.hot-therapists {
    padding: 3rem 0;
    background: #f9f5f0;
    text-align: center;
}
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 1.5rem auto 0;
    padding: 0 35px;
}
.carousel-wrapper {
    overflow: hidden;
}
.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}
.carousel-slide {
    flex: 0 0 33.333%;
    padding: 0 10px;
}
.hot-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    cursor: pointer;
}
.hot-img {
    width: 100%;
    aspect-ratio: 1 / 1;
}
.hot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hot-info {
    padding: 0.8rem;
}
.hot-name {
    font-size: 1.1rem;
    font-weight: 700;
}
.hot-title {
    color: #c49a6c;
    font-size: 0.75rem;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}
.btn-prev { left: 0; }
.btn-next { right: 0; }
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.2rem;
}
.dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.dot.active {
    background: #c49a6c;
    width: 20px;
    border-radius: 3px;
}
@media (max-width: 900px) {
    .carousel-slide { flex: 0 0 100%; }
}
.filter-toggle {
    display: none;
    background: #f9f5f0;
    padding: 0.8rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    margin-bottom: 1.5rem;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e0d0c0;
}
.filter-sidebar {
    background: #f9f5f0;
    border-radius: 24px;
    padding: 1.2rem;
    margin-bottom: 2rem;
}
.filter-group {
    margin-bottom: 1rem;
}
.filter-group h4 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}
.filter-group ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    list-style: none;
}
.filter-group a {
    text-decoration: none;
    color: #555;
    font-size: 0.8rem;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    background: white;
    transition: all 0.2s;
}
.filter-group a:hover,
.filter-group a.active {
    background: #c49a6c;
    color: white;
}
.therapists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
.therapist-card-simple {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.2s;
}
.therapist-card-simple:hover {
    transform: translateY(-3px);
}
.therapist-img-simple {
    width: 100%;
    aspect-ratio: 1 / 1;
}
.therapist-img-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.therapist-name-simple {
    padding: 0.6rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}
@media (max-width: 768px) {
    .filter-toggle {
        display: flex;
    }
    .filter-sidebar {
        display: none;
    }
    .filter-sidebar.open {
        display: block;
    }
    .therapists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .therapist-name-simple {
        font-size: 0.8rem;
    }
}
.booking-cta {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

/* Footer */
footer {
    background: #111;
    color: #999;
    padding: 2rem 0;
    text-align: center;
}
.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c49a6c;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.8rem;
}
/* 修复导航栏固定定位导致的顶部间隙问题 */
.booking-main,
.hero-banner,
.page-header {
    margin-top: 0 !important;
    padding-top: 80px !important;
}

/* ===== 技师详情页专属样式（仅当 body 有 .single-masseuse 类时生效）===== */
.single-masseuse .breadcrumb-wrapper-inline {
    margin-bottom: 1rem;
}
.single-masseuse .breadcrumb {
    font-size: 0.8rem;
    color: #888;
}
.single-masseuse .breadcrumb a {
    color: #2c7a47;
    text-decoration: none;
}
.single-masseuse .breadcrumb a:hover {
    text-decoration: underline;
}
.single-masseuse .breadcrumb .sep {
    margin: 0 4px;
    color: #bbb;
}
.single-masseuse .merged-block {
    background: #f2f7f0;
    padding: 2rem;
    border-radius: 28px;
    margin-bottom: 2rem;
}
.single-masseuse .divider {
    margin: 2rem 0;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c0d6b0, transparent);
}
.single-masseuse .bio-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.single-masseuse .bio-link {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: white;
    border-radius: 60px;
    color: #2c3e2f;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #2c7a47;
    transition: all 0.2s;
    font-size: 0.9rem;
}
.single-masseuse .bio-link:hover {
    background: #2c7a47;
    color: white;
}
.single-masseuse .about-content {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    margin-top: 0.5rem;
}
.single-masseuse .section-title-deco {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}
.single-masseuse .section-title-deco:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #2c7a47;
    border-radius: 3px;
}
.single-masseuse .recommend-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}
.single-masseuse .recommend-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}
.single-masseuse .recommend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
}
.single-masseuse .recommend-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.single-masseuse .rec-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
}
.single-masseuse .rec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.single-masseuse .recommend-card:hover .rec-img img {
    transform: scale(1.03);
}
.single-masseuse .rec-info {
    height: 60px;
    padding: 0.3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.single-masseuse .rec-name {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
    color: #1a1a1a;
    line-height: 1.2;
}
.single-masseuse .rec-title {
    font-size: 0.65rem;
    color: #2c7a47;
}
.single-masseuse .post-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.single-masseuse .shadow-divider {
    margin: 1.5rem 0;
    border: 0;
    height: 2px;
    background: linear-gradient(90deg, #c0d6b0, #2c7a47, #c0d6b0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.single-masseuse .platform-intro {
    background: #fef9f2;
    padding: 2rem;
    border-radius: 28px;
    margin: 2rem 0;
}
.single-masseuse .platform-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c7a47;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.3rem;
}
.single-masseuse .platform-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #2c7a47;
    border-radius: 3px;
}
.single-masseuse .platform-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.single-masseuse .platform-text {
    flex: 2;
}
.single-masseuse .platform-text p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a5568;
}
.single-masseuse .platform-highlights {
    flex: 1;
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.single-masseuse .platform-highlights h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c7a47;
}
.single-masseuse .platform-highlights ul {
    list-style: none;
    padding: 0;
}
.single-masseuse .platform-highlights li {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d3748;
}
.single-masseuse .platform-highlights li span {
    display: block;
    font-weight: normal;
    font-size: 0.75rem;
    color: #718096;
    margin-top: 0.2rem;
}
.single-masseuse .testimonial-aurora {
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, #0c2b1a 0%, #143020 100%);
    border-radius: 32px;
    padding: 2rem 1rem;
    margin-top: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
}
.single-masseuse .testimonial-aurora .section-title-deco {
    color: #d4e6c3;
    text-shadow: 0 0 5px #2c7a47;
}
.single-masseuse .testimonial-aurora .section-title-deco:after {
    background: #2c7a47;
    box-shadow: 0 0 8px #2c7a47;
}
.single-masseuse .star-carousel-container {
    position: relative;
    width: 100%;
    margin-top: 2rem;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.single-masseuse .star-carousel-wrapper {
    overflow: visible;
}
.single-masseuse .star-carousel-track {
    display: flex;
    gap: 24px;
    animation: scrollStars 18s linear infinite;
    width: max-content;
    will-change: transform;
}
.single-masseuse .star-carousel-container:hover .star-carousel-track {
    animation-play-state: paused;
}
.single-masseuse .testimonial-card-aurora {
    flex: 0 0 320px;
    background: rgba(30, 50, 25, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 1.4rem;
    border: 1px solid rgba(44, 122, 71, 0.4);
    transition: all 0.2s;
    color: #f0f0f0;
}
.single-masseuse .testimonial-card-aurora:hover {
    border-color: #2c7a47;
    box-shadow: 0 0 20px rgba(44,122,71,0.4);
    transform: scale(1.02);
}
.single-masseuse .testimonial-avatar-aurora {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}
.single-masseuse .testimonial-avatar-aurora img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2c7a47;
}
.single-masseuse .testimonial-name-aurora {
    font-weight: 700;
    font-size: 1rem;
    color: #ffeedd;
}
.single-masseuse .testimonial-stars-aurora {
    color: #ffb800;
    text-shadow: 0 0 3px #ffb800;
    font-size: 0.8rem;
    letter-spacing: 2px;
}
.single-masseuse .testimonial-text-aurora {
    font-size: 0.85rem;
    line-height: 1.45;
    margin: 0.8rem 0;
    color: #e0e4f0;
}
.single-masseuse .testimonial-date-aurora {
    font-size: 0.7rem;
    color: #aaa;
    border-top: 1px dashed rgba(44,122,71,0.4);
    padding-top: 0.6rem;
    margin-top: 0.6rem;
}
.single-masseuse .aurora-mask {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}
.single-masseuse .aurora-mask.left {
    left: 0;
    background: linear-gradient(90deg, #0c2b1a, transparent);
}
.single-masseuse .aurora-mask.right {
    right: 0;
    background: linear-gradient(270deg, #0c2b1a, transparent);
}
.single-masseuse .star-dust {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(44,122,71,0.15) 2%, transparent 3%);
    background-size: 40px 40px;
    pointer-events: none;
    animation: starTwinkle 4s infinite alternate;
}
@keyframes scrollStars {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes starTwinkle {
    0% { opacity: 0.3; background-position: 0 0; }
    100% { opacity: 0.8; background-position: 20px 20px; }
}
@media (max-width: 800px) {
    .single-masseuse .recommend-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .single-masseuse .recommend-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .single-masseuse .platform-content {
        flex-direction: column;
    }
}