/* Velvet Desire - 奢华魅惑视觉系统 */

/* 变量声明 */
:root {
    --bg-primary: #0a0307;      /* 极深曜石黑，带微弱紫红调 */
    --bg-secondary: #16040f;    /* 魅惑暗红褐 */
    --bg-tertiary: #23081a;     /* 深邃红酒色 */
    --card-bg: rgba(26, 6, 19, 0.65); /* 玻璃半透明卡片底色 */
    --accent-pink: #ff0055;     /* 霓虹玫瑰粉，代表激情与诱惑 */
    --accent-pink-hover: #ff3377;
    --accent-gold: #e5b858;     /* 皇家香槟金，代表高贵与奢华 */
    --accent-gold-hover: #ffd700;
    --text-primary: #f5eff2;    /* 丝滑温润白 */
    --text-secondary: #a6919e;  /* 柔和玫瑰灰 */
    --text-muted: #6e5866;       /* 灰紫色 */
    --border-color: rgba(229, 184, 88, 0.15); /* 极细香槟金边框 */
    --border-glow: rgba(255, 0, 85, 0.3);      /* 霓虹粉光晕边框 */
    --glow-rose: 0 0 15px rgba(255, 0, 85, 0.6);
    --glow-rose-soft: 0 0 10px rgba(255, 0, 85, 0.3);
    --glow-gold: 0 0 15px rgba(229, 184, 88, 0.5);
    --font-serif: 'Playfair Display', 'Noto Serif SC', serif;
    --font-sans: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(22, 4, 15, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(35, 8, 26, 0.6) 0%, transparent 50%);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-pink);
    box-shadow: var(--glow-rose-soft);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 按钮及通用发光组件 */
.btn-glow-small {
    background: linear-gradient(135deg, var(--accent-pink) 0%, #b3003b 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-glow-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.7), var(--glow-rose);
    background: linear-gradient(135deg, var(--accent-pink-hover) 0%, #cc0044 100%);
}

.btn-glow-full {
    background: linear-gradient(135deg, var(--accent-pink) 0%, #c40046 100%);
    color: #fff;
    width: 100%;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 0, 85, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-glow-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 85, 0.8), var(--glow-rose);
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: var(--glow-gold);
    transform: translateY(-2px);
}

/* 霓虹发光文本与小标签 */
.text-glow-rose {
    color: var(--accent-pink);
    text-shadow: 0 0 10px rgba(255, 0, 85, 0.6);
}

.text-glow-gold {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(229, 184, 88, 0.6);
}

.text-gold {
    color: var(--accent-gold);
}

.badge-premium {
    background: rgba(229, 184, 88, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 5px rgba(229, 184, 88, 0.3);
}

/* 呼吸心跳动画 */
@keyframes heartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 8px var(--accent-pink)); }
    100% { transform: scale(1); }
}

.pulse-icon {
    animation: heartPulse 1.6s infinite ease-in-out;
}

/* 顶部奢华导航栏 */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 3, 7, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(229, 184, 88, 0.08);
    transition: var(--transition);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-text {
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent-pink);
    text-shadow: var(--glow-rose-soft);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(229, 184, 88, 0.24);
    border-radius: 12px;
    background: rgba(35, 8, 26, 0.78);
    color: var(--text-primary);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-pink);
    box-shadow: var(--glow-rose-soft);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hero 区域 */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    background: url('assets/elena.jpg') no-repeat center top / cover;
    background-attachment: fixed;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(10, 3, 7, 0.7) 0%, 
        rgba(10, 3, 7, 0.95) 85%, 
        var(--bg-primary) 100%
    );
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    width: 100%;
    z-index: 2;
}

.hero-content {
    max-width: 750px;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    line-height: 1.15;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 650px;
    font-weight: 300;
}

/* 全美联动搜索面板 */
.search-panel-wrapper {
    background: linear-gradient(135deg, rgba(35, 8, 26, 0.4) 0%, rgba(22, 4, 15, 0.4) 100%);
    border: 1px solid rgba(229, 184, 88, 0.15);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
}

.search-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 20px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 自定义下拉框 */
.custom-select {
    background-color: rgba(10, 3, 7, 0.8);
    border: 1px solid rgba(229, 184, 88, 0.25);
    color: var(--text-primary);
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 100%;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e5b858'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.custom-select:focus:not(:disabled) {
    border-color: var(--accent-pink);
    box-shadow: var(--glow-rose-soft);
}

.custom-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236e5866'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
}

.btn-search-glow {
    background: linear-gradient(135deg, var(--accent-pink) 0%, #bf003f 100%);
    border: none;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 52px;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
    transition: var(--transition);
}

.btn-search-glow:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.6), var(--glow-rose);
}

/* 状态统计 */
.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-shadow: var(--glow-gold);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Section 通用头部样式 */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-pink);
    text-shadow: var(--glow-rose-soft);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* 热门地区卡片 */
.popular-states {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.state-card {
    height: 240px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(229, 184, 88, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

/* 快捷州背景图 */
.state-card[data-state="NY"] { background: url('assets/elena.jpg') no-repeat center center / cover; }
.state-card[data-state="CA"] { background: url('assets/chloe.jpg') no-repeat center center / cover; }
.state-card[data-state="NV"] { background: url('assets/scarlett.jpg') no-repeat center center / cover; }
.state-card[data-state="FL"] { background: url('assets/isabella.jpg') no-repeat center center / cover; }

.state-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 3, 7, 0.9) 10%, rgba(10, 3, 7, 0.2) 80%);
    transition: var(--transition);
}

.state-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 2;
}

.state-card-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 4px;
    transition: var(--transition);
}

.state-card-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.state-badge {
    background: rgba(255, 0, 85, 0.15);
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: var(--glow-rose-soft);
}

.state-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-pink);
    box-shadow: 0 12px 30px rgba(255, 0, 85, 0.25);
}

.state-card:hover .state-card-overlay {
    background: linear-gradient(to top, rgba(10, 3, 7, 0.95) 20%, rgba(255, 0, 85, 0.1) 80%);
}

.state-card:hover h3 {
    color: var(--accent-pink);
    text-shadow: var(--glow-rose-soft);
}

/* 佳丽展示区控制栏 */
.directory-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.search-box-wrapper {
    position: relative;
    flex-grow: 1;
    max-width: 600px;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-size: 1rem;
}

#name-search {
    background: rgba(35, 8, 26, 0.3);
    border: 1px solid rgba(229, 184, 88, 0.15);
    border-radius: 30px;
    padding: 14px 20px 14px 50px;
    color: var(--text-primary);
    width: 100%;
    outline: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

#name-search:focus {
    border-color: var(--accent-pink);
    box-shadow: var(--glow-rose-soft);
    background: rgba(35, 8, 26, 0.6);
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-wrapper label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.custom-select-small {
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(229, 184, 88, 0.2);
    color: var(--text-primary);
    padding: 10px 30px 10px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e5b858'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.custom-select-small:focus {
    border-color: var(--accent-pink);
    box-shadow: var(--glow-rose-soft);
}

/* 首页尚未搜索时：隐藏重复的二级搜索，只保留紧凑结果提示 */
.directory-section.is-awaiting-search {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 0, 85, 0.055), transparent 42%),
        var(--bg-primary);
    border-top: 1px solid rgba(229, 184, 88, 0.06);
    border-bottom: 1px solid rgba(229, 184, 88, 0.06);
}

.directory-section.is-awaiting-search .section-container {
    padding-top: 54px;
    padding-bottom: 54px;
}

.directory-section.is-awaiting-search .section-header {
    margin-bottom: 0;
}

.directory-section.is-awaiting-search .section-header .subtitle {
    margin-bottom: 10px;
}

.directory-section.is-awaiting-search .section-header h2 {
    font-size: clamp(2rem, 3.2vw, 2.65rem);
    margin-bottom: 12px;
}

.directory-section.is-awaiting-search .section-header p {
    max-width: 680px;
}

.directory-section.is-awaiting-search .directory-controls,
.directory-section.is-awaiting-search #beauties-grid,
.directory-section.is-awaiting-search #no-results {
    display: none !important;
}

.directory-section.has-load-error .directory-controls {
    display: none;
}

/* 佳丽卡片网格 */
.beauties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.beauty-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
}

.beauty-image-container {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.beauty-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
}

.beauty-tag-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.vip-badge {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8860b 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: var(--glow-gold);
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-badge {
    background: rgba(0, 230, 115, 0.15);
    border: 1px solid #00e673;
    color: #00e673;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(10, 3, 7, 0.8);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-family: var(--font-serif);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.beauty-info {
    padding: 24px;
}

.beauty-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.beauty-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
}

.beauty-age {
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 12px;
}

.beauty-loc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.beauty-loc i {
    color: var(--accent-pink);
}

/* 身材物理特征描述 */
.beauty-specs-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    margin-bottom: 18px;
    text-align: center;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-item .label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.spec-item .val {
    font-size: 0.85rem;
    font-weight: 600;
}

.spec-item .val.highlight {
    color: var(--accent-pink);
    text-shadow: 0 0 5px rgba(255, 0, 85, 0.2);
}

/* 按钮及悬停互动 */
.beauty-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 15px 35px rgba(255, 0, 85, 0.15);
}

.beauty-card:hover .beauty-card-img {
    transform: scale(1.08);
}

.btn-card-booking {
    width: 100%;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.beauty-card:hover .btn-card-booking {
    background: linear-gradient(135deg, var(--accent-pink) 0%, #b8003f 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--glow-rose-soft);
}

/* 无结果视图 */
.no-results-view {
    text-align: center;
    padding: 60px 20px;
}

.no-results-view i {
    font-size: 3.5rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-results-view h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.no-results-view p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hidden {
    display: none !important;
}

/* 流程展示 section */
.process-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: rgba(35, 8, 26, 0.25);
    border: 1px solid rgba(229, 184, 88, 0.08);
    padding: 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.step-num {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 0, 85, 0.06);
    position: absolute;
    top: 15px;
    right: 20px;
    transition: var(--transition);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.step-card:hover {
    border-color: var(--accent-pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 0, 85, 0.1);
}

.step-card:hover .step-num {
    color: rgba(255, 0, 85, 0.15);
    transform: scale(1.1);
}

/* 首页顶部流程与区域搜索的一体化排版 */
.process-section-top {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 0, 85, 0.09), transparent 34%),
        linear-gradient(180deg, #0a0307 0%, #16040f 100%);
    border-bottom: 1px solid rgba(229, 184, 88, 0.08);
}

.process-section-top::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, rgba(229, 184, 88, 0.025), transparent 42%);
}

.process-section-top .section-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.75fr);
    align-items: center;
    gap: 48px;
    padding-top: 120px;
    padding-bottom: 54px;
}

.process-section-top.process-section-after-search .section-container {
    padding-top: 62px;
    padding-bottom: 62px;
}

.process-section-top .section-header {
    text-align: left;
    margin-bottom: 0;
}

.process-section-top .section-header .subtitle {
    margin-bottom: 14px;
}

.process-section-top .section-header h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    margin-bottom: 16px;
}

.process-section-top .section-header p {
    max-width: 420px;
    margin: 0;
    line-height: 1.75;
}

.process-section-top .steps-container {
    gap: 14px;
}

.process-section-top .step-card {
    min-height: 178px;
    padding: 28px 24px;
    background: linear-gradient(145deg, rgba(43, 9, 31, 0.7), rgba(18, 4, 13, 0.78));
    border-color: rgba(229, 184, 88, 0.13);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.process-section-top .step-card h3 {
    max-width: 170px;
    font-size: 1.08rem;
    line-height: 1.35;
    margin-bottom: 12px;
}

.process-section-top .step-card p {
    font-size: 0.83rem;
    line-height: 1.65;
}

.process-section-top .step-num {
    top: 18px;
    right: 18px;
    font-size: 3.7rem;
    color: rgba(255, 0, 85, 0.09);
}

.hero-search-section {
    min-height: auto;
    padding: 82px 0 92px;
    background-position: center 22%;
}

.hero-search-section .hero-content {
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
}

.hero-search-section .hero-content h1 {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.hero-search-section .hero-desc {
    max-width: 790px;
    margin-left: auto;
    margin-right: auto;
}

.hero-search-section .search-panel-wrapper {
    text-align: left;
    margin-bottom: 34px;
    padding: 26px;
    background: linear-gradient(135deg, rgba(35, 8, 26, 0.68), rgba(15, 3, 10, 0.76));
    border-color: rgba(229, 184, 88, 0.2);
}

.hero-search-section .hero-stats {
    justify-content: center;
}

/* 隐私安全保障 */
.safety-section {
    background: url('assets/scarlett.jpg') no-repeat center center / cover;
    background-attachment: fixed;
    position: relative;
}

.safety-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(10, 3, 7, 0.98) 0%, 
        rgba(10, 3, 7, 0.9) 50%, 
        rgba(10, 3, 7, 0.6) 100%
    );
    z-index: 1;
}

.safety-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.safety-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.safety-point {
    display: flex;
    gap: 20px;
}

.safety-point i {
    font-size: 1.8rem;
    margin-top: 4px;
    flex-shrink: 0;
    text-shadow: var(--glow-rose-soft);
}

.text-pink {
    color: var(--accent-pink);
}

.safety-point h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.safety-point p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* 佳丽详细弹窗 Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 1, 4, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: var(--transition);
}

.modal-container {
    background: var(--bg-secondary);
    border: 1px solid rgba(229, 184, 88, 0.2);
    border-radius: 20px;
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--glow-rose-soft);
    animation: modalFadeIn 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.2rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-pink);
    transform: rotate(90deg);
}

.modal-content-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
}

/* 弹窗媒体列 (左边) */
.modal-media-column {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    background: rgba(10, 3, 7, 0.4);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 520px;
    border: 1px solid rgba(229, 184, 88, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#modal-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.availability-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 3, 7, 0.75);
    border: 1px solid #00e673;
    color: #00e673;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(5px);
}

.text-green {
    color: #00e673;
}

.pulse {
    animation: heartPulse 1.2s infinite ease-in-out;
}

.media-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-thumb {
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

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

.gallery-thumb.active, .gallery-thumb:hover {
    border-color: var(--accent-pink);
    box-shadow: var(--glow-rose-soft);
}

/* 弹窗详情列 (右边) */
.modal-details-column {
    padding: 40px;
}

.detail-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.name-age-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.name-age-row h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.age-badge {
    background: rgba(255, 0, 85, 0.15);
    color: var(--accent-pink);
    border: 1px solid rgba(255, 0, 85, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.modal-location-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

.modal-location-text i {
    color: var(--accent-pink);
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-tag {
    background: rgba(35, 8, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* 物理参数展示 */
.details-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.spec-box {
    background: rgba(10, 3, 7, 0.3);
    border: 1px solid rgba(229, 184, 88, 0.1);
    padding: 14px 10px;
    border-radius: 8px;
    text-align: center;
}

.spec-box .spec-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.spec-box .spec-val {
    font-size: 1.05rem;
    font-weight: 700;
}

.spec-box .spec-val.text-glow-pink {
    color: var(--accent-pink);
    text-shadow: 0 0 5px rgba(255, 0, 85, 0.3);
}

.detail-section {
    margin-bottom: 30px;
}

.detail-section h3 {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    border-left: 3px solid var(--accent-pink);
    padding-left: 10px;
    letter-spacing: 1px;
}

.modal-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* 费率表 */
.rate-table {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.rate-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.rate-row:last-child {
    border-bottom: none;
    background: rgba(229, 184, 88, 0.03);
}

.rate-row span:first-child {
    color: var(--text-secondary);
}

.price-val {
    font-weight: 700;
    font-family: var(--font-serif);
}

/* 预约表单样式 */
.booking-form-section {
    background: rgba(35, 8, 26, 0.3);
    border: 1px solid rgba(255, 0, 85, 0.15);
    padding: 30px;
    border-radius: 12px;
    box-shadow: inset 0 0 10px rgba(255, 0, 85, 0.05);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form textarea {
    background: rgba(10, 3, 7, 0.8);
    border: 1px solid rgba(229, 184, 88, 0.2);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: var(--accent-pink);
    box-shadow: var(--glow-rose-soft);
}

.booking-form textarea {
    resize: none;
}

/* 预约成功卡片 */
.success-card {
    background: var(--bg-secondary);
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), var(--glow-gold);
    animation: modalFadeIn 0.4s ease-out;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 85, 0.1);
    border: 2px solid var(--accent-pink);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px;
    font-size: 2.2rem;
    color: var(--accent-pink);
    box-shadow: var(--glow-rose-soft);
}

.success-card h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.success-model-info {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.success-details {
    background: rgba(10, 3, 7, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 24px;
    text-align: left;
}

.success-details p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.success-details p:last-child {
    margin-bottom: 0;
}

.success-details strong {
    color: var(--text-secondary);
}

.success-tip {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    background: rgba(229, 184, 88, 0.05);
    border-left: 2px solid var(--accent-gold);
    padding: 12px;
    text-align: left;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
}

/* 底部 Footer */
.luxury-footer {
    background: #050104;
    border-top: 1px solid rgba(229, 184, 88, 0.08);
    padding: 80px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 2fr;
    gap: 60px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-slogan {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links h4,
.footer-legal h4 {
    font-size: 0.95rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-pink);
    text-shadow: var(--glow-rose-soft);
    padding-left: 4px;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 20px;
}

/* 响应式调整 (Responsive Design) */

@media (max-width: 1200px) {
    .beauties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .states-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .state-card {
        height: 200px;
    }
    .modal-container {
        max-width: 850px;
    }
    .modal-content-grid {
        grid-template-columns: 1fr;
    }
    .modal-media-column {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 30px;
    }
    .main-image-wrapper {
        height: 480px;
    }
    .modal-details-column {
        padding: 30px;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .footer-legal {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        gap: 20px;
    }
    .header-actions {
        display: none;
    }
    .search-panel {
        grid-template-columns: 1fr;
    }
    .btn-search-glow {
        width: 100%;
        justify-content: center;
    }
    .steps-container {
        grid-template-columns: 1fr;
    }
    .process-section-top .section-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 105px;
        padding-bottom: 42px;
    }
    .process-section-top .section-header {
        text-align: center;
    }
    .process-section-top .section-header p {
        margin: 0 auto;
    }
    .process-section-top .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-search-section {
        padding: 64px 0 76px;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .header-container {
        padding: 15px 20px;
    }
    .section-container {
        padding: 60px 20px;
    }
}

@media (max-width: 600px) {
    [id] {
        scroll-margin-top: 82px;
    }
    .luxury-header {
        padding-top: env(safe-area-inset-top);
        background: rgba(10, 3, 7, 0.94);
        backdrop-filter: blur(20px);
    }
    .header-container {
        min-height: 66px;
        gap: 12px;
        padding: 10px 16px;
    }
    .logo {
        flex-shrink: 0;
        font-size: 1.45rem;
    }
    .mobile-menu-toggle {
        display: inline-flex;
        margin-left: auto;
        flex: 0 0 auto;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin: 0;
        padding: 12px;
        border: 1px solid rgba(229, 184, 88, 0.18);
        border-radius: 0 0 16px 16px;
        background: rgba(18, 4, 13, 0.98);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.56);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }
    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 12px 14px;
        border-radius: 10px;
        font-size: 0.92rem;
        letter-spacing: 0.3px;
    }
    .nav-menu .nav-link::after {
        display: none;
    }
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(255, 0, 85, 0.1);
        color: var(--text-primary);
    }
    .luxury-header.mobile-menu-open .nav-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .luxury-header.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .luxury-header.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    .luxury-header.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .beauties-grid {
        grid-template-columns: 1fr;
    }
    .states-grid {
        grid-template-columns: 1fr;
    }
    .hero-container {
        padding: 0 18px;
    }
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }
    .stat-item {
        min-width: 0;
        text-align: center;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.68rem;
        line-height: 1.35;
        letter-spacing: 0.2px;
    }
    .process-section-top .section-container {
        padding-top: 94px;
    }
    .process-section-top.process-section-after-search .section-container {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .process-section-top .steps-container {
        grid-template-columns: 1fr;
    }
    .process-section-top .step-card {
        min-height: 150px;
        padding: 24px;
    }
    .hero-search-section {
        padding: calc(98px + env(safe-area-inset-top)) 0 64px;
        background-attachment: scroll;
        background-position: center top;
    }
    .hero-search-section .search-panel-wrapper {
        padding: 18px 16px;
        margin-bottom: 28px;
    }
    .search-panel {
        gap: 16px;
    }
    .custom-select,
    .btn-search-glow,
    .btn-card-booking {
        min-height: 50px;
    }
    .hero-content h1 {
        font-size: 2.15rem;
        line-height: 1.12;
        margin-top: 18px;
    }
    .hero-desc {
        margin-bottom: 30px;
        font-size: 1rem;
        line-height: 1.75;
    }
    .badge-premium {
        justify-content: center;
        width: 100%;
        padding: 8px 12px;
        line-height: 1.5;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-legal {
        grid-column: span 1;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .modal-overlay {
        padding: 12px;
    }
    .modal-container {
        max-height: calc(100dvh - 24px);
        border-radius: 14px;
    }
    .modal-close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: rgba(10, 3, 7, 0.78);
        font-size: 1.8rem;
        line-height: 1;
    }
    .modal-media-column,
    .modal-details-column {
        padding: 20px;
    }
    .details-specs {
        grid-template-columns: repeat(2, 1fr);
    }
    .main-image-wrapper {
        height: 330px;
    }
}
